start-vibing 2.0.49 → 2.0.50
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/template/.claude/agents/claude-md-compactor.md +1 -0
- package/template/.claude/agents/commit-manager.md +1 -0
- package/template/.claude/agents/documenter.md +1 -0
- package/template/.claude/agents/domain-updater.md +1 -0
- package/template/.claude/agents/research-web.md +1 -0
- package/template/.claude/agents/tester-unit.md +1 -0
- package/template/.claude/settings.json +7 -0
package/package.json
CHANGED
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: claude-md-compactor
|
|
3
3
|
description: "AUTOMATICALLY invoke when CLAUDE.md exceeds 40k chars. Triggers: stop hook CLAUDE_MD_SIZE_EXCEEDED, 'compact CLAUDE.md'. Compacts while preserving critical knowledge per Anthropic best practices."
|
|
4
4
|
model: sonnet
|
|
5
|
+
color: orange
|
|
5
6
|
tools: Read, Write, Edit, Bash, Grep, Glob, WebSearch
|
|
6
7
|
skills: codebase-knowledge, docs-tracker
|
|
7
8
|
---
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: commit-manager
|
|
3
3
|
description: "AUTOMATICALLY invoke as FINAL AGENT when implementation is complete. Triggers: 'commit', 'push', 'finalize', implementation done. Creates conventional commits, merges to main. PROACTIVELY runs AFTER domain-updater."
|
|
4
4
|
model: haiku
|
|
5
|
+
color: green
|
|
5
6
|
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
6
7
|
skills: docs-tracker, codebase-knowledge, git-workflow
|
|
7
8
|
---
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: documenter
|
|
3
3
|
description: 'AUTOMATICALLY invoke AFTER any code implementation. Triggers: code written/edited, new files created, feature implemented. Creates/updates domain documentation in .claude/skills/codebase-knowledge/domains/. PROACTIVELY runs after implementation.'
|
|
4
4
|
model: sonnet
|
|
5
|
+
color: blue
|
|
5
6
|
tools: Read, Write, Edit, Grep, Glob, Bash
|
|
6
7
|
skills: docs-tracker, codebase-knowledge
|
|
7
8
|
---
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: domain-updater
|
|
3
3
|
description: 'AUTOMATICALLY invoke BEFORE commit-manager at session end. Triggers: implementation complete, problems solved, learnings to record. Adds Problems & Solutions, Attention Points to existing domains. PROACTIVELY records session learnings.'
|
|
4
4
|
model: haiku
|
|
5
|
+
color: purple
|
|
5
6
|
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
6
7
|
skills: codebase-knowledge, docs-tracker
|
|
7
8
|
---
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: research-web
|
|
3
3
|
description: "AUTOMATICALLY invoke BEFORE implementing any new feature or technology. Triggers: new feature, new technology, 'search', 'find info'. Web research specialist. PROACTIVELY searches for current solutions."
|
|
4
4
|
model: sonnet
|
|
5
|
+
color: cyan
|
|
5
6
|
tools: WebSearch, WebFetch, Read, Write
|
|
6
7
|
skills: research-cache
|
|
7
8
|
---
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name: tester-unit
|
|
3
3
|
description: 'AUTOMATICALLY invoke AFTER implementing any function or utility. Triggers: new function created, utility code written, logic implemented. Creates unit tests with Vitest. PROACTIVELY tests isolated functions.'
|
|
4
4
|
model: sonnet
|
|
5
|
+
color: yellow
|
|
5
6
|
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
6
7
|
skills: test-coverage
|
|
7
8
|
---
|
|
@@ -19,6 +19,13 @@
|
|
|
19
19
|
}
|
|
20
20
|
},
|
|
21
21
|
|
|
22
|
+
"enabledPlugins": {
|
|
23
|
+
"typescript-lsp@claude-plugins-official": true,
|
|
24
|
+
"code-review@claude-plugins-official": true,
|
|
25
|
+
"security-guidance@claude-plugins-official": true,
|
|
26
|
+
"commit-commands@claude-plugins-official": true
|
|
27
|
+
},
|
|
28
|
+
|
|
22
29
|
"context": {
|
|
23
30
|
"compaction_threshold": 0.85,
|
|
24
31
|
"enable_compaction": true,
|