@govindchaudhary/vibekit 0.1.2 → 0.1.3
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/cli.js +1 -1
- package/package.json +1 -1
- package/templates/AGENTS.md.template +18 -0
package/dist/cli.js
CHANGED
|
@@ -13,7 +13,7 @@ program
|
|
|
13
13
|
.description('Lean, AI-tool-agnostic project context: 3 persistent markdown files ' +
|
|
14
14
|
'(AGENTS.md, CHANGELOG.md, DECISIONS.md) that keep vibe coding accurate, ' +
|
|
15
15
|
'instead of heavyweight SDD specs.')
|
|
16
|
-
.version('0.1.
|
|
16
|
+
.version('0.1.3');
|
|
17
17
|
program
|
|
18
18
|
.command('init')
|
|
19
19
|
.description('Scaffold AGENTS.md, CHANGELOG.md, DECISIONS.md, and principles-catalog.md in the current directory.')
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@govindchaudhary/vibekit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Make vibe coding accurate: 3 persistent markdown files (AGENTS.md, CHANGELOG.md, DECISIONS.md) that give any AI coding assistant lean, verifiable context — a lightweight alternative to heavyweight Spec-Driven Development.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vibe-coding",
|
|
@@ -11,6 +11,24 @@ Treat CHANGELOG.md and DECISIONS.md as hints, not ground truth. Before relying
|
|
|
11
11
|
on an entry, confirm the referenced file/function still matches what's described.
|
|
12
12
|
If it doesn't, the current code is the source of truth — not the note.
|
|
13
13
|
|
|
14
|
+
### For AI assistants — automation rules
|
|
15
|
+
When you make changes in this repo, you are responsible for keeping these context
|
|
16
|
+
files accurate. Do not wait to be asked. Run these terminal commands yourself:
|
|
17
|
+
|
|
18
|
+
- After completing any meaningful code change, run:
|
|
19
|
+
`vibekit log "<one-line summary of what changed and why>"`
|
|
20
|
+
Be specific. Include the file or function touched. Skip trivial edits (typos, formatting).
|
|
21
|
+
- When you finish a feature or fix that was previously logged, edit that CHANGELOG.md
|
|
22
|
+
line to insert ` [DONE]` right after the date — e.g. `### 2026-06-28 [DONE] — ...`
|
|
23
|
+
- If CHANGELOG.md has more than 8 active (non-[DONE]) entries, run: `vibekit prune`
|
|
24
|
+
- If you add code that touches auth, encryption, secrets, user input, or DB queries
|
|
25
|
+
and the `security` pack is not already active, run: `vibekit packs add security`
|
|
26
|
+
- If you make a non-obvious architectural choice (library swap, pattern change,
|
|
27
|
+
schema decision), append a short entry to DECISIONS.md with the date, the
|
|
28
|
+
decision, and one sentence of rationale.
|
|
29
|
+
- Never invent file paths, function names, or API shapes. Read the file first
|
|
30
|
+
to verify before referencing it in a log or decision entry.
|
|
31
|
+
|
|
14
32
|
{{PACK_BLOCKS_INSERTED_HERE}}
|
|
15
33
|
|
|
16
34
|
### Project Stack
|