@infinitedusky/indusk-mcp 1.24.0 → 1.24.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/package.json +1 -1
- package/skills/work.md +8 -2
package/package.json
CHANGED
package/skills/work.md
CHANGED
|
@@ -280,10 +280,16 @@ Use the **describe-then-do** workflow from the jj skill:
|
|
|
280
280
|
|
|
281
281
|
1. `jj new` before each logical unit of work
|
|
282
282
|
2. `jj describe` to declare what you're about to do
|
|
283
|
-
3. Do the work, check off the item
|
|
283
|
+
3. Do the work, check off the item
|
|
284
284
|
4. Repeat
|
|
285
285
|
|
|
286
|
-
|
|
286
|
+
**Default: one commit per checklist item.** Each impl checklist item is a logical unit of work — give it its own commit. This keeps history granular, makes blame and bisect useful, avoids the end-of-phase `jj split` chore, and lets the eval agent score each unit while context is fresh.
|
|
287
|
+
|
|
288
|
+
Phase-close commits (one big commit for everything in a phase) are an exception, not the default. Use them ONLY when items are trivially related — e.g., a phase that's "rename X → Y in 5 files" where every commit would be the same one-line change. If items represent meaningfully different work (different concerns, different files, different intents), each item deserves its own commit.
|
|
289
|
+
|
|
290
|
+
Cost is not a reason to batch. The eval agent uses session-resume after the first commit, so subsequent commits within a session amortize the catchup cost — per-item commits are cheap.
|
|
291
|
+
|
|
292
|
+
Follow the monorepo rule: if a change spans multiple apps, use `jj split` to silo commits between contexts. See the jj skill for details.
|
|
287
293
|
|
|
288
294
|
## Cross-Plan Impact
|
|
289
295
|
|