create-vasvibe 2.2.1 → 2.4.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/package.json +2 -2
- package/template/.agents/agents/explorer/agent.json +43 -0
- package/template/.agents/agents/logger/agent.json +43 -0
- package/template/.agents/workflows/build-prototype.md +32 -0
- package/template/.agents/workflows/explorer.md +78 -0
- package/template/.agents/workflows/logger.md +117 -0
- package/template/.agents/workflows/plan-feature.md +30 -0
- package/template/.agents/workflows/start-fix.md +6 -5
- package/template/.claude/agents/analyst.md +51 -22
- package/template/.claude/agents/explorer.md +138 -0
- package/template/.claude/agents/fixer.md +1 -2
- package/template/.claude/agents/frontend.md +2 -0
- package/template/.claude/agents/fullstack.md +4 -2
- package/template/.claude/agents/logger.md +143 -0
- package/template/.claude/agents/orchestrator.md +23 -4
- package/template/.claude/commands/build-prototype.md +33 -0
- package/template/.claude/commands/plan-feature.md +31 -0
- package/template/.claude/commands/start-fix.md +6 -5
- package/template/.claude/settings.local.json +12 -1
- package/template/.github/prompts/analyst.prompt.md +70 -24
- package/template/.github/prompts/explorer.prompt.md +133 -0
- package/template/.github/prompts/fixer.prompt.md +18 -27
- package/template/.github/prompts/frontend.prompt.md +45 -28
- package/template/.github/prompts/fullstack.prompt.md +26 -32
- package/template/.github/prompts/logger.prompt.md +138 -0
- package/template/.github/prompts/orchestrator.prompt.md +131 -73
- package/template/.opencode/agents/analyst.md +51 -22
- package/template/.opencode/agents/devops.md +6 -3
- package/template/.opencode/agents/explorer.md +137 -0
- package/template/.opencode/agents/fixer.md +1 -2
- package/template/.opencode/agents/frontend.md +3 -1
- package/template/.opencode/agents/fullstack.md +4 -2
- package/template/.opencode/agents/logger.md +142 -0
- package/template/.opencode/agents/orchestrator.md +22 -6
- package/template/.opencode/agents/reliability.md +10 -8
- package/template/.opencode/agents/security.md +7 -5
- package/template/.opencode/commands/build-prototype.md +32 -0
- package/template/.opencode/commands/plan-feature.md +30 -0
- package/template/.opencode/commands/start-fix.md +6 -5
- package/template/_gitignore +0 -3
- package/template/agent/workflows/analyst.md +51 -22
- package/template/agent/workflows/explorer.md +133 -0
- package/template/agent/workflows/fixer.md +1 -2
- package/template/agent/workflows/frontend.md +2 -0
- package/template/agent/workflows/fullstack.md +4 -2
- package/template/agent/workflows/logger.md +138 -0
- package/template/agent/workflows/orchestrator.md +22 -3
- package/template/schemas/specification.template.md +29 -15
- package/template/schemas/workspace-registry.json +1 -0
- package/template/specifications/.gitkeep +3 -1
|
@@ -1 +1,3 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Keeps the specifications/ folder in the repository.
|
|
2
|
+
# Specification files generated by the Analyst agent (e.g. 000_spec_environment_setup.md)
|
|
3
|
+
# ARE tracked and should be committed — they are the source of truth for development.
|