opencodekit 0.11.0 → 0.12.0

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 (45) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/AGENTS.md +2 -2
  3. package/dist/template/.opencode/agent/build.md +20 -20
  4. package/dist/template/.opencode/agent/explore.md +13 -13
  5. package/dist/template/.opencode/agent/planner.md +20 -20
  6. package/dist/template/.opencode/agent/review.md +18 -18
  7. package/dist/template/.opencode/agent/rush.md +20 -20
  8. package/dist/template/.opencode/agent/scout.md +16 -16
  9. package/dist/template/.opencode/agent/vision.md +19 -19
  10. package/dist/template/.opencode/command/accessibility-check.md +6 -2
  11. package/dist/template/.opencode/command/analyze-mockup.md +6 -0
  12. package/dist/template/.opencode/command/analyze-project.md +6 -0
  13. package/dist/template/.opencode/command/brainstorm.md +6 -0
  14. package/dist/template/.opencode/command/commit.md +6 -1
  15. package/dist/template/.opencode/command/create.md +369 -134
  16. package/dist/template/.opencode/command/design-audit.md +6 -0
  17. package/dist/template/.opencode/command/design.md +6 -0
  18. package/dist/template/.opencode/command/finish.md +1 -0
  19. package/dist/template/.opencode/command/fix-ci.md +1 -0
  20. package/dist/template/.opencode/command/fix-types.md +6 -0
  21. package/dist/template/.opencode/command/fix-ui.md +6 -0
  22. package/dist/template/.opencode/command/fix.md +6 -0
  23. package/dist/template/.opencode/command/handoff.md +6 -1
  24. package/dist/template/.opencode/command/implement.md +1 -0
  25. package/dist/template/.opencode/command/import-plan.md +7 -2
  26. package/dist/template/.opencode/command/integration-test.md +5 -0
  27. package/dist/template/.opencode/command/issue.md +11 -2
  28. package/dist/template/.opencode/command/new-feature.md +8 -0
  29. package/dist/template/.opencode/command/plan.md +282 -21
  30. package/dist/template/.opencode/command/pr.md +6 -1
  31. package/dist/template/.opencode/command/research-and-implement.md +6 -0
  32. package/dist/template/.opencode/command/research.md +6 -0
  33. package/dist/template/.opencode/command/resume.md +8 -0
  34. package/dist/template/.opencode/command/revert-feature.md +7 -2
  35. package/dist/template/.opencode/command/review-codebase.md +6 -0
  36. package/dist/template/.opencode/command/status.md +6 -0
  37. package/dist/template/.opencode/command/triage.md +17 -12
  38. package/dist/template/.opencode/command/ui-review.md +4 -0
  39. package/dist/template/.opencode/opencode.json +479 -514
  40. package/dist/template/.opencode/package.json +1 -1
  41. package/dist/template/.opencode/plugin/beads.ts +857 -270
  42. package/dist/template/.opencode/skill/beads/SKILL.md +110 -17
  43. package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +3 -3
  44. package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +1 -1
  45. 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.12.0",
754
754
  description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
755
755
  type: "module",
756
756
  repository: {
@@ -499,9 +499,9 @@ Run `bd_cleanup` periodically to remove old closed issues. Use `bd_doctor` to ch
499
499
 
500
500
  **Analysis Tools**
501
501
 
502
- Call `bd_insights` for graph analysis showing bottlenecks and high-priority keystones. Use `bd_plan` to see a parallel execution plan with tasks grouped by priority tracks.
502
+ Use `bd_blocked` to see tasks with unresolved dependencies. Use `bd_dep` with action "tree" to visualize dependency chains.
503
503
 
504
- Get `bd_priority` recommendations for what to work on next based on graph analysis. Use `bd_diff` to compare issue changes between git revisions.
504
+ Use `bd_diff` to compare issue changes between git revisions.
505
505
 
506
506
  ### Rules
507
507
 
@@ -2,26 +2,26 @@
2
2
  description: Primary development agent with full codebase access. Use this agent for implementing features, writing code, running tests, and completing development tasks autonomously.
3
3
  mode: primary
4
4
  temperature: 0.1
5
- tools:
6
- bash: true
7
- edit: true
8
- write: true
9
- patch: true
10
- glob: true
11
- grep: true
12
- read: true
13
- list: true
14
- webfetch: true
15
- websearch: true
16
- codesearch: true
17
- ast-grep*: true
18
- lsp*: true
19
- context7*: true
20
- gh_grep*: true
21
- memory-read: true
22
- memory-update: true
23
- memory-search: true
24
- observation: true
5
+ permission:
6
+ bash: allow
7
+ edit: allow
8
+ write: allow
9
+ patch: allow
10
+ glob: allow
11
+ grep: allow
12
+ read: allow
13
+ list: allow
14
+ webfetch: allow
15
+ websearch: allow
16
+ codesearch: allow
17
+ ast-grep*: allow
18
+ lsp*: allow
19
+ context7*: allow
20
+ gh_grep*: allow
21
+ memory-read: allow
22
+ memory-update: allow
23
+ memory-search: allow
24
+ observation: allow
25
25
  ---
26
26
 
27
27
  # Build Agent
@@ -2,19 +2,19 @@
2
2
  description: Fast codebase search specialist. Use this agent to find files by patterns, search code for keywords, or understand how the codebase works. Specify thoroughness level - "quick" for simple lookups, "medium" for moderate exploration, "very thorough" for comprehensive analysis.
3
3
  mode: subagent
4
4
  temperature: 0.1
5
- tools:
6
- bash: true
7
- edit: false
8
- write: false
9
- patch: false
10
- glob: true
11
- grep: true
12
- read: true
13
- list: true
14
- todoread: false
15
- todowrite: false
16
- ast-grep*: true
17
- lsp*: true
5
+ permission:
6
+ bash: allow
7
+ edit: deny
8
+ write: deny
9
+ patch: deny
10
+ glob: allow
11
+ grep: allow
12
+ read: allow
13
+ list: allow
14
+ todoread: deny
15
+ todowrite: deny
16
+ ast-grep*: allow
17
+ lsp*: allow
18
18
  ---
19
19
 
20
20
  # Explore Agent
@@ -2,26 +2,26 @@
2
2
  description: Strategic planning agent for architecture and design decisions. Use this agent for tasks with 3+ phases, complex coordination, or when you need to break down work into actionable steps with agent assignments.
3
3
  mode: subagent
4
4
  temperature: 0.2
5
- tools:
6
- bash: false
7
- edit: true
8
- write: true
9
- patch: false
10
- glob: true
11
- grep: true
12
- read: true
13
- list: true
14
- webfetch: true
15
- websearch: true
16
- task: true
17
- todowrite: true
18
- todoread: true
19
- context7*: true
20
- codesearch: true
21
- gh_grep*: true
22
- memory-read: true
23
- memory-update: true
24
- bd_*: true
5
+ permission:
6
+ bash: deny
7
+ edit: allow
8
+ write: allow
9
+ patch: deny
10
+ glob: allow
11
+ grep: allow
12
+ read: allow
13
+ list: allow
14
+ webfetch: allow
15
+ websearch: allow
16
+ task: allow
17
+ todowrite: allow
18
+ todoread: allow
19
+ context7*: allow
20
+ codesearch: allow
21
+ gh_grep*: allow
22
+ memory-read: allow
23
+ memory-update: allow
24
+ bd_*: allow
25
25
  ---
26
26
 
27
27
  # Plan Agent
@@ -2,24 +2,24 @@
2
2
  description: Code review, debugging, and security audit specialist. Use this agent for critical analysis, complex debugging, architecture decisions, or when you need evidence-based recommendations.
3
3
  mode: subagent
4
4
  temperature: 0.1
5
- tools:
6
- bash: true
7
- edit: false
8
- write: false
9
- patch: false
10
- glob: true
11
- grep: true
12
- read: true
13
- list: true
14
- webfetch: true
15
- websearch: true
16
- context7*: true
17
- gh_grep*: true
18
- codesearch: true
19
- memory-read: true
20
- memory-update: true
21
- ast-grep*: true
22
- lsp*: true
5
+ permission:
6
+ bash: allow
7
+ edit: deny
8
+ write: deny
9
+ patch: deny
10
+ glob: allow
11
+ grep: allow
12
+ read: allow
13
+ list: allow
14
+ webfetch: allow
15
+ websearch: allow
16
+ context7*: allow
17
+ gh_grep*: allow
18
+ codesearch: allow
19
+ memory-read: allow
20
+ memory-update: allow
21
+ ast-grep*: allow
22
+ lsp*: allow
23
23
  ---
24
24
 
25
25
  # Review Agent
@@ -2,26 +2,26 @@
2
2
  description: Fast primary agent for small, well-defined tasks. Use this agent when speed matters more than depth, or for straightforward edits and commands.
3
3
  mode: primary
4
4
  temperature: 0.1
5
- tools:
6
- bash: true
7
- edit: true
8
- write: true
9
- patch: true
10
- glob: true
11
- grep: true
12
- read: true
13
- list: true
14
- webfetch: true
15
- websearch: true
16
- ast-grep*: true
17
- lsp*: true
18
- context7*: true
19
- gh_grep*: true
20
- codesearch: true
21
- memory-read: true
22
- memory-update: true
23
- memory-search: true
24
- observation: true
5
+ permission:
6
+ bash: allow
7
+ edit: allow
8
+ write: allow
9
+ patch: allow
10
+ glob: allow
11
+ grep: allow
12
+ read: allow
13
+ list: allow
14
+ webfetch: allow
15
+ websearch: allow
16
+ ast-grep*: allow
17
+ lsp*: allow
18
+ context7*: allow
19
+ gh_grep*: allow
20
+ codesearch: allow
21
+ memory-read: allow
22
+ memory-update: allow
23
+ memory-search: allow
24
+ observation: allow
25
25
  ---
26
26
 
27
27
  # Rush Agent
@@ -2,22 +2,22 @@
2
2
  description: External research specialist for library docs, GitHub patterns, and framework analysis. Use this agent when you need API references, real-world code examples, or best practices from external sources.
3
3
  mode: subagent
4
4
  temperature: 0.3
5
- tools:
6
- bash: false
7
- edit: false
8
- write: false
9
- patch: false
10
- glob: false
11
- grep: false
12
- read: false
13
- list: false
14
- webfetch: true
15
- websearch: true
16
- context7*: true
17
- gh_grep*: true
18
- codesearch: true
19
- memory-read: true
20
- memory-update: false
5
+ permission:
6
+ bash: deny
7
+ edit: deny
8
+ write: deny
9
+ patch: deny
10
+ glob: deny
11
+ grep: deny
12
+ read: deny
13
+ list: deny
14
+ webfetch: allow
15
+ websearch: allow
16
+ context7*: allow
17
+ gh_grep*: allow
18
+ codesearch: allow
19
+ memory-read: allow
20
+ memory-update: deny
21
21
  ---
22
22
 
23
23
  # Scout Agent
@@ -2,25 +2,25 @@
2
2
  description: Visual content specialist for multimodal analysis, mockups, PDFs, diagrams, and UI/UX guidance. Use this agent for image analysis, accessibility audits, and anti-AI-slop design recommendations.
3
3
  mode: subagent
4
4
  temperature: 0.3
5
- tools:
6
- bash: true
7
- edit: false
8
- write: false
9
- patch: false
10
- glob: true
11
- grep: true
12
- read: true
13
- list: true
14
- webfetch: true
15
- websearch: true
16
- task: true
17
- todowrite: true
18
- todoread: true
19
- context7*: true
20
- codesearch: true
21
- gh_grep*: true
22
- memory-read: true
23
- memory-update: true
5
+ permission:
6
+ bash: allow
7
+ edit: deny
8
+ write: deny
9
+ patch: deny
10
+ glob: allow
11
+ grep: allow
12
+ read: allow
13
+ list: allow
14
+ webfetch: allow
15
+ websearch: allow
16
+ task: allow
17
+ todowrite: allow
18
+ todoread: allow
19
+ context7*: allow
20
+ codesearch: allow
21
+ gh_grep*: allow
22
+ memory-read: allow
23
+ memory-update: allow
24
24
  ---
25
25
 
26
26
  # Vision Agent
@@ -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