opencodekit 0.11.0 → 0.11.1

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 (32) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/command/accessibility-check.md +6 -2
  3. package/dist/template/.opencode/command/analyze-mockup.md +6 -0
  4. package/dist/template/.opencode/command/analyze-project.md +6 -0
  5. package/dist/template/.opencode/command/brainstorm.md +6 -0
  6. package/dist/template/.opencode/command/commit.md +6 -1
  7. package/dist/template/.opencode/command/create.md +369 -134
  8. package/dist/template/.opencode/command/design-audit.md +6 -0
  9. package/dist/template/.opencode/command/design.md +6 -0
  10. package/dist/template/.opencode/command/finish.md +1 -0
  11. package/dist/template/.opencode/command/fix-ci.md +1 -0
  12. package/dist/template/.opencode/command/fix-types.md +6 -0
  13. package/dist/template/.opencode/command/fix-ui.md +6 -0
  14. package/dist/template/.opencode/command/fix.md +6 -0
  15. package/dist/template/.opencode/command/handoff.md +6 -1
  16. package/dist/template/.opencode/command/implement.md +1 -0
  17. package/dist/template/.opencode/command/import-plan.md +6 -1
  18. package/dist/template/.opencode/command/integration-test.md +5 -0
  19. package/dist/template/.opencode/command/issue.md +6 -0
  20. package/dist/template/.opencode/command/new-feature.md +8 -0
  21. package/dist/template/.opencode/command/plan.md +282 -21
  22. package/dist/template/.opencode/command/pr.md +6 -1
  23. package/dist/template/.opencode/command/research-and-implement.md +6 -0
  24. package/dist/template/.opencode/command/research.md +6 -0
  25. package/dist/template/.opencode/command/resume.md +8 -0
  26. package/dist/template/.opencode/command/revert-feature.md +6 -1
  27. package/dist/template/.opencode/command/review-codebase.md +6 -0
  28. package/dist/template/.opencode/command/status.md +6 -0
  29. package/dist/template/.opencode/command/triage.md +6 -0
  30. package/dist/template/.opencode/command/ui-review.md +4 -0
  31. package/dist/template/.opencode/skill/beads/SKILL.md +108 -3
  32. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -750,7 +750,7 @@ var cac = (name = "") => new CAC(name);
750
750
  // package.json
751
751
  var package_default = {
752
752
  name: "opencodekit",
753
- version: "0.11.0",
753
+ version: "0.11.1",
754
754
  description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
755
755
  type: "module",
756
756
  repository: {
@@ -9,11 +9,15 @@ model: proxypal/gemini-3-flash-preview
9
9
 
10
10
  ## Phase 1: Load Context
11
11
 
12
- **Load skill:**
12
+ **Load skills:**
13
+
14
+ ````typescript
15
+ skill({ name: "beads" }); // Session protocol
16
+ skill({ name: "accessibility-audit" });
13
17
 
14
18
  ```typescript
15
19
  skill({ name: "accessibility-audit" });
16
- ```
20
+ ````
17
21
 
18
22
  **Check for bead context:**
19
23
 
@@ -7,6 +7,12 @@ model: proxypal/gemini-3-flash-preview
7
7
 
8
8
  # Analyze Mockup: $ARGUMENTS
9
9
 
10
+ ## Load Beads Skill
11
+
12
+ ```typescript
13
+ skill({ name: "beads" });
14
+ ```
15
+
10
16
  ## Phase 1: Parse Arguments
11
17
 
12
18
  Extract from `$ARGUMENTS`:
@@ -6,6 +6,12 @@ agent: planner
6
6
 
7
7
  # Analyze Project
8
8
 
9
+ ## Load Beads Skill
10
+
11
+ ```typescript
12
+ skill({ name: "beads" });
13
+ ```
14
+
9
15
  ## Phase 1: Quick Status Dashboard
10
16
 
11
17
  Run these checks in parallel for speed:
@@ -6,6 +6,12 @@ agent: build
6
6
 
7
7
  # Brainstorm: $ARGUMENTS
8
8
 
9
+ ## Load Beads Skill
10
+
11
+ ```typescript
12
+ skill({ name: "beads" });
13
+ ```
14
+
9
15
  ## Options
10
16
 
11
17
  - `--quick`: 15-minute time box (default: 30 minutes)
@@ -6,7 +6,12 @@ agent: build
6
6
 
7
7
  # Commit
8
8
 
9
- **Load skill:** `skill({ name: "verification-before-completion" })`
9
+ **Load skills:**
10
+
11
+ ```typescript
12
+ skill({ name: "beads" }); // Session protocol
13
+ skill({ name: "verification-before-completion" });
14
+ ```
10
15
 
11
16
  ## Options
12
17