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.
- package/dist/index.js +1 -1
- package/dist/template/.opencode/command/accessibility-check.md +6 -2
- package/dist/template/.opencode/command/analyze-mockup.md +6 -0
- package/dist/template/.opencode/command/analyze-project.md +6 -0
- package/dist/template/.opencode/command/brainstorm.md +6 -0
- package/dist/template/.opencode/command/commit.md +6 -1
- package/dist/template/.opencode/command/create.md +369 -134
- package/dist/template/.opencode/command/design-audit.md +6 -0
- package/dist/template/.opencode/command/design.md +6 -0
- package/dist/template/.opencode/command/finish.md +1 -0
- package/dist/template/.opencode/command/fix-ci.md +1 -0
- package/dist/template/.opencode/command/fix-types.md +6 -0
- package/dist/template/.opencode/command/fix-ui.md +6 -0
- package/dist/template/.opencode/command/fix.md +6 -0
- package/dist/template/.opencode/command/handoff.md +6 -1
- package/dist/template/.opencode/command/implement.md +1 -0
- package/dist/template/.opencode/command/import-plan.md +6 -1
- package/dist/template/.opencode/command/integration-test.md +5 -0
- package/dist/template/.opencode/command/issue.md +6 -0
- package/dist/template/.opencode/command/new-feature.md +8 -0
- package/dist/template/.opencode/command/plan.md +282 -21
- package/dist/template/.opencode/command/pr.md +6 -1
- package/dist/template/.opencode/command/research-and-implement.md +6 -0
- package/dist/template/.opencode/command/research.md +6 -0
- package/dist/template/.opencode/command/resume.md +8 -0
- package/dist/template/.opencode/command/revert-feature.md +6 -1
- package/dist/template/.opencode/command/review-codebase.md +6 -0
- package/dist/template/.opencode/command/status.md +6 -0
- package/dist/template/.opencode/command/triage.md +6 -0
- package/dist/template/.opencode/command/ui-review.md +4 -0
- package/dist/template/.opencode/skill/beads/SKILL.md +108 -3
- 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.
|
|
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
|
|
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
|
|
|
@@ -6,7 +6,12 @@ agent: build
|
|
|
6
6
|
|
|
7
7
|
# Commit
|
|
8
8
|
|
|
9
|
-
**Load
|
|
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
|
|