Sources: extracted from two upstream archives (skill-repo, skills-main),
merged with the following policy:
- 15 broken symlinks (pointing to /Users/jameslee/.cc-switch/skills or
../../.agents/skills on a foreign machine) discarded
- 3 real name collisions with identical content (ai-pair, ifind-http-api,
zhipu-websearch) kept as one copy
- Functional overlaps deduped keeping the strongest variant:
- docx family: kept docx (official, full toolchain) + docx-cn
(GB/T 9704 Chinese official-document constants),
dropped docx_writer (no scripts, name collided with docx)
- humanizer family: kept humanizer-zh (6 zh reference docs),
dropped humanizer (en, redundant for CN workflow)
- Skills that only ran in a foreign environment removed:
ablemind-ops, app-publish, hlb-design-system, openclaw-adj-skill,
claude-driver
- alphapai excluded from this public repo because its SKILL.md hard-coded
live credentials
Result: 25 skills, 572 files, ~7.5 MB.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
38 lines
1.5 KiB
Python
38 lines
1.5 KiB
Python
"""布局函数注册表"""
|
|
|
|
from .title import layout_title_dark, layout_title_light
|
|
from .kpi import layout_kpi_cards
|
|
from .chart import (layout_chart_full, layout_chart_text, layout_two_charts,
|
|
layout_two_charts_vertical, layout_chart_table)
|
|
from .table import layout_comparison_table
|
|
from .content import layout_bullet_points, layout_section_divider
|
|
from .conclusion import layout_conclusion_dark
|
|
from .image_text import layout_image_text
|
|
from .diagram import (layout_process_flow, layout_timeline, layout_pyramid,
|
|
layout_comparison, layout_icon_grid, layout_matrix,
|
|
layout_composite)
|
|
|
|
LAYOUT_REGISTRY = {
|
|
"title_dark": layout_title_dark,
|
|
"title_light": layout_title_light,
|
|
"kpi_cards": layout_kpi_cards,
|
|
"chart_full": layout_chart_full,
|
|
"chart_text": layout_chart_text,
|
|
"two_charts": layout_two_charts,
|
|
"two_charts_vertical": layout_two_charts_vertical,
|
|
"chart_table": layout_chart_table,
|
|
"comparison_table": layout_comparison_table,
|
|
"bullet_points": layout_bullet_points,
|
|
"section_divider": layout_section_divider,
|
|
"conclusion_dark": layout_conclusion_dark,
|
|
"image_text": layout_image_text,
|
|
# Diagram 布局 (基于 blocks 可组合)
|
|
"process_flow": layout_process_flow,
|
|
"timeline": layout_timeline,
|
|
"pyramid": layout_pyramid,
|
|
"comparison": layout_comparison,
|
|
"icon_grid": layout_icon_grid,
|
|
"matrix": layout_matrix,
|
|
"composite": layout_composite,
|
|
}
|