battle-skills 1.0.13 → 1.0.15
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.
package/bin/install.js
CHANGED
|
@@ -93,7 +93,7 @@ function defaultDir(opts) {
|
|
|
93
93
|
if (opts.kiro) return path.join(HOME, ".kiro", "skills");
|
|
94
94
|
if (opts.antigravity)
|
|
95
95
|
return path.join(HOME, ".gemini", "antigravity", "skills");
|
|
96
|
-
return path.
|
|
96
|
+
return path.resolve(process.cwd(), "battle-skills");
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
function printHelp() {
|
|
@@ -111,7 +111,7 @@ Options:
|
|
|
111
111
|
--codex Install to ~/.codex/skills (Codex CLI)
|
|
112
112
|
--kiro Install to ~/.kiro/skills (Kiro CLI)
|
|
113
113
|
--antigravity Install to ~/.gemini/antigravity/skills (Antigravity)
|
|
114
|
-
--path <dir> Install to <dir> (default:
|
|
114
|
+
--path <dir> Install to <dir> (default: ./battle-skills)
|
|
115
115
|
--version <ver> After clone, checkout tag v<ver> (e.g. 4.6.0 -> v4.6.0)
|
|
116
116
|
--tag <tag> After clone, checkout this tag (e.g. v4.6.0)
|
|
117
117
|
|
package/package.json
CHANGED
|
@@ -8,7 +8,6 @@ A quick-reference cheat sheet for a PRD. Keep it short and scannable.
|
|
|
8
8
|
# Context: [Module/Feature Name]
|
|
9
9
|
|
|
10
10
|
> **Source:** prd-xxx | [link to PRD file](../02_prd/prd-xxx.md)
|
|
11
|
-
> **Impl Plan:** [link if exists](../03_implement_plan/impl-xxx.md)
|
|
12
11
|
> **Last Updated:** YYYY-MM-DD
|
|
13
12
|
|
|
14
13
|
---
|
|
@@ -51,17 +50,26 @@ Only list the most important 5-7 requirements. Full list in PRD.
|
|
|
51
50
|
- External service X required
|
|
52
51
|
- Depends on module Y being completed first
|
|
53
52
|
|
|
53
|
+
## Implementation Plans
|
|
54
|
+
|
|
55
|
+
| Plan ID | Scope | File | Status |
|
|
56
|
+
|---------|-------|------|--------|
|
|
57
|
+
| impl-001 | Phase 1 — ... | [link](../03_implement_plan/impl-001/...) | Done / In Progress |
|
|
58
|
+
| impl-002 | Phase 2 — ... | [link](../03_implement_plan/impl-002/...) | Not Started |
|
|
59
|
+
|
|
60
|
+
<!-- If only one plan exists, keep as a single-row table.
|
|
61
|
+
If no plans exist yet, replace table with: "No implementation plan yet." -->
|
|
62
|
+
|
|
54
63
|
## Status
|
|
55
64
|
|
|
56
65
|
| Phase | Status |
|
|
57
66
|
|-------|--------|
|
|
58
67
|
| PRD | Draft / Approved |
|
|
59
|
-
|
|
|
60
|
-
|
|
|
68
|
+
| Phase 1 | Not started / In Progress / Done |
|
|
69
|
+
| Phase 2 | Not started / In Progress / Done |
|
|
61
70
|
|
|
62
71
|
## Quick Links
|
|
63
72
|
|
|
64
73
|
- PRD: `docs/02_prd/prd-xxx.md`
|
|
65
|
-
- Impl: `docs/03_implement_plan/impl-xxx.md`
|
|
66
74
|
- Code: `path/to/module/`
|
|
67
75
|
```
|