chore: restructure skills repo with new agents and skill bundles

- 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
This commit is contained in:
Team
2026-04-18 13:07:46 +08:00
parent 72f16d26b8
commit c0d14c6ac1
74 changed files with 5726 additions and 324 deletions
@@ -0,0 +1,32 @@
@startuml meta-creator-architecture
skinparam componentStyle rectangle
skinparam defaultFontName Arial
skinparam backgroundColor #FAFAFA
package "meta-creator Skill" {
component "SKILL.md\n(instructions)" as SKILL
component "references/\nskills-Specification.md" as SPEC
component "references/\nskills-eval.md" as EVAL_REF
component "references/\ncustom-agents-configuration-reference.md" as AGENT_REF
component "references/\nkiro-cli-chat-configuration.md" as CLI_REF
component "evals/evals.json" as EVALS
}
package "Outputs" {
component "skills/<name>/SKILL.md" as OUT_SKILL
component "skills/<name>/evals/evals.json" as OUT_EVALS
component ".kiro/agents/<name>.json" as OUT_AGENT #lightblue
component ".kiro/agents/prompts/<name>.md" as OUT_PROMPT #lightblue
}
SKILL --> SPEC : skill format rules
SKILL --> EVAL_REF : eval methodology
SKILL --> AGENT_REF : agent config schema
SKILL --> CLI_REF : config scopes & paths
SKILL --> OUT_SKILL : creates
SKILL --> OUT_EVALS : creates
SKILL --> OUT_AGENT : creates (optional)
SKILL --> OUT_PROMPT : creates (optional)
note right of OUT_AGENT : only if user\nrequests an agent
@enduml
File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 11 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

+30
View File
@@ -0,0 +1,30 @@
@startuml meta-creator-workflow
skinparam defaultFontName Arial
skinparam backgroundColor #FAFAFA
actor Developer
participant "meta-creator\nSkill" as SKILL
participant "File System" as FS
Developer -> SKILL : "create a skill: <description>"
SKILL -> Developer : clarifying questions\n(purpose, examples, env)
Developer -> SKILL : answers
SKILL -> FS : write skills/<name>/SKILL.md
SKILL -> FS : write skills/<name>/evals/evals.json
SKILL --> Developer : skill created
opt eval results provided
Developer -> SKILL : eval failures / feedback
SKILL -> SKILL : identify gaps vs wrong assertions
SKILL -> FS : update SKILL.md
SKILL -> FS : update evals.json
SKILL --> Developer : improved skill
end
opt agent requested
SKILL -> FS : write .kiro/agents/<name>.json
SKILL -> FS : write .kiro/agents/prompts/<name>.md
SKILL --> Developer : agent ready
end
@enduml