axiom-coding-agent-setup 1.0.11 → 1.0.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/.agents/skills/project-design/SKILL.md +207 -0
  2. package/.agents/skills/project-design/references/ARCHITECTURE.md +641 -0
  3. package/.agents/skills/project-design/references/PROJECT_PLAN.md +316 -0
  4. package/.agents/skills/skill-creator/LICENSE.txt +202 -0
  5. package/.agents/skills/skill-creator/SKILL.md +485 -0
  6. package/.agents/skills/skill-creator/agents/analyzer.md +274 -0
  7. package/.agents/skills/skill-creator/agents/comparator.md +202 -0
  8. package/.agents/skills/skill-creator/agents/grader.md +223 -0
  9. package/.agents/skills/skill-creator/assets/eval_review.html +146 -0
  10. package/.agents/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  11. package/.agents/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  12. package/.agents/skills/skill-creator/references/schemas.md +430 -0
  13. package/.agents/skills/skill-creator/scripts/__init__.py +0 -0
  14. package/.agents/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  15. package/.agents/skills/skill-creator/scripts/generate_report.py +326 -0
  16. package/.agents/skills/skill-creator/scripts/improve_description.py +247 -0
  17. package/.agents/skills/skill-creator/scripts/package_skill.py +136 -0
  18. package/.agents/skills/skill-creator/scripts/quick_validate.py +103 -0
  19. package/.agents/skills/skill-creator/scripts/run_eval.py +310 -0
  20. package/.agents/skills/skill-creator/scripts/run_loop.py +328 -0
  21. package/.agents/skills/skill-creator/scripts/utils.py +47 -0
  22. package/README.md +1 -0
  23. package/bin/cli.js +1 -0
  24. package/package.json +1 -1
  25. package/plugin/oh-my-openagent.json +198 -0
  26. package/plugin/oh-my-openagent.md +49 -0
  27. package/skills-lock.json +6 -0
@@ -0,0 +1,207 @@
1
+ ---
2
+ name: project-design
3
+ description: Create comprehensive PROJECT_PLAN.md and ARCHITECTURE.md documents for software projects. Use this skill when the user wants to design a new project, plan system architecture, create development roadmaps, define project phases, establish technical specifications, or set up project documentation. This skill triggers on mentions of "project plan", "architecture doc", "system design", "roadmap", "tech spec", "design document", or when the user is starting a new project and needs planning structure. Also use when iterating on existing project documentation or adding new phases to an ongoing project plan.
4
+ ---
5
+
6
+ # Project Design Skill
7
+
8
+ A skill for creating and maintaining two core project documents:
9
+
10
+ 1. **PROJECT_PLAN.md** — Phase-by-phase progress tracker with acceptance criteria
11
+ 2. **ARCHITECTURE.md** — System design, tech stack, and technical decisions
12
+
13
+ These documents serve as the single source of truth for:
14
+ - What the project is building
15
+ - How the system is architected
16
+ - Where we are in the development timeline
17
+ - What remains to be done
18
+
19
+ ## When to Use This Skill
20
+
21
+ Use this skill when:
22
+ - Starting a greenfield project and need structure
23
+ - The user says "design this system" or "plan this project"
24
+ - Adding new capabilities to an existing project
25
+ - Re-architecting or refactoring existing systems
26
+ - Creating onboarding docs for new team members
27
+ - Preparing project documentation for stakeholders
28
+
29
+ ## Output Format
30
+
31
+ Always produce **both** documents (even if the user only asks for one):
32
+
33
+ ```
34
+ project-root/
35
+ ├── PROJECT_PLAN.md # Progress tracker + phase checklist
36
+ ├── ARCHITECTURE.md # System design + tech decisions
37
+ └── (other project files)
38
+ ```
39
+
40
+ These files are living documents — update them as the project evolves.
41
+
42
+ ## Workflow
43
+
44
+ ### Step 1: Gather Requirements
45
+
46
+ Before writing, understand:
47
+
48
+ 1. **Project goal** — What problem does this solve? Who are the users?
49
+ 2. **Constraints** — Budget, timeline, team size, existing tech stack
50
+ 3. **Scope boundaries** — What's in v1? What's explicitly deferred?
51
+ 4. **Integration points** — External APIs, databases, services
52
+ 5. **Non-functional requirements** — Performance, security, scale targets
53
+
54
+ Ask the user these questions if not already answered in context.
55
+
56
+ ### Step 2: Write ARCHITECTURE.md First
57
+
58
+ The architecture document informs the project plan. Structure it as:
59
+
60
+ ```markdown
61
+ # [Project Name] — Architecture
62
+
63
+ ## 1. Goals & Non-Goals
64
+ ### Goals (what we WILL build)
65
+ ### Non-Goals (what we WON'T build — prevents scope creep)
66
+
67
+ ## 2. Core Principles
68
+ 1. [Guiding principle, e.g. "Markdown is the universal intermediate format"]
69
+ 2. [Another principle]
70
+
71
+ ## 3. System Overview
72
+ [ASCII diagram or description of data flow]
73
+
74
+ ## 4. Tech Stack
75
+ | Component | Library | Role |
76
+ |---|---|---|
77
+ | [e.g. Vector DB] | [e.g. Qdrant] | [what it does] |
78
+
79
+ ## 5. Project Structure
80
+ ```
81
+ src/
82
+ ├── module/
83
+ │ └── file.py
84
+ ```
85
+
86
+ ## 6-15. [Domain-specific sections]
87
+ - Ingestion Pipeline
88
+ - Data Model
89
+ - API Design
90
+ - Authentication
91
+ - etc.
92
+
93
+ ## 16. Implementation Status
94
+ | Phase | Status | Description |
95
+
96
+ ## 17. Decision Log
97
+ | Decision | Chosen | Rejected | Reason |
98
+
99
+ ## 18. Future Work
100
+ [Stretch goals and Phase N items]
101
+ ```
102
+
103
+ **Key rules for ARCHITECTURE.md:**
104
+ - Every decision MUST have a reason (tradeoffs documented in Decision Log)
105
+ - Include ASCII diagrams for data flow — they survive copy-paste better than images
106
+ - Tech stack table includes versions and explicit "avoided" alternatives
107
+ - Project structure shows the actual file tree, not abstract modules
108
+ - Configuration table lists every tunable with defaults
109
+
110
+ ### Step 3: Write PROJECT_PLAN.md
111
+
112
+ The project plan is the execution tracker. Structure it as:
113
+
114
+ ```markdown
115
+ # [Project Name] — Project Plan & Progress Tracker
116
+
117
+ ## Phase 0 — Project Setup [STATUS]
118
+ - [x] Task 1
119
+ - [ ] Task 2
120
+
121
+ ## Phase 1 — [Feature Area] [STATUS]
122
+ **Goal:** One-sentence objective
123
+
124
+ ### New modules
125
+ - `src/path/file.py` — responsibility
126
+
127
+ ### Acceptance
128
+ 1. [Testable criterion]
129
+ 2. [Testable criterion]
130
+
131
+ ## Phase 2 — [Next Feature] [STATUS]
132
+ ...
133
+
134
+ ## Phase N — Stretch Goals [⏸️]
135
+ [Optional features, only if time permits]
136
+
137
+ ## Currently Working On
138
+ [What phase is active right now]
139
+
140
+ ## Quick Status
141
+ | Phase | Status | % |
142
+ ```
143
+
144
+ **Status legend:** ✅ done · 🚧 in progress · ⬜ pending · ⏸️ deferred · ❌ cancelled
145
+
146
+ **Key rules for PROJECT_PLAN.md:**
147
+ - Each phase has a single-sentence **Goal** — if you can't state it in one sentence, split the phase
148
+ - Every phase has **Acceptance** criteria — how do we know it's done?
149
+ - Module paths are relative to project root (`src/...` not `core/...`)
150
+ - Dependencies are called out explicitly (what new packages are needed)
151
+ - "Deferred to Phase N" notes prevent scope creep — acknowledge the idea, park it
152
+ - "Known limitations" are honest, not apologetic — document workarounds
153
+
154
+ ### Step 4: Maintain Both Documents
155
+
156
+ As implementation progresses:
157
+
158
+ 1. **Update PROJECT_PLAN.md** — Mark tasks done, move to next phase, update percentages
159
+ 2. **Update ARCHITECTURE.md** — Add Decision Log entries for new choices, update Implementation Status, document surprises
160
+ 3. **Cross-reference** — ARCHITECTURE.md links to PROJECT_PLAN.md for details; PROJECT_PLAN.md links to ARCHITECTURE.md for design rationale
161
+
162
+ ## Progressive Disclosure
163
+
164
+ This skill bundles reference files for detailed guidance:
165
+
166
+ - `references/PROJECT_PLAN.md` — Full example of a completed project plan
167
+ - `references/ARCHITECTURE.md` — Full example of a completed architecture document
168
+
169
+ Read these when:
170
+ - You need to see what a "good" document looks like
171
+ - You're unsure how to structure a specific section
172
+ - The user wants production-grade documentation
173
+
174
+ ## Patterns
175
+
176
+ ### For greenfield projects
177
+ 1. Start with ARCHITECTURE.md Sections 1-5 (Goals, Principles, Overview, Stack, Structure)
178
+ 2. Then PROJECT_PLAN.md Phases 0-2 (Setup + first features)
179
+ 3. Defer deep sections (Eval, Observability) until the architecture stabilizes
180
+
181
+ ### For existing projects
182
+ 1. Read current docs first — don't overwrite without understanding
183
+ 2. Update ARCHITECTURE.md Decision Log with new choices
184
+ 3. Append new phases to PROJECT_PLAN.md, don't restructure old ones
185
+
186
+ ### For architecture reviews
187
+ 1. Read existing ARCHITECTURE.md
188
+ 2. Check if Decision Log captures the review context
189
+ 3. Update Implementation Status if recommendations change priorities
190
+
191
+ ## Writing Tips
192
+
193
+ - **Be specific** in acceptance criteria — "Upload works" is bad; "Upload PDF → see markdown → download .md" is good
194
+ - **Document non-decisions** — "We didn't add Redis because BackgroundTasks is sufficient" prevents repeated discussion
195
+ - **Version your stack** — `library>=1.2` not just `library`
196
+ - **Show, don't tell** — ASCII diagrams > prose descriptions for system flow
197
+ - **Honest status** — If Phase 3 is 80% done, say so; don't mark it ✅ until acceptance criteria pass
198
+
199
+ ## Example Trigger Phrases
200
+
201
+ - "Design a RAG system for our docs"
202
+ - "Create a project plan for the migration"
203
+ - "I need an architecture document for this API"
204
+ - "Plan out the phases for this feature"
205
+ - "What's the system design for our chatbot?"
206
+ - "Write the tech spec for the new service"
207
+ - "Update the roadmap with Phase 4"