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>
23 lines
619 B
Python
23 lines
619 B
Python
"""
|
|
OXML 包 - 底层 XML 操作
|
|
|
|
这个包负责所有的 lxml 操作,不关心业务逻辑(主轴/次轴)。
|
|
只知道如何根据指令创建标准的 OOXML 结构。
|
|
"""
|
|
|
|
from .axes import extract_axis_ids, create_value_axis, optimize_axis_labels, optimize_category_axis
|
|
from .plots import create_plot_element, add_axis_refs, add_plot_categories
|
|
from .series import add_series_to_plot
|
|
|
|
__all__ = [
|
|
'extract_axis_ids',
|
|
'create_value_axis',
|
|
'optimize_axis_labels',
|
|
'optimize_category_axis',
|
|
'create_plot_element',
|
|
'add_axis_refs',
|
|
'add_plot_categories',
|
|
'add_series_to_plot',
|
|
]
|
|
|