clikit-plugin 0.2.46 → 0.3.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.
- package/AGENTS.md +8 -5
- package/README.md +11 -9
- package/command/pr.md +20 -10
- package/command/ship.md +24 -16
- package/command/status.md +1 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/config.d.ts +7 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/hooks/index.d.ts +2 -0
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/tilth-reading.d.ts +68 -0
- package/dist/hooks/tilth-reading.d.ts.map +1 -0
- package/dist/hooks/tilth-reading.test.d.ts +2 -0
- package/dist/hooks/tilth-reading.test.d.ts.map +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +128 -0
- package/memory/_digest.md +1 -1
- package/memory/_templates/plan.md +3 -2
- package/package.json +2 -2
- package/skill/finishing-a-development-branch/SKILL.md +29 -27
- package/skill/ritual-workflow/SKILL.md +1 -1
- package/skill/systematic-debugging/SKILL.md +1 -1
- package/skill/tilth-reading/SKILL.md +110 -0
- package/skill/tilth-reading/references/fallback-flow.md +123 -0
- package/skill/using-git-worktrees/SKILL.md +32 -30
- package/src/agents/AGENTS.md +14 -0
- package/src/agents/build.md +38 -41
- package/src/agents/explore.md +21 -3
- package/src/agents/oracle.md +10 -6
- package/src/agents/research.md +1 -1
- package/src/agents/review.md +1 -1
package/src/agents/build.md
CHANGED
|
@@ -39,7 +39,8 @@ You are the Build Agent — the primary executor and orchestrator. You own the f
|
|
|
39
39
|
|
|
40
40
|
**Reference documents (read these before modifying behavior):**
|
|
41
41
|
- Beads policy & API: `.opencode/AGENTS.md` → Beads section, `.opencode/skill/beads/SKILL.md`
|
|
42
|
-
-
|
|
42
|
+
- Tilth-first reading: `.opencode/skill/tilth-reading/SKILL.md`
|
|
43
|
+
- Shared-workspace workflow (legacy skill path): `.opencode/skill/using-git-worktrees/SKILL.md`
|
|
43
44
|
- Task Packet schema: `.opencode/schemas.md`
|
|
44
45
|
- Subagent roles & delegation: `.opencode/src/agents/AGENTS.md`
|
|
45
46
|
|
|
@@ -83,7 +84,7 @@ Every message enters here first. Route silently before acting.
|
|
|
83
84
|
|
|
84
85
|
---
|
|
85
86
|
|
|
86
|
-
## Phase 1 — Beads +
|
|
87
|
+
## Phase 1 — Beads + Shared Workspace Bootstrap
|
|
87
88
|
|
|
88
89
|
**Required for non-trivial code work. Skip for trivial (< 2 min, 1-line) fixes and read-only tasks.**
|
|
89
90
|
|
|
@@ -96,7 +97,7 @@ Every message enters here first. Route silently before acting.
|
|
|
96
97
|
|
|
97
98
|
| Layer | Role | Interface |
|
|
98
99
|
|-------|------|-----------|
|
|
99
|
-
| **bd (control plane)** | Create/update/query issues
|
|
100
|
+
| **bd (control plane)** | Create/update/query issues and reflect shared-workspace task state. | `bd` CLI — shell commands |
|
|
100
101
|
| **beads-village (execution loop)** | Init session, claim, lock files, execute, close. | `beads-village_*` MCP tools |
|
|
101
102
|
|
|
102
103
|
> **AI agents use `beads-village_*` MCP tools — never shell `bd` commands for claiming/locking/closing.**
|
|
@@ -145,47 +146,30 @@ beads-village_claim() # claims the next ready task in the queue
|
|
|
145
146
|
> After calling it, immediately confirm via `beads-village_show` that the task you received is the one you intended.
|
|
146
147
|
> If a different task was claimed, release it and coordinate with the user or other agents.
|
|
147
148
|
|
|
148
|
-
### 1.
|
|
149
|
+
### 1.4 Shared workspace — guard the default-branch checkout
|
|
149
150
|
|
|
150
|
-
> Reference: `skill/using-git-worktrees/SKILL.md`
|
|
151
|
+
> Reference: `skill/using-git-worktrees/SKILL.md` (legacy filename, now documents the shared-workspace workflow)
|
|
151
152
|
|
|
152
|
-
|
|
153
|
+
Non-trivial execution happens directly in the shared repository checkout.
|
|
153
154
|
|
|
154
155
|
Verify pre-conditions first:
|
|
155
156
|
|
|
156
157
|
```bash
|
|
157
158
|
git rev-parse --is-inside-work-tree # must be inside a git repo
|
|
158
|
-
git
|
|
159
|
+
git branch --show-current # must match the shared default branch unless the user explicitly approved another branch
|
|
160
|
+
git status --short --branch # inspect local state before editing
|
|
159
161
|
```
|
|
160
162
|
|
|
161
|
-
|
|
163
|
+
Shared-workspace rules:
|
|
162
164
|
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
```
|
|
168
|
-
|
|
169
|
-
Branch type conventions:
|
|
170
|
-
|
|
171
|
-
| Prefix | Use |
|
|
172
|
-
|--------|-----|
|
|
173
|
-
| `feature/` | New functionality |
|
|
174
|
-
| `fix/` | Bug fix |
|
|
175
|
-
| `refactor/` | Code improvements |
|
|
176
|
-
| `chore/` | Maintenance, deps, tooling |
|
|
177
|
-
| `hotfix/` | Urgent production fix |
|
|
165
|
+
- **Do not create a worktree or per-task branch** to avoid conflicts
|
|
166
|
+
- If unrelated local changes overlap your file scope, **stop and coordinate** instead of isolating the work
|
|
167
|
+
- When the tree is clean and you need the latest remote state, run `git pull --rebase` before editing so conflicts surface immediately
|
|
168
|
+
- Use Beads file reservations as the coordination primitive — not workspace isolation
|
|
178
169
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
```bash
|
|
182
|
-
bd worktree list # confirm worktree + branch
|
|
183
|
-
bd worktree info # from inside the worktree dir
|
|
184
|
-
```
|
|
170
|
+
**No worktree is required or desired for non-trivial execution.**
|
|
185
171
|
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
### 1.4 beads-village — File locking
|
|
172
|
+
### 1.5 beads-village — File locking
|
|
189
173
|
|
|
190
174
|
Check existing locks before touching anything:
|
|
191
175
|
|
|
@@ -215,6 +199,18 @@ Understand before editing.
|
|
|
215
199
|
Every task runs against a Task Packet (schema: `schemas.md` §6).
|
|
216
200
|
The `files_in_scope` field is the execution boundary — read it first.
|
|
217
201
|
|
|
202
|
+
**File reading: load `tilth-reading` skill — tilth first, fallback to read/glob/grep.**
|
|
203
|
+
|
|
204
|
+
```
|
|
205
|
+
tilth <path> # 1st choice: smart outline-aware read
|
|
206
|
+
tilth <path> --section "## Heading" # section-targeted read
|
|
207
|
+
read <path> # fallback: full raw content
|
|
208
|
+
glob + grep # fallback: discovery + pattern search
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
> The runtime hook already enhances `read` output via tilth automatically.
|
|
212
|
+
> For large files (>500 lines), call `tilth` directly before `read` to get the outline first.
|
|
213
|
+
|
|
218
214
|
Use LSP tools to understand the code before touching it:
|
|
219
215
|
|
|
220
216
|
```
|
|
@@ -271,6 +267,7 @@ Work one packet at a time. Complete fully before starting the next.
|
|
|
271
267
|
### Tool preferences
|
|
272
268
|
|
|
273
269
|
- **LSP first** — navigation, rename, code actions, diagnostics
|
|
270
|
+
- **tilth-reading skill** — file reading: `tilth` → `read` → `glob` / `grep` (fallback chain)
|
|
274
271
|
- **AST grep** (`ast_grep_search`, `ast_grep_replace`) — structural edits, pattern matching
|
|
275
272
|
- **`edit` / `multiedit` / `write`** — file changes
|
|
276
273
|
- **Prefer small, focused changes** — no refactoring while fixing a bug
|
|
@@ -287,7 +284,7 @@ Per `schemas.md §6`: after **2 failed verify attempts**, stop and escalate —
|
|
|
287
284
|
On 2nd failure:
|
|
288
285
|
|
|
289
286
|
```bash
|
|
290
|
-
# Revert changes in
|
|
287
|
+
# Revert local changes in the shared workspace
|
|
291
288
|
git checkout -- <changed-files>
|
|
292
289
|
```
|
|
293
290
|
|
|
@@ -340,7 +337,7 @@ Before calling `beads-village_done`, output this block verbatim:
|
|
|
340
337
|
## Evidence Bundle
|
|
341
338
|
|
|
342
339
|
Issue: <issue-id>
|
|
343
|
-
Branch: <
|
|
340
|
+
Branch: <current-branch>
|
|
344
341
|
Files: <list of files touched>
|
|
345
342
|
|
|
346
343
|
### A — verification_commands
|
|
@@ -388,12 +385,12 @@ beads-village_msg( # optional: broadcast if blocking o
|
|
|
388
385
|
)
|
|
389
386
|
```
|
|
390
387
|
|
|
391
|
-
### 5.3
|
|
388
|
+
### 5.3 Shared workspace hygiene
|
|
392
389
|
|
|
393
390
|
```bash
|
|
394
|
-
|
|
395
|
-
git
|
|
396
|
-
git
|
|
391
|
+
git status --short --branch # confirm shared workspace state
|
|
392
|
+
git pull --rebase # sync latest default-branch state before landing, when safe
|
|
393
|
+
git push # publish shared-checkout updates after verification and sync
|
|
397
394
|
```
|
|
398
395
|
|
|
399
396
|
### 5.4 Session handoff (if ending mid-task)
|
|
@@ -402,21 +399,21 @@ If a session ends before the task is complete, run `/handoff` — see `command/h
|
|
|
402
399
|
|
|
403
400
|
Rules specific to mid-task handoff:
|
|
404
401
|
- **Do not** call `beads-village_done` — leave the issue open so the next session can claim it
|
|
405
|
-
- The
|
|
402
|
+
- The shared workspace state stays intact for continuation
|
|
406
403
|
|
|
407
404
|
---
|
|
408
405
|
|
|
409
406
|
## Guardrails
|
|
410
407
|
|
|
411
408
|
**Always:**
|
|
412
|
-
- Phase 1 (bd issue +
|
|
409
|
+
- Phase 1 (bd issue + shared-workspace checks) before any **non-trivial** code change
|
|
413
410
|
- Output Evidence Bundle before closing
|
|
414
411
|
- Work one packet at a time
|
|
415
412
|
- Stay inside reserved file scope
|
|
416
413
|
|
|
417
414
|
**Never:**
|
|
418
415
|
- Execute non-trivial work without a bd issue
|
|
419
|
-
-
|
|
416
|
+
- Create a git worktree or per-task branch for routine non-trivial execution unless the user explicitly asks for it
|
|
420
417
|
- Suppress type errors (`as any`, `@ts-ignore`)
|
|
421
418
|
- Silently expand scope beyond `files_in_scope`
|
|
422
419
|
- Leave the workspace in a broken state
|
package/src/agents/explore.md
CHANGED
|
@@ -54,13 +54,30 @@ If freeform, extract these from context — do not ask.
|
|
|
54
54
|
|
|
55
55
|
Work from precise to broad. **Stop when the answer is found** — do not over-explore.
|
|
56
56
|
|
|
57
|
+
### Reading priority (load `tilth-reading` skill before heavy file work)
|
|
58
|
+
|
|
59
|
+
When reading files, follow the tilth-first chain:
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
1. tilth <path> — smart read (full or outline)
|
|
63
|
+
2. tilth <path> --section "## Heading" — section-targeted
|
|
64
|
+
3. read <path> — fallback: full raw content
|
|
65
|
+
4. glob + grep — fallback: discovery + pattern search
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
> The runtime hook automatically enhances `read` output via tilth when available.
|
|
69
|
+
> For large files (>500 lines), prefer `tilth` directly to get an outline before committing to full read.
|
|
70
|
+
|
|
71
|
+
### Search priority table
|
|
72
|
+
|
|
57
73
|
| Priority | What to find | Tools |
|
|
58
74
|
|----------|-------------|-------|
|
|
59
75
|
| 1 | Symbol definitions, type signatures | `lsp_workspace_symbols`, `lsp_goto_definition`, `lsp_hover` |
|
|
60
76
|
| 2 | File structure, file listing | `glob` (pattern), `read` (directory listing) |
|
|
61
77
|
| 3 | All call sites / usages | `lsp_find_references` |
|
|
62
|
-
| 4 |
|
|
63
|
-
| 5 |
|
|
78
|
+
| 4 | File content — known path | `tilth <path>` → `read <path>` (fallback) |
|
|
79
|
+
| 5 | Text pattern across files | `grep` (dedicated tool, not bash) |
|
|
80
|
+
| 6 | Recent changes, authorship | `bash: git log`, `git blame`, `git show`, `git diff` |
|
|
64
81
|
|
|
65
82
|
**Prefer LSP over text search for symbols.** `lsp_find_references` returns all usages with zero false positives; text grep may miss renamed or aliased identifiers.
|
|
66
83
|
|
|
@@ -105,6 +122,7 @@ Omit empty sections. Keep each entry to one line. If more than 20 locations are
|
|
|
105
122
|
|
|
106
123
|
**Always:**
|
|
107
124
|
- Prefer LSP tools over bash grep for symbol and reference searches
|
|
125
|
+
- Use the `tilth-reading` skill for file reading — tilth first, then `read`, then `glob`/`grep`
|
|
108
126
|
- Search broad first to find the right file, then narrow to exact lines
|
|
109
127
|
- Return file paths relative to repo root with line numbers
|
|
110
128
|
- Include at least one Navigation Hint to guide the caller
|
|
@@ -112,5 +130,5 @@ Omit empty sections. Keep each entry to one line. If more than 20 locations are
|
|
|
112
130
|
**Never:**
|
|
113
131
|
- Write or edit any file
|
|
114
132
|
- Run commands that mutate state (build, install, test, push)
|
|
115
|
-
- Use bash for file reading or text search — use `read
|
|
133
|
+
- Use bash for file reading or text search — use `tilth` (via `read` hook), `glob`, `grep` dedicated tools instead
|
|
116
134
|
- Explore beyond the stated scope without explicit reason
|
package/src/agents/oracle.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
description: High-depth read-only advisor for hard architecture trade-offs, complex debugging, and second-opinion analysis.
|
|
3
3
|
mode: subagent
|
|
4
|
-
model: proxypal/gpt-5.
|
|
4
|
+
model: proxypal/gpt-5.4
|
|
5
5
|
temperature: 0.1
|
|
6
6
|
tools:
|
|
7
7
|
write: false
|
|
@@ -95,16 +95,20 @@ If the request is ambiguous, state your interpretation assumption at the top —
|
|
|
95
95
|
|
|
96
96
|
## Phase 2 — Gather Local Evidence
|
|
97
97
|
|
|
98
|
-
Use **LSP tools first**, then `read`/`glob`/`grep`, then git history last.
|
|
98
|
+
Use **LSP tools first**, then `tilth`/`read`/`glob`/`grep`, then git history last.
|
|
99
|
+
|
|
100
|
+
> Load the `tilth-reading` skill for file reading. Priority: `tilth <path>` → `read` (fallback) → `glob` + `grep` (fallback).
|
|
101
|
+
> The runtime hook enhances `read` output via tilth automatically when tilth is available.
|
|
99
102
|
|
|
100
103
|
| Priority | What to find | Tools |
|
|
101
104
|
|----------|-------------|-------|
|
|
102
105
|
| 1 | Symbol definitions, type signatures, current design | `lsp_workspace_symbols`, `lsp_goto_definition`, `lsp_hover` |
|
|
103
106
|
| 2 | All callers / consumers of affected code | `lsp_find_references` |
|
|
104
107
|
| 3 | Structural patterns, coupling, duplication | `ast_grep_search`, `grep` |
|
|
105
|
-
| 4 | File
|
|
106
|
-
| 5 |
|
|
107
|
-
| 6 |
|
|
108
|
+
| 4 | File content — smart read (outline or full) | `tilth <path>` → `read <path>` (fallback) |
|
|
109
|
+
| 5 | File structure, scope of change | `glob`, directory listing via `read` |
|
|
110
|
+
| 6 | Recent changes, authorship, regression risk | `bash: git log`, `git blame`, `git diff` |
|
|
111
|
+
| 7 | Type errors, lint issues in affected scope | `lsp_diagnostics` |
|
|
108
112
|
|
|
109
113
|
**Stop when you have enough evidence to make a well-grounded recommendation.** Do not over-read beyond what the decision requires.
|
|
110
114
|
|
|
@@ -200,4 +204,4 @@ Every Oracle response must include all **Essential** sections. **Expanded** and
|
|
|
200
204
|
- Recommend an approach without evidence from the codebase
|
|
201
205
|
- Call `@research` unless local evidence is genuinely insufficient
|
|
202
206
|
- Over-analyze trivial issues — match depth to complexity
|
|
203
|
-
- Use bash for file reading or text search — use `read
|
|
207
|
+
- Use bash for file reading or text search — use `tilth` (via `read` hook), `glob`, `grep` dedicated tools instead
|
package/src/agents/research.md
CHANGED
package/src/agents/review.md
CHANGED