start-vibing 2.0.39 → 2.0.41
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
CHANGED
|
@@ -55,10 +55,16 @@ async function main(): Promise<void> {
|
|
|
55
55
|
|
|
56
56
|
const systemMessage = `TASK WORKFLOW (English only):
|
|
57
57
|
|
|
58
|
+
0. READ both CLAUDE.md (project root) and .claude/CLAUDE.md before making any changes. These contain project rules, architecture, and context you need.
|
|
58
59
|
1. CREATE a detailed todo-list (TaskCreate) breaking down the user's request into subtopics/steps.
|
|
59
60
|
2. WORK through each item sequentially — mark in_progress when starting, completed when done.
|
|
60
61
|
3. COMMIT using conventional commits (feat/fix/refactor/docs/chore). Use the commit-manager agent for proper git workflow: branch → implement → commit → merge to main.
|
|
61
|
-
4. UPDATE CLAUDE.md
|
|
62
|
+
4. UPDATE CLAUDE.md before finishing — this is the project's fast-recall memory across sessions:
|
|
63
|
+
a. "## Last Change" section (date: ${today}, branch, summary). Keep only the latest, never stack.
|
|
64
|
+
b. If you changed how the app works (new flows, changed workflows, new patterns): update the relevant CLAUDE.md sections (Architecture, Workflow, Rules, UI patterns, etc.) so the next session knows.
|
|
65
|
+
c. If you added new rules, gotchas, or forbidden patterns: add them to the appropriate section.
|
|
66
|
+
d. If you changed config, stack, or tooling: update the Stack/Configuration sections.
|
|
67
|
+
CLAUDE.md is the single source of truth for quick context. Anything not recorded here will be forgotten next session.
|
|
62
68
|
5. RUN stop-validator before finishing: npx tsx .claude/hooks/stop-validator.ts`;
|
|
63
69
|
|
|
64
70
|
console.log(JSON.stringify({ continue: true, systemMessage }));
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
- **Date:** 2026-02-04
|
|
6
6
|
- **Commit:** pending
|
|
7
|
-
- **Session:** Simplified user-prompt-submit hook
|
|
7
|
+
- **Session:** Simplified user-prompt-submit hook (895→73 lines) and enhanced CLAUDE.md update instructions to cover flows, rules, architecture — not just Last Change
|
|
8
8
|
|
|
9
9
|
## Files
|
|
10
10
|
|