tapps-agents 3.5.41__py3-none-any.whl → 3.6.1__py3-none-any.whl
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.
- tapps_agents/__init__.py +2 -2
- tapps_agents/agents/reviewer/scoring.py +1566 -1566
- tapps_agents/agents/reviewer/tools/__init__.py +41 -41
- tapps_agents/cli/commands/health.py +665 -665
- tapps_agents/cli/commands/top_level.py +3586 -3586
- tapps_agents/core/artifact_context_builder.py +293 -0
- tapps_agents/core/config.py +33 -0
- tapps_agents/health/orchestrator.py +271 -271
- tapps_agents/resources/__init__.py +5 -0
- tapps_agents/resources/claude/__init__.py +1 -0
- tapps_agents/resources/claude/commands/README.md +156 -0
- tapps_agents/resources/claude/commands/__init__.py +1 -0
- tapps_agents/resources/claude/commands/build-fix.md +22 -0
- tapps_agents/resources/claude/commands/build.md +77 -0
- tapps_agents/resources/claude/commands/debug.md +53 -0
- tapps_agents/resources/claude/commands/design.md +68 -0
- tapps_agents/resources/claude/commands/docs.md +53 -0
- tapps_agents/resources/claude/commands/e2e.md +22 -0
- tapps_agents/resources/claude/commands/fix.md +54 -0
- tapps_agents/resources/claude/commands/implement.md +53 -0
- tapps_agents/resources/claude/commands/improve.md +53 -0
- tapps_agents/resources/claude/commands/library-docs.md +64 -0
- tapps_agents/resources/claude/commands/lint.md +52 -0
- tapps_agents/resources/claude/commands/plan.md +65 -0
- tapps_agents/resources/claude/commands/refactor-clean.md +21 -0
- tapps_agents/resources/claude/commands/refactor.md +55 -0
- tapps_agents/resources/claude/commands/review.md +67 -0
- tapps_agents/resources/claude/commands/score.md +60 -0
- tapps_agents/resources/claude/commands/security-review.md +22 -0
- tapps_agents/resources/claude/commands/security-scan.md +54 -0
- tapps_agents/resources/claude/commands/tdd.md +24 -0
- tapps_agents/resources/claude/commands/test-coverage.md +21 -0
- tapps_agents/resources/claude/commands/test.md +54 -0
- tapps_agents/resources/claude/commands/update-codemaps.md +20 -0
- tapps_agents/resources/claude/commands/update-docs.md +21 -0
- tapps_agents/resources/claude/skills/__init__.py +1 -0
- tapps_agents/resources/claude/skills/analyst/SKILL.md +272 -0
- tapps_agents/resources/claude/skills/analyst/__init__.py +1 -0
- tapps_agents/resources/claude/skills/architect/SKILL.md +282 -0
- tapps_agents/resources/claude/skills/architect/__init__.py +1 -0
- tapps_agents/resources/claude/skills/backend-patterns/SKILL.md +30 -0
- tapps_agents/resources/claude/skills/backend-patterns/__init__.py +1 -0
- tapps_agents/resources/claude/skills/coding-standards/SKILL.md +29 -0
- tapps_agents/resources/claude/skills/coding-standards/__init__.py +1 -0
- tapps_agents/resources/claude/skills/debugger/SKILL.md +203 -0
- tapps_agents/resources/claude/skills/debugger/__init__.py +1 -0
- tapps_agents/resources/claude/skills/designer/SKILL.md +243 -0
- tapps_agents/resources/claude/skills/designer/__init__.py +1 -0
- tapps_agents/resources/claude/skills/documenter/SKILL.md +252 -0
- tapps_agents/resources/claude/skills/documenter/__init__.py +1 -0
- tapps_agents/resources/claude/skills/enhancer/SKILL.md +307 -0
- tapps_agents/resources/claude/skills/enhancer/__init__.py +1 -0
- tapps_agents/resources/claude/skills/evaluator/SKILL.md +204 -0
- tapps_agents/resources/claude/skills/evaluator/__init__.py +1 -0
- tapps_agents/resources/claude/skills/frontend-patterns/SKILL.md +29 -0
- tapps_agents/resources/claude/skills/frontend-patterns/__init__.py +1 -0
- tapps_agents/resources/claude/skills/implementer/SKILL.md +188 -0
- tapps_agents/resources/claude/skills/implementer/__init__.py +1 -0
- tapps_agents/resources/claude/skills/improver/SKILL.md +218 -0
- tapps_agents/resources/claude/skills/improver/__init__.py +1 -0
- tapps_agents/resources/claude/skills/ops/SKILL.md +281 -0
- tapps_agents/resources/claude/skills/ops/__init__.py +1 -0
- tapps_agents/resources/claude/skills/orchestrator/SKILL.md +390 -0
- tapps_agents/resources/claude/skills/orchestrator/__init__.py +1 -0
- tapps_agents/resources/claude/skills/planner/SKILL.md +254 -0
- tapps_agents/resources/claude/skills/planner/__init__.py +1 -0
- tapps_agents/resources/claude/skills/reviewer/SKILL.md +434 -0
- tapps_agents/resources/claude/skills/reviewer/__init__.py +1 -0
- tapps_agents/resources/claude/skills/security-review/SKILL.md +31 -0
- tapps_agents/resources/claude/skills/security-review/__init__.py +1 -0
- tapps_agents/resources/claude/skills/simple-mode/SKILL.md +695 -0
- tapps_agents/resources/claude/skills/simple-mode/__init__.py +1 -0
- tapps_agents/resources/claude/skills/tester/SKILL.md +219 -0
- tapps_agents/resources/claude/skills/tester/__init__.py +1 -0
- tapps_agents/resources/cursor/.cursorignore +35 -0
- tapps_agents/resources/cursor/__init__.py +1 -0
- tapps_agents/resources/cursor/commands/__init__.py +1 -0
- tapps_agents/resources/cursor/commands/build-fix.md +11 -0
- tapps_agents/resources/cursor/commands/build.md +11 -0
- tapps_agents/resources/cursor/commands/e2e.md +11 -0
- tapps_agents/resources/cursor/commands/fix.md +11 -0
- tapps_agents/resources/cursor/commands/refactor-clean.md +11 -0
- tapps_agents/resources/cursor/commands/review.md +11 -0
- tapps_agents/resources/cursor/commands/security-review.md +11 -0
- tapps_agents/resources/cursor/commands/tdd.md +11 -0
- tapps_agents/resources/cursor/commands/test-coverage.md +11 -0
- tapps_agents/resources/cursor/commands/test.md +11 -0
- tapps_agents/resources/cursor/commands/update-codemaps.md +10 -0
- tapps_agents/resources/cursor/commands/update-docs.md +11 -0
- tapps_agents/resources/cursor/rules/__init__.py +1 -0
- tapps_agents/resources/cursor/rules/agent-capabilities.mdc +687 -0
- tapps_agents/resources/cursor/rules/coding-style.mdc +31 -0
- tapps_agents/resources/cursor/rules/command-reference.mdc +2081 -0
- tapps_agents/resources/cursor/rules/cursor-mode-usage.mdc +125 -0
- tapps_agents/resources/cursor/rules/git-workflow.mdc +29 -0
- tapps_agents/resources/cursor/rules/performance.mdc +29 -0
- tapps_agents/resources/cursor/rules/project-context.mdc +163 -0
- tapps_agents/resources/cursor/rules/project-profiling.mdc +197 -0
- tapps_agents/resources/cursor/rules/quick-reference.mdc +630 -0
- tapps_agents/resources/cursor/rules/security.mdc +32 -0
- tapps_agents/resources/cursor/rules/simple-mode.mdc +500 -0
- tapps_agents/resources/cursor/rules/testing.mdc +31 -0
- tapps_agents/resources/cursor/rules/when-to-use.mdc +156 -0
- tapps_agents/resources/cursor/rules/workflow-presets.mdc +179 -0
- tapps_agents/resources/customizations/__init__.py +1 -0
- tapps_agents/resources/customizations/example-custom.yaml +83 -0
- tapps_agents/resources/hooks/__init__.py +1 -0
- tapps_agents/resources/hooks/templates/README.md +5 -0
- tapps_agents/resources/hooks/templates/__init__.py +1 -0
- tapps_agents/resources/hooks/templates/add-project-context.yaml +8 -0
- tapps_agents/resources/hooks/templates/auto-format-js.yaml +10 -0
- tapps_agents/resources/hooks/templates/auto-format-python.yaml +10 -0
- tapps_agents/resources/hooks/templates/git-commit-check.yaml +7 -0
- tapps_agents/resources/hooks/templates/notify-on-complete.yaml +8 -0
- tapps_agents/resources/hooks/templates/quality-gate.yaml +8 -0
- tapps_agents/resources/hooks/templates/security-scan-on-edit.yaml +10 -0
- tapps_agents/resources/hooks/templates/session-end-log.yaml +7 -0
- tapps_agents/resources/hooks/templates/show-beads-ready.yaml +8 -0
- tapps_agents/resources/hooks/templates/test-on-edit.yaml +10 -0
- tapps_agents/resources/hooks/templates/update-docs-on-complete.yaml +8 -0
- tapps_agents/resources/hooks/templates/user-prompt-log.yaml +7 -0
- tapps_agents/resources/scripts/__init__.py +1 -0
- tapps_agents/resources/scripts/set_bd_path.ps1 +51 -0
- tapps_agents/resources/workflows/__init__.py +1 -0
- tapps_agents/resources/workflows/presets/__init__.py +1 -0
- tapps_agents/resources/workflows/presets/brownfield-analysis.yaml +235 -0
- tapps_agents/resources/workflows/presets/fix.yaml +78 -0
- tapps_agents/resources/workflows/presets/full-sdlc.yaml +122 -0
- tapps_agents/resources/workflows/presets/quality.yaml +82 -0
- tapps_agents/resources/workflows/presets/rapid-dev.yaml +84 -0
- tapps_agents/simple_mode/orchestrators/base.py +185 -185
- tapps_agents/simple_mode/orchestrators/build_orchestrator.py +2700 -2667
- tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +723 -723
- tapps_agents/workflow/cursor_executor.py +2337 -2337
- tapps_agents/workflow/message_formatter.py +188 -188
- {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/METADATA +6 -6
- {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/RECORD +141 -18
- {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/WHEEL +0 -0
- {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/entry_points.txt +0 -0
- {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/licenses/LICENSE +0 -0
- {tapps_agents-3.5.41.dist-info → tapps_agents-3.6.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Importance and when to use each TappsCodingAgents capability—workflows, agents, and commands. Use this to choose the right tool and understand what to prioritize.
|
|
3
|
+
alwaysApply: false
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# When to Use: Importance and Guidance
|
|
7
|
+
|
|
8
|
+
This rule helps projects using **TappsCodingAgents with Cursor** understand which capabilities matter most and **when to use each one**. Prioritize higher tiers for better outcomes: orchestrated workflows, quality gates, traceability, and structured tests.
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## Why This Matters
|
|
13
|
+
|
|
14
|
+
TappsCodingAgents adds the most value when you use **orchestrated workflows** (multi-step sequences with quality gates and loopbacks) instead of one-off edits. Higher-importance items deliver that. Use **Tier 1–2** by default; use **Tier 3–4** when you need a specific capability; use **Tier 5–6** for niche or meta tasks.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Quick Lookup: "I want to…" → Use this
|
|
19
|
+
|
|
20
|
+
| I want to… | Use this | Importance |
|
|
21
|
+
|------------|----------|------------|
|
|
22
|
+
| **Build a new feature** | `@simple-mode *build "description"` | Tier 1 |
|
|
23
|
+
| **Fix a bug or error** | `@simple-mode *fix <file> "description"` | Tier 1 |
|
|
24
|
+
| **Run full SDLC** (framework work or enterprise) | `@simple-mode *full "description"` | Tier 1 |
|
|
25
|
+
| **Review code quality** | `@simple-mode *review <file>` or `@reviewer *review <file>` | Tier 1–2 |
|
|
26
|
+
| **Get a quick quality score** | `@reviewer *score <file>` | Tier 1 |
|
|
27
|
+
| **Set up the project** (first time) | `tapps-agents init` | Tier 1 |
|
|
28
|
+
| **Add or improve tests** | `@simple-mode *test <file>` or `@tester *test <file>` | Tier 2 |
|
|
29
|
+
| **Refactor code** | `@simple-mode *refactor <file>` | Tier 3 |
|
|
30
|
+
| **Debug an error** | `@debugger *debug "error" --file <file>` | Tier 2 |
|
|
31
|
+
| **Improve a prompt before building** | `@enhancer *enhance "prompt"` or `@simple-mode *enhance "prompt"` | Tier 2 |
|
|
32
|
+
| **Plan or break down work** | `@planner *plan "description"` or `@simple-mode *breakdown "description"` | Tier 2 |
|
|
33
|
+
| **Run workflows in CI/terminal** | `tapps-agents workflow rapid|full|fix|quality|hotfix` | Tier 2 |
|
|
34
|
+
| **Check environment** | `tapps-agents doctor` | Tier 3 |
|
|
35
|
+
| **Security audit** | `@ops *audit-security` or `@simple-mode *security-review` | Tier 3 |
|
|
36
|
+
| **Execute an Epic** | `@simple-mode *epic <epic-doc.md>` | Tier 3 |
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
40
|
+
## Tier 1: Highest importance — use these first
|
|
41
|
+
|
|
42
|
+
These give the biggest improvement over ad-hoc work: orchestration, quality gates, traceability, and tests.
|
|
43
|
+
|
|
44
|
+
| Capability | When to use |
|
|
45
|
+
|------------|-------------|
|
|
46
|
+
| **`tapps-agents init`** | First-time setup or after adding TappsCodingAgents. Run once per project to install Rules, Skills, and config. Without it, Cursor integration does not work. |
|
|
47
|
+
| **`@simple-mode *build "description"`** | **New features, user stories, or greenfield work.** Use for any "add/implement/create" request. Runs: enhance → plan → architect → designer → implement → review → test, with quality gates and loopbacks. Prefer over going straight to code. |
|
|
48
|
+
| **`@simple-mode *fix <file> "description"`** | **Bugs, runtime errors, or "fix this" requests.** Runs: debug → implement → test. Use when the problem is already identified or you have an error message. |
|
|
49
|
+
| **`@simple-mode *full "description"`** | **Framework changes (e.g. `tapps_agents/`), enterprise/critical features, or when you need full traceability.** 9-step SDLC: requirements → plan → architect → designer → implement → review → test → security → docs. Required when modifying TappsCodingAgents itself. |
|
|
50
|
+
| **`@reviewer *review <file>`** | **Pre-commit, PRs, or "how good is this code?"** Full review with 7-category scoring and actionable feedback. Use when you want detailed, structured feedback. |
|
|
51
|
+
| **`@reviewer *score <file>`** | **Quick, objective quality check; CI gates; or "just the numbers."** Fast, no LLM. Use when you need a fast pass or a numeric threshold. |
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
## Tier 2: Strong support — use as part of workflows or for focused tasks
|
|
56
|
+
|
|
57
|
+
These power the Tier 1 workflows or are the main way to do a specific job well.
|
|
58
|
+
|
|
59
|
+
| Capability | When to use |
|
|
60
|
+
|------------|-------------|
|
|
61
|
+
| **`@simple-mode *review <file>`** | When you want **review plus improvement suggestions** in one go. Uses @reviewer then @improver if issues are found. |
|
|
62
|
+
| **`@simple-mode *test <file>`** | **After implementing or when asked to "add tests."** Structured test generation. Prefer over ad-hoc test writing when you want coverage and consistency. |
|
|
63
|
+
| **`@tester *test <file>`** / **`generate-tests`** | When you need **only tests** (no full *build/*fix). Use in workflows or when tests are the single goal. |
|
|
64
|
+
| **`@implementer *implement "spec" <file>`** / **`*refactor <file> "instructions"`** | When you need **code generation or refactoring alone** (e.g. inside a custom flow, or after you already have a spec). Usually better to use *build or *fix so review and tests are included. |
|
|
65
|
+
| **`@enhancer *enhance "prompt"`** | When a prompt is **vague or high-level** and you want a richer spec before planning or implementation. Often run as step 1 of *build; use standalone when iterating on a prompt. Also runs in *full (full-sdlc optional), rapid-dev, and *epic via EnhancerHandler. CLI: `auto_enhancement` (CONFIGURATION.md). |
|
|
66
|
+
| **`@debugger *debug "error" --file <file>`** | When you have **an error message or stack trace** and need root-cause analysis. Feeds into *fix; use standalone when you only need diagnosis. |
|
|
67
|
+
| **`@planner *plan "description"`** | When you need **user stories, acceptance criteria, or a plan** without running the full build. Use in *build/*full or when planning is the only goal. |
|
|
68
|
+
| **`@architect *design "description"`** | When you need **system or high-level design** before coding. Use in *build/*full or for design-only work. |
|
|
69
|
+
| **`tapps-agents workflow rapid`** | **CI/terminal: fast feature development** with quality checks. Use when automating in scripts or CI instead of Cursor chat. |
|
|
70
|
+
| **`tapps-agents workflow full`** | **CI/terminal: full SDLC** with requirements, security, and docs. Use for automation of framework or enterprise work. |
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## Tier 3: Important but more situational
|
|
75
|
+
|
|
76
|
+
Use when the task clearly matches, or when a Tier 1–2 workflow doesn’t fit.
|
|
77
|
+
|
|
78
|
+
| Capability | When to use |
|
|
79
|
+
|------------|-------------|
|
|
80
|
+
| **`@designer *design-api`** / **`*design-model`** | When you need **API or data-model design** before or outside of *build. Usually invoked inside *build/*full. |
|
|
81
|
+
| **`@improver *improve <file> "instructions"`** | When you have **review feedback or a clear improvement goal** and want suggested edits. Used inside *review; use standalone for targeted improvements. |
|
|
82
|
+
| **`@ops *audit-security`**, **`*check-compliance`**, **`*audit-dependencies`** | **Security, compliance (e.g. GDPR, HIPAA), or dependency audits.** Use in *full, before release, or when compliance is required. |
|
|
83
|
+
| **`@documenter *document <file>`** / **`*document-api <file>`** | When **documentation** is the main deliverable. *full includes docs; use standalone when you only need to document. |
|
|
84
|
+
| **`@simple-mode *refactor <file>`** | When the goal is **refactoring** with review and tests. Prefer over one-off refactors for larger changes. |
|
|
85
|
+
| **`@simple-mode *epic <epic-doc.md>`** | When you are **implementing an Epic**: runs all stories in dependency order with quality gates. Use for large, multi-story work. |
|
|
86
|
+
| **`@reviewer *lint`**, **`*type-check`** | **Fast style and type checks** for CI or local hygiene. Use for pre-commit or CI quality gates. |
|
|
87
|
+
| **`@reviewer *security-scan`** | When you need **focused security scanning** without a full ops audit. |
|
|
88
|
+
| **`tapps-agents doctor`** | **Environment and integration checks.** Use after setup, when something breaks, or in CI to validate tooling. |
|
|
89
|
+
| **`tapps-agents cursor verify`** | **Check that Cursor Rules and Skills** are installed and valid. Use after init or when @-commands don’t work. |
|
|
90
|
+
| **`tapps-agents workflow fix`**, **`quality`** | **CLI: bug fixes, maintenance, quality sprints, or hotfixes** when not using Cursor chat. (`hotfix` is an alias for `fix`.) |
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## Tier 4: Useful in specific cases
|
|
95
|
+
|
|
96
|
+
| Capability | When to use |
|
|
97
|
+
|------------|-------------|
|
|
98
|
+
| **`@simple-mode *test-coverage`** | When you want **coverage-driven test generation** for uncovered paths. |
|
|
99
|
+
| **`@simple-mode *fix-tests`** | When **tests are failing** and you want automated fixes for common patterns (e.g. async, mocks, imports). |
|
|
100
|
+
| **`@simple-mode *enhance`**, **`*breakdown`**, **`*todo`** | **Prompt enhancement, task breakdown, or Beads-backed todo** (e.g. `*todo ready`). Use when those are the explicit goals. |
|
|
101
|
+
| **`@reviewer *docs <library>`** | When you need **library documentation** (Context7). Use for "how do I use X?" or API lookup. |
|
|
102
|
+
| **`@reviewer *report`**, **`*duplication`** | **Project-wide quality or duplication reports.** Use for audits or technical-debt analysis. |
|
|
103
|
+
| **`@analyst *gather-requirements`**, **`*estimate-effort`**, **`*assess-risk`** | **Requirements, estimation, or risk** when you’re not running *full. |
|
|
104
|
+
| **`@architect *detect-patterns`** | When you need to **understand existing architecture** (e.g. Layered, MVC, Microservices) from the project layout. |
|
|
105
|
+
| **`@ops *plan-deployment`**, **`*audit-bundle`** | **Deployment planning** or **frontend bundle analysis** (Node/React/Vue). |
|
|
106
|
+
| **`continuous-bug-fix`** | **Automated test → fix loop** with quality gates. Use in CI or when batch-fixing test failures. |
|
|
107
|
+
| **`@bug-fix-agent *fix-bug`** | **Automated fix with tests, review, and optional commit.** Use when you want full automation; be aware it can commit to main. |
|
|
108
|
+
| **`tapps-agents create "description"`** | **Greenfield: create a full application** from a description. Shortcut for full SDLC on a new project. |
|
|
109
|
+
| **`tapps-agents simple-mode`** (on, off, status, init, configure, full) | **Configure or run Simple Mode** from the CLI (e.g. `simple-mode full --prompt "..." --auto`). |
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## Tier 5: Meta, low-frequency, or workflow control
|
|
114
|
+
|
|
115
|
+
| Capability | When to use |
|
|
116
|
+
|------------|-------------|
|
|
117
|
+
| **`@evaluator *evaluate`** | **Evaluate TappsCodingAgents usage and effectiveness** (e.g. adherence, quality over time). Use for process improvement. |
|
|
118
|
+
| **`@orchestrator *orchestrate`**, **`*sequence`** | **Custom YAML workflows or ad-hoc agent sequences** when presets and Simple Mode don’t fit. |
|
|
119
|
+
| **`workflow state`** (list, show, cleanup), **resume**, **continue-from**, **skip-steps** | **Inspect, resume, or trim workflows** (e.g. after a failure or when re-running from a step). |
|
|
120
|
+
| **`workflow recommend`**, **`dry-run`** | **Get a workflow suggestion** or **validate without running** (e.g. before CI). |
|
|
121
|
+
| **`cleanup workflow-docs`** | **Remove or archive old workflow artifacts** to reduce clutter. |
|
|
122
|
+
| **`score`** (top-level) | **Shortcut for `reviewer score`** when you prefer the shorter form. |
|
|
123
|
+
| **`beads`** | **Beads (bd) passthrough** when using bd for task tracking. |
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Tier 6: Niche or convenience
|
|
128
|
+
|
|
129
|
+
| Capability | When to use |
|
|
130
|
+
|------------|-------------|
|
|
131
|
+
| **`@simple-mode *microservice`**, **`*docker-fix`**, **`*integrate-service`** | **Microservice scaffolding, Docker debugging, or service-to-service integration** when those are the explicit goals. |
|
|
132
|
+
| **`@simple-mode *explore`**, **`*plan-analysis`**, **`*pr`** | **Codebase exploration, safe planning (read-only), or PR creation** when you need only that. |
|
|
133
|
+
| **`@planner *create-story`**, **`*list-stories`** | **Story management** when you’re not using *build/*full. |
|
|
134
|
+
| **`workflow brownfield-analysis`** | **CLI: brownfield/legacy analysis** when not in Cursor. (simple-new-feature→rapid-dev, simple-improve-quality→quality, simple-fix-issues→fix.) |
|
|
135
|
+
|
|
136
|
+
---
|
|
137
|
+
|
|
138
|
+
## Cursor vs CLI: where to run things
|
|
139
|
+
|
|
140
|
+
| Context | Prefer | Example |
|
|
141
|
+
|---------|--------|---------|
|
|
142
|
+
| **Interactive work in Cursor** | **@simple-mode** and **@agent** in chat | `@simple-mode *build "Add auth"` |
|
|
143
|
+
| **CI, scripts, or no Cursor** | **CLI** `tapps-agents` | `tapps-agents workflow rapid --prompt "Add auth" --auto` |
|
|
144
|
+
| **Quick, single-step checks** | **@agent** or CLI | `@reviewer *score src/` or `tapps-agents reviewer score src/` |
|
|
145
|
+
|
|
146
|
+
In Cursor, **avoid** `tapps-agents workflow ...` for interactive development; use `@simple-mode` instead. See `cursor-mode-usage.mdc` for details.
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## See also
|
|
151
|
+
|
|
152
|
+
- **`quick-reference.mdc`** — Quick command table and where to run (Cursor vs terminal).
|
|
153
|
+
- **`simple-mode.mdc`** — Workflow interceptor, step-by-step workflows, and Simple Mode commands.
|
|
154
|
+
- **`command-reference.mdc`** — Full command and parameter reference.
|
|
155
|
+
- **`agent-capabilities.mdc`** — What each agent does and when to use it.
|
|
156
|
+
- **`cursor-mode-usage.mdc`** — When to use Cursor Skills vs CLI.
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Documentation of TappsCodingAgents workflow presets and how to use them in Cursor AI
|
|
3
|
+
alwaysApply: false
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Workflow Presets - Quick Commands
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
TappsCodingAgents provides 5 preset workflows that can be executed with simple one-word commands. These workflows automatically orchestrate multiple agents to complete common SDLC tasks. Presets that include an enhance step (full-sdlc optional, rapid-dev, Epic) run it via EnhancerHandler. CLI auto-enhancement: `auto_enhancement` in docs/CONFIGURATION.md.
|
|
11
|
+
|
|
12
|
+
## Available Workflow Presets
|
|
13
|
+
|
|
14
|
+
### 1. Full SDLC Pipeline (`full` / `enterprise`)
|
|
15
|
+
|
|
16
|
+
**Command:** `python -m tapps_agents.cli workflow full`
|
|
17
|
+
|
|
18
|
+
**Best for:** Enterprise projects, new applications, compliance-heavy systems
|
|
19
|
+
|
|
20
|
+
**Agent Sequence:**
|
|
21
|
+
0. Enhancer - Enhance Prompt (optional, before requirements)
|
|
22
|
+
1. Analyst - Requirements gathering
|
|
23
|
+
2. Planner - Story creation
|
|
24
|
+
3. Architect - System design
|
|
25
|
+
4. Designer - API contracts
|
|
26
|
+
5. Implementer - Code generation
|
|
27
|
+
6. Reviewer - Code review with quality gates
|
|
28
|
+
7. Tester - Test generation
|
|
29
|
+
8. Ops - Security scan
|
|
30
|
+
9. Documenter - Documentation
|
|
31
|
+
|
|
32
|
+
**Quality Gates:**
|
|
33
|
+
- Overall score: ≥70
|
|
34
|
+
- Security: ≥7.0
|
|
35
|
+
- Maintainability: ≥7.0
|
|
36
|
+
|
|
37
|
+
### 2. Rapid Development (`rapid` / `feature`)
|
|
38
|
+
|
|
39
|
+
**Command:** `python -m tapps_agents.cli workflow rapid`
|
|
40
|
+
|
|
41
|
+
**Best for:** Feature development, sprint work, iterative development
|
|
42
|
+
|
|
43
|
+
**Agent Sequence:**
|
|
44
|
+
1. Enhancer - Prompt enhancement
|
|
45
|
+
2. Planner - Story breakdown
|
|
46
|
+
3. Implementer - Code generation
|
|
47
|
+
4. Reviewer - Quick review
|
|
48
|
+
5. Tester - Test generation
|
|
49
|
+
|
|
50
|
+
**Quality Gates:**
|
|
51
|
+
- Overall score: ≥65
|
|
52
|
+
- Security: ≥6.5
|
|
53
|
+
|
|
54
|
+
### 3. Fix (`fix` / `maintenance` / `hotfix` / `urgent` / `refactor` / `quick-fix`)
|
|
55
|
+
|
|
56
|
+
**Command:** `python -m tapps_agents.cli workflow fix`
|
|
57
|
+
|
|
58
|
+
**Best for:** Bug fixes, hotfixes, maintenance, refactoring. Replaces legacy maintenance, quick-fix, simple-fix-issues.
|
|
59
|
+
|
|
60
|
+
**Agent Sequence:**
|
|
61
|
+
1. Enhancer - Enhance Prompt (optional)
|
|
62
|
+
2. Debugger - Error analysis
|
|
63
|
+
3. Implementer - Fix implementation
|
|
64
|
+
4. Reviewer - Code review with quality gate
|
|
65
|
+
5. Tester - Test generation
|
|
66
|
+
6. Orchestrator - Finalize
|
|
67
|
+
|
|
68
|
+
**Quality Gates:**
|
|
69
|
+
- Overall score: ≥65
|
|
70
|
+
- Security: ≥6.5
|
|
71
|
+
|
|
72
|
+
### 4. Quality Improvement (`quality` / `improve`)
|
|
73
|
+
|
|
74
|
+
**Command:** `python -m tapps_agents.cli workflow quality`
|
|
75
|
+
|
|
76
|
+
**Best for:** Code quality initiatives, refactoring sprints, quality gates
|
|
77
|
+
|
|
78
|
+
**Agent Sequence:**
|
|
79
|
+
1. Reviewer - Initial analysis
|
|
80
|
+
2. Improver - Refactoring
|
|
81
|
+
3. Reviewer - Re-review validation
|
|
82
|
+
4. Tester - Test verification
|
|
83
|
+
5. Ops - Security audit
|
|
84
|
+
|
|
85
|
+
**Quality Gates:**
|
|
86
|
+
- Overall score: ≥75
|
|
87
|
+
- Maintainability: ≥8.0
|
|
88
|
+
- Security: ≥7.5
|
|
89
|
+
|
|
90
|
+
### 5. Brownfield Analysis (`brownfield`)
|
|
91
|
+
|
|
92
|
+
**Command:** `python -m tapps_agents.cli workflow brownfield`
|
|
93
|
+
|
|
94
|
+
**Best for:** Analyzing existing codebases, legacy systems, understanding before changes
|
|
95
|
+
|
|
96
|
+
**Agent Sequence:** Analyst (discovery, architecture, structure, tests/docs, technical debt, modernization, report), Reviewer (quality), Ops (dependencies). See `brownfield-analysis.yaml`.
|
|
97
|
+
|
|
98
|
+
## Workflow Execution Flags
|
|
99
|
+
|
|
100
|
+
All workflow commands support these flags for better control:
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
# Pre-flight validation (check before running)
|
|
104
|
+
tapps-agents workflow rapid --dry-run --prompt "Add feature"
|
|
105
|
+
|
|
106
|
+
# Explicit mode control
|
|
107
|
+
tapps-agents workflow rapid --cli-mode --prompt "Add feature" # Force CLI/headless
|
|
108
|
+
tapps-agents workflow rapid --cursor-mode --prompt "Add feature" # Force Cursor Skills
|
|
109
|
+
|
|
110
|
+
# Resume/partial execution
|
|
111
|
+
tapps-agents workflow rapid --continue-from implementation --prompt "Add feature"
|
|
112
|
+
tapps-agents workflow rapid --skip-steps "enhance,plan" --prompt "Add feature"
|
|
113
|
+
|
|
114
|
+
# Output control
|
|
115
|
+
tapps-agents workflow rapid --print-paths --prompt "Add feature" # Show artifact paths (default)
|
|
116
|
+
tapps-agents workflow rapid --no-print-paths --prompt "Add feature"
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
**Flag Reference:**
|
|
120
|
+
- `--dry-run`: Validate workflow without executing (pre-flight check)
|
|
121
|
+
- `--cli-mode`: Force CLI/headless mode (direct LLM calls)
|
|
122
|
+
- `--cursor-mode`: Force Cursor mode (uses Cursor Skills)
|
|
123
|
+
- `--continue-from <step>`: Resume from a specific step
|
|
124
|
+
- `--skip-steps <steps>`: Skip comma-separated list of steps
|
|
125
|
+
- `--print-paths`: Print artifact file paths after each step (default: on)
|
|
126
|
+
- `--no-print-paths`: Disable artifact path printing
|
|
127
|
+
|
|
128
|
+
## Usage in Cursor AI
|
|
129
|
+
|
|
130
|
+
When working in Cursor AI, you can:
|
|
131
|
+
|
|
132
|
+
1. **Run workflows directly:**
|
|
133
|
+
- Type: "Run rapid development workflow"
|
|
134
|
+
- Or: "Execute full SDLC pipeline"
|
|
135
|
+
- Or: "Start quality improvement"
|
|
136
|
+
|
|
137
|
+
2. **Use voice commands:**
|
|
138
|
+
- "run rapid dev"
|
|
139
|
+
- "execute enterprise workflow"
|
|
140
|
+
- "start quick fix"
|
|
141
|
+
|
|
142
|
+
3. **Reference in conversations:**
|
|
143
|
+
- "Use the rapid workflow for this feature"
|
|
144
|
+
- "This needs the full enterprise workflow"
|
|
145
|
+
- "Run the quality improvement cycle"
|
|
146
|
+
|
|
147
|
+
## When to Use Each Workflow
|
|
148
|
+
|
|
149
|
+
- **New Enterprise Project** → `workflow enterprise`
|
|
150
|
+
- **New Feature** → `workflow rapid` or `workflow feature`
|
|
151
|
+
- **Bug Fix** → `workflow hotfix` or `workflow urgent`
|
|
152
|
+
- **Refactoring** → `workflow fix` or `workflow refactor`
|
|
153
|
+
- **Quality Sprint** → `workflow quality` or `workflow improve`
|
|
154
|
+
|
|
155
|
+
## Integration
|
|
156
|
+
|
|
157
|
+
These workflows integrate with:
|
|
158
|
+
- ✅ Expert consultation (domain experts)
|
|
159
|
+
- ✅ Quality gates (scoring thresholds)
|
|
160
|
+
- ✅ Context tiers (token optimization)
|
|
161
|
+
- ✅ Multi-agent orchestration
|
|
162
|
+
- ✅ Git worktree isolation
|
|
163
|
+
|
|
164
|
+
## List All Presets
|
|
165
|
+
|
|
166
|
+
```bash
|
|
167
|
+
python -m tapps_agents.cli workflow list
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
## Customization
|
|
171
|
+
|
|
172
|
+
Workflow presets are defined in `workflows/presets/`:
|
|
173
|
+
- `full-sdlc.yaml`
|
|
174
|
+
- `rapid-dev.yaml`
|
|
175
|
+
- `fix.yaml`
|
|
176
|
+
- `quality.yaml`
|
|
177
|
+
- `brownfield-analysis.yaml`
|
|
178
|
+
|
|
179
|
+
You can modify these files or create your own presets.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Customization resources."""
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
# Agent Customization File Template
|
|
2
|
+
# File: .tapps-agents/customizations/{agent-id}-custom.yaml
|
|
3
|
+
#
|
|
4
|
+
# This file allows you to customize agent behaviors without modifying
|
|
5
|
+
# the base agent definitions. Customizations persist through framework updates.
|
|
6
|
+
|
|
7
|
+
agent_id: example # Must match filename (e.g., "example-custom.yaml" -> "example")
|
|
8
|
+
|
|
9
|
+
# Override agent persona
|
|
10
|
+
persona_overrides:
|
|
11
|
+
# Add additional core principles (appended to base principles)
|
|
12
|
+
additional_principles:
|
|
13
|
+
- "Always use type hints in Python"
|
|
14
|
+
- "Follow PEP 8 strictly"
|
|
15
|
+
- "Use async/await for I/O operations"
|
|
16
|
+
|
|
17
|
+
# Modify communication style (overrides base values)
|
|
18
|
+
communication_style:
|
|
19
|
+
tone: "technical" # Options: "professional" | "casual" | "friendly" | "technical"
|
|
20
|
+
formality: "balanced" # Options: "formal" | "informal"
|
|
21
|
+
verbosity: "detailed" # Options: "concise" | "detailed" | "balanced"
|
|
22
|
+
|
|
23
|
+
# Custom expertise areas
|
|
24
|
+
expertise_areas:
|
|
25
|
+
# Add new expertise areas (appended to base)
|
|
26
|
+
add:
|
|
27
|
+
- "Python"
|
|
28
|
+
- "FastAPI"
|
|
29
|
+
- "Async programming"
|
|
30
|
+
# Emphasize existing areas (prioritized in responses)
|
|
31
|
+
emphasize:
|
|
32
|
+
- "Backend development"
|
|
33
|
+
- "API design"
|
|
34
|
+
|
|
35
|
+
# Custom instructions (appended to base instructions)
|
|
36
|
+
custom_instructions: |
|
|
37
|
+
This project uses Python 3.11+ with FastAPI.
|
|
38
|
+
Always use async/await for database operations.
|
|
39
|
+
Follow the project's performance patterns document.
|
|
40
|
+
|
|
41
|
+
# Override commands
|
|
42
|
+
command_overrides:
|
|
43
|
+
# Add custom commands
|
|
44
|
+
add:
|
|
45
|
+
- name: "custom-command"
|
|
46
|
+
description: "Description of custom command"
|
|
47
|
+
handler: "task-name" # References a task file in .tapps-agents/tasks/
|
|
48
|
+
|
|
49
|
+
# Modify existing commands
|
|
50
|
+
modify:
|
|
51
|
+
- name: "help"
|
|
52
|
+
description: "Custom help description"
|
|
53
|
+
|
|
54
|
+
# Override dependencies
|
|
55
|
+
dependency_overrides:
|
|
56
|
+
# Add custom tasks
|
|
57
|
+
tasks:
|
|
58
|
+
add:
|
|
59
|
+
- "custom-task.md"
|
|
60
|
+
|
|
61
|
+
# Add custom templates
|
|
62
|
+
templates:
|
|
63
|
+
add:
|
|
64
|
+
- "custom-template.yaml"
|
|
65
|
+
|
|
66
|
+
# Add custom data files
|
|
67
|
+
data:
|
|
68
|
+
add:
|
|
69
|
+
- "custom-data.md"
|
|
70
|
+
|
|
71
|
+
# Project-specific context
|
|
72
|
+
project_context:
|
|
73
|
+
# Always load these files for this agent
|
|
74
|
+
always_load:
|
|
75
|
+
- "docs/architecture/performance-patterns.md"
|
|
76
|
+
- "docs/team-guidelines.md"
|
|
77
|
+
|
|
78
|
+
# Project-specific preferences
|
|
79
|
+
preferences:
|
|
80
|
+
coding_style: "Pythonic with type hints"
|
|
81
|
+
architecture_patterns: ["Microservices", "Event-driven"]
|
|
82
|
+
technology_preferences: ["FastAPI", "SQLAlchemy", "Pydantic"]
|
|
83
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Hook resources."""
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# Hook templates
|
|
2
|
+
|
|
3
|
+
These YAML files are used by `tapps-agents init --hooks` to generate `.tapps-agents/hooks.yaml`. Each file defines one or more hooks for a single event; all are installed with `enabled: false`. Enable and customize in your project's `.tapps-agents/hooks.yaml`.
|
|
4
|
+
|
|
5
|
+
Events: UserPromptSubmit, PostToolUse, SessionStart, SessionEnd, WorkflowComplete.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Hook template definitions."""
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Inject project context on UserPromptSubmit (e.g. cat .tapps-agents/context/*).
|
|
2
|
+
# Add files under .tapps-agents/context/ to provide extra context to the prompt.
|
|
3
|
+
hooks:
|
|
4
|
+
UserPromptSubmit:
|
|
5
|
+
- name: add-project-context
|
|
6
|
+
command: "test -d .tapps-agents/context && cat .tapps-agents/context/*.md 2>/dev/null || true"
|
|
7
|
+
enabled: true
|
|
8
|
+
fail_on_error: false
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Auto-format JS/TS files after Write/Edit (prettier).
|
|
2
|
+
# Enable and ensure prettier is available: npm install -D prettier
|
|
3
|
+
hooks:
|
|
4
|
+
PostToolUse:
|
|
5
|
+
- name: auto-format-js
|
|
6
|
+
command: "npx prettier --write {{TAPPS_FILE_PATH}}"
|
|
7
|
+
enabled: true
|
|
8
|
+
matcher: "Write|Edit"
|
|
9
|
+
file_patterns: ["*.js", "*.ts", "*.jsx", "*.tsx", "*.json"]
|
|
10
|
+
fail_on_error: false
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Auto-format Python files after Write/Edit (ruff).
|
|
2
|
+
# Enable and ensure ruff is installed: pip install ruff
|
|
3
|
+
hooks:
|
|
4
|
+
PostToolUse:
|
|
5
|
+
- name: auto-format-python
|
|
6
|
+
command: "ruff format {{TAPPS_FILE_PATH}}"
|
|
7
|
+
enabled: true
|
|
8
|
+
matcher: "Write|Edit"
|
|
9
|
+
file_patterns: ["*.py"]
|
|
10
|
+
fail_on_error: false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Notify when workflow completes (e.g. desktop notification or webhook).
|
|
2
|
+
# Customize command for your notification channel.
|
|
3
|
+
hooks:
|
|
4
|
+
WorkflowComplete:
|
|
5
|
+
- name: notify-on-complete
|
|
6
|
+
command: "echo 'Workflow {{TAPPS_WORKFLOW_TYPE}} completed with status {{TAPPS_WORKFLOW_STATUS}}'"
|
|
7
|
+
enabled: true
|
|
8
|
+
fail_on_error: false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Run quality checks when workflow completes (lint + tests).
|
|
2
|
+
# Customize command for your project (e.g. pytest, npm test).
|
|
3
|
+
hooks:
|
|
4
|
+
WorkflowComplete:
|
|
5
|
+
- name: quality-gate
|
|
6
|
+
command: "echo 'Quality gate: run pytest and ruff' && (ruff check . 2>/dev/null || true) && (pytest -q 2>/dev/null || true)"
|
|
7
|
+
enabled: true
|
|
8
|
+
fail_on_error: false
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Run security scan on edited files (e.g. bandit for Python).
|
|
2
|
+
# Enable and ensure bandit is installed: pip install bandit
|
|
3
|
+
hooks:
|
|
4
|
+
PostToolUse:
|
|
5
|
+
- name: security-scan-on-edit
|
|
6
|
+
command: "python -m bandit -q {{TAPPS_FILE_PATH}} 2>/dev/null || true"
|
|
7
|
+
enabled: true
|
|
8
|
+
matcher: "Write|Edit"
|
|
9
|
+
file_patterns: ["*.py"]
|
|
10
|
+
fail_on_error: false
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Run tests for affected file after Edit/Write (e.g. pytest for Python).
|
|
2
|
+
# Customize command for your test runner.
|
|
3
|
+
hooks:
|
|
4
|
+
PostToolUse:
|
|
5
|
+
- name: test-on-edit
|
|
6
|
+
command: "pytest {{TAPPS_FILE_PATH}} -q 2>/dev/null || true"
|
|
7
|
+
enabled: true
|
|
8
|
+
matcher: "Write|Edit"
|
|
9
|
+
file_patterns: ["*.py"]
|
|
10
|
+
fail_on_error: false
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Update docs when workflow completes (e.g. sync API docs).
|
|
2
|
+
# Customize command for your project.
|
|
3
|
+
hooks:
|
|
4
|
+
WorkflowComplete:
|
|
5
|
+
- name: update-docs-on-complete
|
|
6
|
+
command: "echo 'Update docs: customize for your project (e.g. sphinx-build, mkdocs)'"
|
|
7
|
+
enabled: true
|
|
8
|
+
fail_on_error: false
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Resource scripts."""
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
#Requires -Version 5.1
|
|
2
|
+
<#
|
|
3
|
+
.SYNOPSIS
|
|
4
|
+
Add tools\bd to PATH so the 'bd' command works in this project.
|
|
5
|
+
|
|
6
|
+
.DESCRIPTION
|
|
7
|
+
Prepends this project's tools\bd to PATH for the current session.
|
|
8
|
+
Run before using bd in a terminal, or dot-source: . .\scripts\set_bd_path.ps1
|
|
9
|
+
|
|
10
|
+
.PARAMETER Persist
|
|
11
|
+
If set, adds tools\bd to the User PATH permanently (current session only by default).
|
|
12
|
+
|
|
13
|
+
.EXAMPLE
|
|
14
|
+
. .\scripts\set_bd_path.ps1
|
|
15
|
+
|
|
16
|
+
.EXAMPLE
|
|
17
|
+
.\scripts\set_bd_path.ps1 -Persist
|
|
18
|
+
#>
|
|
19
|
+
param(
|
|
20
|
+
[switch]$Persist
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
$ErrorActionPreference = 'Stop'
|
|
24
|
+
$projectRoot = Split-Path $PSScriptRoot -Parent
|
|
25
|
+
$bdDir = Join-Path $projectRoot "tools\bd"
|
|
26
|
+
|
|
27
|
+
$bdExe = Join-Path $bdDir "bd.exe"
|
|
28
|
+
$bdUnix = Join-Path $bdDir "bd"
|
|
29
|
+
if (-not ((Test-Path $bdExe) -or (Test-Path $bdUnix))) {
|
|
30
|
+
Write-Error "Beads not found at $bdDir. Ensure tools/bd contains bd.exe (Windows) or bd (Unix). See docs/BEADS_INTEGRATION.md."
|
|
31
|
+
exit 1
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
if ($Persist) {
|
|
35
|
+
$userPath = [System.Environment]::GetEnvironmentVariable('Path', 'User')
|
|
36
|
+
if ($userPath -notlike "*$bdDir*") {
|
|
37
|
+
[System.Environment]::SetEnvironmentVariable('Path', "$bdDir;$userPath", 'User')
|
|
38
|
+
$env:Path = "$bdDir;$env:Path"
|
|
39
|
+
Write-Host "[OK] Added $bdDir to User PATH. New processes will have 'bd'." -ForegroundColor Green
|
|
40
|
+
} else {
|
|
41
|
+
$env:Path = "$bdDir;$env:Path"
|
|
42
|
+
Write-Host "[OK] $bdDir already in User PATH. Refreshed for this session." -ForegroundColor Green
|
|
43
|
+
}
|
|
44
|
+
} else {
|
|
45
|
+
$env:Path = "$bdDir;$env:Path"
|
|
46
|
+
Write-Host "[OK] Added $bdDir to PATH for this session. Run 'bd' to use Beads." -ForegroundColor Green
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
Write-Host " bd ready - unblocked tasks"
|
|
50
|
+
Write-Host " bd create ""Title"" -p 0"
|
|
51
|
+
Write-Host " bd quickstart - intro"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Workflow resources."""
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Workflow preset configurations."""
|