baldart 4.0.3 → 4.1.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/CHANGELOG.md +33 -0
- package/VERSION +1 -1
- package/framework/.claude/agents/REGISTRY.md +5 -5
- package/framework/.claude/agents/api-perf-cost-auditor.md +4 -4
- package/framework/.claude/agents/code-reviewer.md +2 -2
- package/framework/.claude/agents/codebase-architect.md +24 -24
- package/framework/.claude/agents/coder.md +6 -6
- package/framework/.claude/agents/doc-reviewer.md +16 -16
- package/framework/.claude/agents/hybrid-ml-architect.md +1 -1
- package/framework/.claude/agents/legal-counsel-gdpr.md +1 -1
- package/framework/.claude/agents/motion-expert.md +3 -3
- package/framework/.claude/agents/plan-auditor.md +4 -4
- package/framework/.claude/agents/prd-card-writer.md +14 -14
- package/framework/.claude/agents/prd.md +17 -17
- package/framework/.claude/agents/security-reviewer.md +1 -1
- package/framework/.claude/agents/senior-researcher.md +1 -1
- package/framework/.claude/agents/skill-improver.md +1 -1
- package/framework/.claude/agents/visual-designer.md +6 -6
- package/framework/.claude/agents/wiki-curator.md +6 -6
- package/framework/.claude/commands/check.md +1 -1
- package/framework/.claude/commands/codexreview.md +2 -2
- package/framework/.claude/commands/qa.md +1 -1
- package/framework/.claude/skills/bug/SKILL.md +2 -2
- package/framework/.claude/skills/doc-writing-for-rag/references/before-after-examples.md +3 -3
- package/framework/.claude/skills/doc-writing-for-rag/references/compact-templates.md +1 -1
- package/framework/.claude/skills/doc-writing-for-rag/references/line-count-targets.md +2 -0
- package/framework/.claude/skills/doc-writing-for-rag/references/schemas-and-errors.md +2 -0
- package/framework/.claude/skills/new/SKILL.md +4 -4
- package/framework/.claude/skills/prd/assets/card-template.yml +3 -3
- package/framework/.claude/skills/prd/assets/epic-template.yml +6 -6
- package/framework/.claude/skills/prd/assets/prd-template.md +2 -2
- package/framework/.claude/skills/prd/references/audit-phase.md +1 -1
- package/framework/.claude/skills/prd/references/backlog-phase.md +3 -3
- package/framework/.claude/skills/prd/references/prd-writing-phase.md +2 -2
- package/framework/.claude/skills/worktree-manager/SKILL.md +2 -2
- package/framework/agents/project-context.md +1 -0
- package/framework/docs/PROJECT-CONFIGURATION.md +1 -0
- package/framework/routines/ds-drift.routine.yml +6 -6
- package/framework/routines/wiki-review.routine.yml +4 -4
- package/framework/templates/baldart.config.template.yml +1 -0
- package/framework/templates/overlays/commands/codexreview.example.md +2 -0
- package/package.json +1 -1
- package/src/commands/configure.js +2 -0
package/package.json
CHANGED
|
@@ -370,6 +370,7 @@ function detect(cwd = process.cwd()) {
|
|
|
370
370
|
backlog_dir: exists('backlog') ? 'backlog' : '',
|
|
371
371
|
adrs_dir: countMatches('docs/decisions', /^ADR-.*\.md$/) > 0 ? 'docs/decisions' : '',
|
|
372
372
|
prd_dir: exists('docs/prd') ? 'docs/prd' : '',
|
|
373
|
+
docs_dir: exists('docs') ? 'docs' : '',
|
|
373
374
|
references_dir: exists('docs/references') ? 'docs/references' : '',
|
|
374
375
|
wiki_dir: exists('docs/wiki') ? 'docs/wiki' : '',
|
|
375
376
|
e2e_tests_dir: e2eTestsDir,
|
|
@@ -640,6 +641,7 @@ async function interactivePrompts(merged, detected) {
|
|
|
640
641
|
['backlog_dir', 'Backlog directory', () => merged.features.has_backlog],
|
|
641
642
|
['adrs_dir', 'ADR directory', () => merged.features.has_adrs],
|
|
642
643
|
['prd_dir', 'PRD directory', () => merged.features.has_prd_workflow],
|
|
644
|
+
['docs_dir', 'Docs root directory (rg-search umbrella)', () => true],
|
|
643
645
|
['references_dir', 'References docs root', () => true],
|
|
644
646
|
['wiki_dir', 'Wiki overlay directory', () => merged.features.has_wiki_overlay],
|
|
645
647
|
['e2e_tests_dir', 'E2E tests directory', () => true],
|