c0d14c6ac1
- Add new skills: deep-dive, docs-rag, meta-creator, ppt-maker, sdlc - Add agent configs: g-assistent, meta-creator, sdlc with prompt files - Add reference docs for custom agents and skills specification - Add utility scripts: install-agents.sh, orchestrate.py, puml2svg.sh - Update README and commit-message skill config - Remove deprecated skills: codereview, python, testing, typescript - Add .gitignore
31 lines
884 B
Plaintext
31 lines
884 B
Plaintext
@startuml ppt-maker-architecture
|
|
skinparam componentStyle rectangle
|
|
skinparam defaultFontName Arial
|
|
skinparam backgroundColor #FAFAFA
|
|
|
|
package "ppt-maker Skill" {
|
|
component "SKILL.md\n(instructions)" as SKILL
|
|
component "scripts/ppt-maker.js\n(core engine)" as ENGINE
|
|
component "scripts/package.json\n(deps: pptxgenjs)" as PKG
|
|
}
|
|
|
|
package "ppt-maker.js Internals" {
|
|
component "Markdown Parser\n(slides, headings, lists)" as PARSER
|
|
component "Chart Detector\n(keyword → pie/bar/line)" as CHART
|
|
component "Theme Engine\n(ocean/sunset/purple/...)" as THEME
|
|
component "PPTX Renderer\n(pptxgenjs)" as RENDERER
|
|
}
|
|
|
|
actor User
|
|
|
|
User --> SKILL : natural language request
|
|
SKILL --> ENGINE : node ppt-maker.js -i ... -o ... -t ...
|
|
ENGINE --> PARSER
|
|
ENGINE --> CHART
|
|
ENGINE --> THEME
|
|
PARSER --> RENDERER
|
|
CHART --> RENDERER
|
|
THEME --> RENDERER
|
|
RENDERER --> User : output.pptx
|
|
@enduml
|