tapps-agents 3.5.39__py3-none-any.whl → 3.5.40__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/enhancer/agent.py +2728 -2728
- tapps_agents/agents/implementer/agent.py +35 -13
- tapps_agents/agents/reviewer/agent.py +43 -10
- tapps_agents/agents/reviewer/scoring.py +59 -68
- tapps_agents/agents/reviewer/tools/__init__.py +24 -0
- tapps_agents/agents/reviewer/tools/ruff_grouping.py +250 -0
- tapps_agents/agents/reviewer/tools/scoped_mypy.py +284 -0
- tapps_agents/beads/__init__.py +11 -0
- tapps_agents/beads/hydration.py +213 -0
- tapps_agents/beads/specs.py +206 -0
- tapps_agents/cli/commands/health.py +19 -3
- tapps_agents/cli/commands/simple_mode.py +842 -676
- tapps_agents/cli/commands/task.py +219 -0
- tapps_agents/cli/commands/top_level.py +13 -0
- tapps_agents/cli/main.py +658 -651
- tapps_agents/cli/parsers/top_level.py +1978 -1881
- tapps_agents/core/config.py +1622 -1622
- tapps_agents/core/init_project.py +3012 -2897
- tapps_agents/epic/markdown_sync.py +105 -0
- tapps_agents/epic/orchestrator.py +1 -2
- tapps_agents/epic/parser.py +427 -423
- tapps_agents/experts/adaptive_domain_detector.py +0 -2
- tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md +15 -15
- tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md +19 -44
- tapps_agents/health/checks/outcomes.backup_20260204_064058.py +324 -0
- tapps_agents/health/checks/outcomes.backup_20260204_064256.py +324 -0
- tapps_agents/health/checks/outcomes.backup_20260204_064600.py +324 -0
- tapps_agents/health/checks/outcomes.py +134 -46
- tapps_agents/health/orchestrator.py +12 -4
- tapps_agents/hooks/__init__.py +33 -0
- tapps_agents/hooks/config.py +140 -0
- tapps_agents/hooks/events.py +135 -0
- tapps_agents/hooks/executor.py +128 -0
- tapps_agents/hooks/manager.py +143 -0
- tapps_agents/session/__init__.py +19 -0
- tapps_agents/session/manager.py +256 -0
- tapps_agents/simple_mode/code_snippet_handler.py +382 -0
- tapps_agents/simple_mode/intent_parser.py +29 -4
- tapps_agents/simple_mode/orchestrators/base.py +185 -59
- tapps_agents/simple_mode/orchestrators/build_orchestrator.py +2667 -2642
- tapps_agents/simple_mode/orchestrators/fix_orchestrator.py +2 -2
- tapps_agents/simple_mode/workflow_suggester.py +37 -3
- tapps_agents/workflow/agent_handlers/implementer_handler.py +18 -3
- tapps_agents/workflow/cursor_executor.py +2196 -2118
- tapps_agents/workflow/direct_execution_fallback.py +16 -3
- tapps_agents/workflow/message_formatter.py +2 -1
- tapps_agents/workflow/parallel_executor.py +43 -4
- tapps_agents/workflow/parser.py +375 -357
- tapps_agents/workflow/rules_generator.py +337 -337
- tapps_agents/workflow/skill_invoker.py +9 -3
- {tapps_agents-3.5.39.dist-info → tapps_agents-3.5.40.dist-info}/METADATA +5 -1
- {tapps_agents-3.5.39.dist-info → tapps_agents-3.5.40.dist-info}/RECORD +57 -53
- tapps_agents/agents/analyst/SKILL.md +0 -85
- tapps_agents/agents/architect/SKILL.md +0 -80
- tapps_agents/agents/debugger/SKILL.md +0 -66
- tapps_agents/agents/designer/SKILL.md +0 -78
- tapps_agents/agents/documenter/SKILL.md +0 -95
- tapps_agents/agents/enhancer/SKILL.md +0 -189
- tapps_agents/agents/implementer/SKILL.md +0 -117
- tapps_agents/agents/improver/SKILL.md +0 -55
- tapps_agents/agents/ops/SKILL.md +0 -64
- tapps_agents/agents/orchestrator/SKILL.md +0 -238
- tapps_agents/agents/planner/story_template.md +0 -37
- tapps_agents/agents/reviewer/templates/quality-dashboard.html.j2 +0 -150
- tapps_agents/agents/tester/SKILL.md +0 -71
- {tapps_agents-3.5.39.dist-info → tapps_agents-3.5.40.dist-info}/WHEEL +0 -0
- {tapps_agents-3.5.39.dist-info → tapps_agents-3.5.40.dist-info}/entry_points.txt +0 -0
- {tapps_agents-3.5.39.dist-info → tapps_agents-3.5.40.dist-info}/licenses/LICENSE +0 -0
- {tapps_agents-3.5.39.dist-info → tapps_agents-3.5.40.dist-info}/top_level.txt +0 -0
|
@@ -495,8 +495,13 @@ class SkillInvoker:
|
|
|
495
495
|
else:
|
|
496
496
|
parts.append(f"--{key} {value}")
|
|
497
497
|
elif isinstance(value, dict):
|
|
498
|
-
# Convert dict to JSON string
|
|
499
|
-
|
|
498
|
+
# Convert dict to compact JSON string (no newlines, no spaces)
|
|
499
|
+
# Use separators to ensure single-line output for shell safety
|
|
500
|
+
json_str = json.dumps(value, separators=(',', ':'))
|
|
501
|
+
# Escape backslashes and double quotes for Windows cmd compatibility
|
|
502
|
+
# Then wrap in double quotes (Windows-compatible)
|
|
503
|
+
escaped = json_str.replace('\\', '\\\\').replace('"', '\\"')
|
|
504
|
+
parts.append(f'--{key} "{escaped}"')
|
|
500
505
|
else:
|
|
501
506
|
parts.append(f"--{key} {value}")
|
|
502
507
|
|
|
@@ -618,7 +623,8 @@ class SkillInvoker:
|
|
|
618
623
|
params["target"] = str(target_path)
|
|
619
624
|
|
|
620
625
|
# Add context as JSON string for Skills to parse
|
|
621
|
-
|
|
626
|
+
# Use compact format (no newlines, no spaces) for shell safety
|
|
627
|
+
params["context"] = json.dumps(skill_context.to_dict(), separators=(',', ':'))
|
|
622
628
|
|
|
623
629
|
# Build command string using custom Skill name
|
|
624
630
|
command_str = self._build_command(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tapps-agents
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.40
|
|
4
4
|
Summary: A specification framework for defining, configuring, and orchestrating coding agents
|
|
5
5
|
Author: Tapps
|
|
6
6
|
Maintainer: Tapps
|
|
@@ -147,6 +147,8 @@ If you're using **Cursor IDE**, get started quickly:
|
|
|
147
147
|
# cd /path/to/TappsCodingAgents && tapps-agents init
|
|
148
148
|
```
|
|
149
149
|
|
|
150
|
+
Optional: `tapps-agents init --hooks` creates `.tapps-agents/hooks.yaml` and `.tapps-agents/context/` from templates (all hooks disabled by default). Use `tapps-agents task create|list|run` for task specs and multi-session workflows; see [Task Management Guide](docs/TASK_MANAGEMENT_GUIDE.md).
|
|
151
|
+
|
|
150
152
|
This installs:
|
|
151
153
|
- ✅ **Cursor Skills** (`.claude/skills/`) - Use `@agent *command` in Cursor IDE
|
|
152
154
|
- ✅ **Claude Desktop Commands** (`.claude/commands/`) - Use `@command` in Claude Desktop
|
|
@@ -266,6 +268,8 @@ See [Demo Plan](docs/DEMO_PLAN.md) for complete demo scenarios and instructions.
|
|
|
266
268
|
- **Context7 MCP Server**: Library documentation lookup (required, auto-configured)
|
|
267
269
|
- **Playwright MCP Server**: Browser automation for E2E testing (optional, auto-detected)
|
|
268
270
|
- **Beads (bd)** (optional or required): Task tracking; `tapps-agents beads`; doctor reports bd status; init hints or mandates `bd init` when detected. Set `beads.required: true` to make workflows fail when bd unavailable. [Beads Integration](docs/BEADS_INTEGRATION.md)
|
|
271
|
+
- **Hooks** (opt-in): Run shell commands at UserPromptSubmit, PostToolUse, SessionStart, SessionEnd, and WorkflowComplete. Configure in `.tapps-agents/hooks.yaml`; use `tapps-agents init --hooks` to create a template. [Hooks Guide](docs/HOOKS_GUIDE.md)
|
|
272
|
+
- **Task management / multi-session**: Task specs in `.tapps-agents/task-specs/`, `tapps-agents task create|list|show|update|close|hydrate|dehydrate|run`, and hydration/dehydration for Beads. [Task Management Guide](docs/TASK_MANAGEMENT_GUIDE.md)
|
|
269
273
|
- **YAML Workflow Definitions**: Declarative, version-controlled orchestration with strict schema enforcement
|
|
270
274
|
- **Greenfield/Brownfield Workflows**: Context-appropriate workflows for project types
|
|
271
275
|
- **YAML-First Architecture** ✅ (Epics 6-10 Complete):
|
|
@@ -1,31 +1,25 @@
|
|
|
1
|
-
tapps_agents/__init__.py,sha256=
|
|
1
|
+
tapps_agents/__init__.py,sha256=PRiG3PBenRzWH5o_UapUUWxh2l2A7N_mHD-ute_PzjY,1180
|
|
2
2
|
tapps_agents/agents/__init__.py,sha256=w0Aj0bEdmIoPY1OcVTK0KFRSkYeAk-66CM2zmGTLjW0,698
|
|
3
|
-
tapps_agents/agents/analyst/SKILL.md,sha256=zojp4LafqC0ZPv49kVQ1_UuOazL9QPa5Dxxp-TFtfKs,2056
|
|
4
3
|
tapps_agents/agents/analyst/__init__.py,sha256=zLFkB6j1PkcpeaOk8Vnx76oYzVYyUqdULWj-pOyfLZY,135
|
|
5
4
|
tapps_agents/agents/analyst/agent.py,sha256=YgPvWOqdZfIA24jIrbmHSdj3EVGIrGpwVIv5ep9uc8U,32033
|
|
6
|
-
tapps_agents/agents/architect/SKILL.md,sha256=y9o76lpcTX_u4nK7ikDdDk9PsECTwXwbe3zwAk7QEy8,1933
|
|
7
5
|
tapps_agents/agents/architect/__init__.py,sha256=IXPiHqbjYScQTOnXAY8xPJ7ErPhgeeXQy8G_B5Gcf9E,135
|
|
8
6
|
tapps_agents/agents/architect/agent.py,sha256=Y3H1PEnxYSLRtSayUA-_ZNnGA5HFiCL1wym_Sfg84e4,42507
|
|
9
7
|
tapps_agents/agents/architect/pattern_detector.py,sha256=TmgSmGsY6rGip8YV5et0HcXcjmzWawOZBZZwWeDb9_g,2972
|
|
10
8
|
tapps_agents/agents/cleanup/__init__.py,sha256=1YoZ2SpX6fOun5F0RAEMMyCUeUXxgcdDXpm_L1qx1O4,131
|
|
11
9
|
tapps_agents/agents/cleanup/agent.py,sha256=OzrRyjaKDiuiC_ryJQpUnc9gcPcDg6qY8scSZbnWnno,17178
|
|
12
|
-
tapps_agents/agents/debugger/SKILL.md,sha256=HANB65WPx26WFtGoMntbBcd3OcWm_7CP4XtGi0xSa98,2162
|
|
13
10
|
tapps_agents/agents/debugger/__init__.py,sha256=SY-6_cbvKpFSN3E3FJ0de_Tfj8VA2b95T_s39LMDkZU,130
|
|
14
11
|
tapps_agents/agents/debugger/agent.py,sha256=hTxNoAjcHVv7sIQhDJHm3uDkJzk6oy1aYfxxbToiXJM,11900
|
|
15
12
|
tapps_agents/agents/debugger/error_analyzer.py,sha256=_2RRD5Kb7y_ak1SWoLnnqZExzYcbYUB9NmyfsDfpioM,18099
|
|
16
|
-
tapps_agents/agents/designer/SKILL.md,sha256=118p2JCp2FtkzlYP041HBpPYXqA4FPvIrTzvQbvODIY,1883
|
|
17
13
|
tapps_agents/agents/designer/__init__.py,sha256=oJ2CKxUabNNviUmRmnV0m8_JkFyjZNpvQRetx9TJRTA,141
|
|
18
14
|
tapps_agents/agents/designer/agent.py,sha256=LTfsUD73H84xWx528lQtAr_JAAnupJc4hWXSZ7MZAu0,32112
|
|
19
15
|
tapps_agents/agents/designer/visual_designer.py,sha256=I9H2ZZrfptwpegDRFbP6QaszT2xydlbTaJMARhjmMEg,23209
|
|
20
|
-
tapps_agents/agents/documenter/SKILL.md,sha256=l5rHTv4zuOqXfO4m1bb1DUtbLwB1dG8TYwotZqdoIU4,2336
|
|
21
16
|
tapps_agents/agents/documenter/__init__.py,sha256=28ooCfh8Xaey2w8wGPiTKQzOQkiVj_ZYsSQzY5RAEMc,125
|
|
22
17
|
tapps_agents/agents/documenter/agent.py,sha256=LHmTweCIMdDWTej6EOkFM1FM6RVkbjNBxgCcBue0HHk,22340
|
|
23
18
|
tapps_agents/agents/documenter/doc_generator.py,sha256=A9HyMFAhX0J_9frkAH0AiPBrL2LA2XF1uVNIlvDrOKA,17841
|
|
24
19
|
tapps_agents/agents/documenter/doc_validator.py,sha256=3nTEujC5-JQQaeK-e8qWpHOM6ijTjGYIo5GV0Mo4o2U,14389
|
|
25
20
|
tapps_agents/agents/documenter/framework_doc_updater.py,sha256=LhxhY5aDP_6yGsWUWkuK43jPDCOPdQ446k7x-C3YA_k,18438
|
|
26
|
-
tapps_agents/agents/enhancer/SKILL.md,sha256=HG_AYw8UYCcGj1vcXpXX0KGNkV7G0nRBD8ASzgVU8Hw,5661
|
|
27
21
|
tapps_agents/agents/enhancer/__init__.py,sha256=BT1vH1rkV2tsry9eBtI3U0EXEMWZB3ptGSTECKlcOcY,122
|
|
28
|
-
tapps_agents/agents/enhancer/agent.py,sha256=
|
|
22
|
+
tapps_agents/agents/enhancer/agent.py,sha256=GQrz0AiVaiwsLFfzr4CC8A0sn1hkOrYpkcIZS7pWYDw,119076
|
|
29
23
|
tapps_agents/agents/evaluator/__init__.py,sha256=gGBp4fg8o33yQppF-G8139mOH3VrhFumVslMaecyOOs,151
|
|
30
24
|
tapps_agents/agents/evaluator/agent.py,sha256=djcsFQ5XM8FKgDU0OZdXj4VOxt2d9Uj90HSR0PgdFiQ,16092
|
|
31
25
|
tapps_agents/agents/evaluator/priority_evaluator.py,sha256=Wa9FobcOqPzbMVgVEPgkFrWDq6LItAF8Fe-j9WHgYw8,22948
|
|
@@ -33,27 +27,22 @@ tapps_agents/agents/evaluator/quality_analyzer.py,sha256=3shvSZqLf_fJf9ErzJveMgG
|
|
|
33
27
|
tapps_agents/agents/evaluator/report_generator.py,sha256=51DDOXHFvWSzIiA4e9QfPG6jHu6qQ07aunz21cfCGSo,13594
|
|
34
28
|
tapps_agents/agents/evaluator/usage_analyzer.py,sha256=8bEYE_-iUl8M9msl77C1DtW-1VCDQMcPRx92Qs3efi0,6842
|
|
35
29
|
tapps_agents/agents/evaluator/workflow_analyzer.py,sha256=1hHTwIbjc_308bVUtGYEFDb3XD0J4Rqq-TX-LTqvGD0,7099
|
|
36
|
-
tapps_agents/agents/implementer/SKILL.md,sha256=VizfTijOwNTyyCVbppSW_Pcr-B1q0lyVEEPIm4guOB0,4148
|
|
37
30
|
tapps_agents/agents/implementer/__init__.py,sha256=CFUeZQZC__nV-V8MvF6nDg11sXhNFUbj5Q9OuMqLrc8,141
|
|
38
|
-
tapps_agents/agents/implementer/agent.py,sha256=
|
|
31
|
+
tapps_agents/agents/implementer/agent.py,sha256=1srh5qt8zXERgjTyubwU9X---SGUUMmuQk2br3ZPE98,32178
|
|
39
32
|
tapps_agents/agents/implementer/auto_fix.py,sha256=M_OgtttKHmCy3Oy65NoPXRFyor-he9S_DZulqwnTvR4,37607
|
|
40
33
|
tapps_agents/agents/implementer/code_generator.py,sha256=xdzoD0jP815bTzI4lrjv55RNEKE1yZCopUorz0sy4wQ,2532
|
|
41
|
-
tapps_agents/agents/improver/SKILL.md,sha256=D84Z2uDaN4qc0kwVNTEI_w0JBtv-XPpvTMQ3qb5H8Cg,2630
|
|
42
34
|
tapps_agents/agents/improver/__init__.py,sha256=jQkAcemMDJtLZ2bPfTHBfnU8kBPpINAakKQalXHk9BY,51
|
|
43
35
|
tapps_agents/agents/improver/agent.py,sha256=vGsNiXDEPRyyiRaiupM2laGjaYvThd6Zd5Ipv4aEBSo,30153
|
|
44
|
-
tapps_agents/agents/ops/SKILL.md,sha256=xiUP43E8muf_kO6sZNbEVdlL8aAi-6_sSuqqoY2YXTk,3162
|
|
45
36
|
tapps_agents/agents/ops/__init__.py,sha256=tuo9GY4-_oOkFE_JKNJPBttMWE2ihTkqnaaFnNJvjyg,41
|
|
46
37
|
tapps_agents/agents/ops/agent.py,sha256=Z_WrkXvj3rVjNXN0C4K8q2OsoF8biFqI4apa98HFguA,23719
|
|
47
38
|
tapps_agents/agents/ops/dependency_analyzer.py,sha256=KndVDs7Y9PgRePTL1zr0mmkos7wxhfx_tI8u48jZgj0,24275
|
|
48
|
-
tapps_agents/agents/orchestrator/SKILL.md,sha256=WBNpp54V3aaVmmGPgMbvwoeAxwyp1u6NdT9qo7hmJBw,5602
|
|
49
39
|
tapps_agents/agents/orchestrator/__init__.py,sha256=FZCI_1V1wojH0FneXk-kKPPf1ZS1XOWYdoFCb8H0XPE,145
|
|
50
40
|
tapps_agents/agents/orchestrator/agent.py,sha256=G7Byg1D7GyRRnXprLt6PdHOrKUvyAzPlAkpRFZngI_k,21070
|
|
51
41
|
tapps_agents/agents/planner/__init__.py,sha256=_LzUY-GHe7Lg7PZtiZ8p-9UhH7xUoOizmZb7SAvx1nc,133
|
|
52
42
|
tapps_agents/agents/planner/agent.py,sha256=5ogYzmo7e1onlSknJsPVgTI2Ou5P0nGr9-4yrqmjTBU,42787
|
|
53
|
-
tapps_agents/agents/planner/story_template.md,sha256=Ccvjfhqwr0v0oMKFDkKj2dpC0geQAuQoaAjVIsSqYP4,620
|
|
54
43
|
tapps_agents/agents/reviewer/__init__.py,sha256=SX3AS69TRG_gn-8TwZ9B45kFs3jTTLhwwG7bwO5zmjI,559
|
|
55
44
|
tapps_agents/agents/reviewer/adaptive_scorer.py,sha256=IGqPTGkmxg6ed9ORa9bxYYmhcbkWzTgWCEwjgHyNM7o,4788
|
|
56
|
-
tapps_agents/agents/reviewer/agent.py,sha256=
|
|
45
|
+
tapps_agents/agents/reviewer/agent.py,sha256=VBnPTUVReH2L7G4Lw3bhwMe6kFnR6uwu-CIkwQiAw8Q,159163
|
|
57
46
|
tapps_agents/agents/reviewer/aggregator.py,sha256=_vXTvbmJPk6noWcIVvhOSUKu8qxeSy8OnwY9wTsaSxE,7475
|
|
58
47
|
tapps_agents/agents/reviewer/batch_review.py,sha256=OHLkGqkU68X0eZzW3kscKKG0EY4k1G_bEwEL2kh2ucE,16717
|
|
59
48
|
tapps_agents/agents/reviewer/cache.py,sha256=LSmUfrTZgtwEKVFYd9tfEMF-r8eLtDcIn9VZjqe6ieI,15310
|
|
@@ -80,15 +69,15 @@ tapps_agents/agents/reviewer/report_generator.py,sha256=gVx8sLZj7UGzHnXTDqMI5sKG
|
|
|
80
69
|
tapps_agents/agents/reviewer/score_constants.py,sha256=A1DSz-IEQpIqCWX3C9Zao0jVhgY08PbVoaPXdjMTAbY,7828
|
|
81
70
|
tapps_agents/agents/reviewer/score_validator.py,sha256=Pl3Qr6XZZ0eOmtpTvjUCgWUroGrb2cCMHcIXRHrWCwg,22038
|
|
82
71
|
tapps_agents/agents/reviewer/scorer_registry.py,sha256=16JrhqfFjphoiOiBVmKMmWqPB2DpraUt5sKwLToJlVE,14095
|
|
83
|
-
tapps_agents/agents/reviewer/scoring.py,sha256=
|
|
72
|
+
tapps_agents/agents/reviewer/scoring.py,sha256=4Ccos31UuLbWlJSb8fr9k0FnTEa4y4R2p1qxe4KUm-U,62650
|
|
84
73
|
tapps_agents/agents/reviewer/service_discovery.py,sha256=S5k83CzN8Q-F3bIgfAXRjLy0LegRLn_3et8hs9qrxfY,18983
|
|
85
74
|
tapps_agents/agents/reviewer/typescript_scorer.py,sha256=IHk_cSGrCCnM0oZ2Dx5GaATyjDLOZUhUn5_EHmNha6Y,45648
|
|
86
75
|
tapps_agents/agents/reviewer/validation.py,sha256=xwXRt8wFd43OyHTFej2n944MK4rdqlnVyqZcMbpo6AI,6154
|
|
87
76
|
tapps_agents/agents/reviewer/websocket_validator.py,sha256=9AWyBRU-y55ns4SJs2TkpLxvXt_PM--5AV2OnustTQY,4539
|
|
88
|
-
tapps_agents/agents/reviewer/
|
|
89
|
-
tapps_agents/agents/reviewer/tools/__init__.py,sha256=wQzjC1QsEHk1H1ocl7ft8TfjuBCtmUNkb_Cat_Xb_Ug,321
|
|
77
|
+
tapps_agents/agents/reviewer/tools/__init__.py,sha256=NiKnW3MI7RJAvUXuBb-9qcyE9B66ik5xhgcezi99ZXM,839
|
|
90
78
|
tapps_agents/agents/reviewer/tools/parallel_executor.py,sha256=uDxuJZv5wzE7kUoKLwYKwS_jwen1gFTAeQrfnVEbtVg,19345
|
|
91
|
-
tapps_agents/agents/
|
|
79
|
+
tapps_agents/agents/reviewer/tools/ruff_grouping.py,sha256=nvQGKBb6DmIwa6SpwKxDIja8Q92nrVJyS83eyCM-F4g,8993
|
|
80
|
+
tapps_agents/agents/reviewer/tools/scoped_mypy.py,sha256=EI6Hd6-PAbiIv5KhS3rRhDpHtQ3bgIOx2e_yLhCddTU,9973
|
|
92
81
|
tapps_agents/agents/tester/__init__.py,sha256=w4C2m6HnMbAadVZJZhqUzJih09NWqZvdeQ2F67hsCTQ,114
|
|
93
82
|
tapps_agents/agents/tester/accessibility_auditor.py,sha256=y8Snsd-pX4PpxbtCSNcpIlpUbZHS5qgHn4t9wM32h0A,12127
|
|
94
83
|
tapps_agents/agents/tester/agent.py,sha256=SE_fm_QTrrbYt38oCef_f0zhCTU62x05kjFBPVBoae8,46613
|
|
@@ -106,16 +95,18 @@ tapps_agents/agents/tester/test_generator.py,sha256=5AxKPKBhcO9yGGh23gscCERUxp_0
|
|
|
106
95
|
tapps_agents/agents/tester/trace_manager.py,sha256=lAqwU_dPaWqTmXD8esPr-NanTyrOegiam-LM8RpyCrw,7372
|
|
107
96
|
tapps_agents/agents/tester/visual_regression.py,sha256=8TXfYIZD8OL3cF6hm20N123-Cuo_HCoHCdGxKsHREug,9548
|
|
108
97
|
tapps_agents/analysis/pattern_detector.py,sha256=ph3jb6pQwUYGMpgJpRm3x66ywmfv89l4LJhhQ4UByF8,813
|
|
109
|
-
tapps_agents/beads/__init__.py,sha256=
|
|
98
|
+
tapps_agents/beads/__init__.py,sha256=XaWHzRJFVy_r1XVxZNTFlVCD-TuOLAsIdYt-H96_Zko,867
|
|
110
99
|
tapps_agents/beads/client.py,sha256=ApltiDkxWjtMT14t0KU3c3GdqFm2qYXXQ3shebe74Cg,4255
|
|
100
|
+
tapps_agents/beads/hydration.py,sha256=s5l_LCw4zNxa17gPdQlhnZZfIZei6OMCE-mwFSKaaII,7485
|
|
111
101
|
tapps_agents/beads/parse.py,sha256=_KGVvYdH8cQhF7fLA52PkC-A8cGksXmx02r6AQlXfHI,1003
|
|
102
|
+
tapps_agents/beads/specs.py,sha256=dPg9-WUA5r2iX3Zkx_4vNdREsNkLJPJvhbhyafbdo0E,6635
|
|
112
103
|
tapps_agents/cli/__init__.py,sha256=T9HjgIk2JDrXmQBLD_1JYc9RJAETw85qwmUTMdDg9Ig,139
|
|
113
104
|
tapps_agents/cli/__main__.py,sha256=-jPOZPcfNrnAEEdP0igvZ9_-yH_SXpbdPMDP6IZ6lqQ,133
|
|
114
105
|
tapps_agents/cli/base.py,sha256=1XoAc2v6zh0kZoDuf-2vPEQlUVGzWoFZZT8cxgblklw,17385
|
|
115
106
|
tapps_agents/cli/command_classifier.py,sha256=PesY18-Trn53OBktVPWmq6ddxAkz1EJ4mkYyEy9rpf8,2430
|
|
116
107
|
tapps_agents/cli/feedback.py,sha256=bhq37Iqocu9DLa-XOoZIH2K8nHCOzKdzeoFnQKC2D0M,36652
|
|
117
108
|
tapps_agents/cli/formatters.py,sha256=6O7CmMj3CA9KAVoNvUrX2nbswIqBnfmEexi4pCHUTDI,23207
|
|
118
|
-
tapps_agents/cli/main.py,sha256=
|
|
109
|
+
tapps_agents/cli/main.py,sha256=gpfi3M676iy5sk_6mToH6bo_5qziBd5c-ROs6zs5_jY,23572
|
|
119
110
|
tapps_agents/cli/network_detection.py,sha256=ZoSEqO2ro_HGQqGC6utBDKJypQlsihzXv9C_gZte-6A,3811
|
|
120
111
|
tapps_agents/cli/output_compactor.py,sha256=x5tkcIIFVnrKmtdo7PE0R-C84LWr4Agd2ulO1xclhRI,8979
|
|
121
112
|
tapps_agents/cli/progress_heartbeat.py,sha256=3CvT5El-9KbaImPdTp-IKPrUsRGw-2j1zi1PNWaGwIk,8549
|
|
@@ -130,7 +121,7 @@ tapps_agents/cli/commands/designer.py,sha256=OlfS1LDlLMdesXhWckTilJPALRJySB402ss
|
|
|
130
121
|
tapps_agents/cli/commands/documenter.py,sha256=o1JwCwkuH4NqL75pEqxEdsOqUOodkZYyxo64Bw0mRto,5389
|
|
131
122
|
tapps_agents/cli/commands/enhancer.py,sha256=EwrGZrAyx9muNSfj0lae-UTRo41NSauLf_kKOgJFvR8,4224
|
|
132
123
|
tapps_agents/cli/commands/evaluator.py,sha256=eLtgr0mxDvR05XvIgMmnUmW7oYx5kImaWsQXxPPFVbY,11943
|
|
133
|
-
tapps_agents/cli/commands/health.py,sha256=
|
|
124
|
+
tapps_agents/cli/commands/health.py,sha256=jrMKIMfg7q_5clw9dYGBz9SaRtlU9Kq1h3EOfcxdQkc,27599
|
|
134
125
|
tapps_agents/cli/commands/implementer.py,sha256=S90u3XFyA0MdpDZje0at_4RUtDQv0WgfqtDZBvxRlks,12991
|
|
135
126
|
tapps_agents/cli/commands/improver.py,sha256=y9UF17WapZiuGJ_JWZu8c4u9FYSku3EZq24dnvTIsmU,3399
|
|
136
127
|
tapps_agents/cli/commands/knowledge.py,sha256=LyycqdUL585guE5nVMcXDTxIkcFkSn7maLyvJj-Q6ho,3590
|
|
@@ -140,10 +131,11 @@ tapps_agents/cli/commands/ops.py,sha256=4tlDVKI8rflchkU1F95bQnPCp3Kd9ykrjuDOSWRZ
|
|
|
140
131
|
tapps_agents/cli/commands/orchestrator.py,sha256=TvZGltqYBaLMevo3hp13QiIUTTeByFQ-SsRxu8JrMNI,4791
|
|
141
132
|
tapps_agents/cli/commands/planner.py,sha256=dB43ux1hF5Z_bJImP06CpKocCRWcSGd2LG90-b0irzY,10074
|
|
142
133
|
tapps_agents/cli/commands/reviewer.py,sha256=TjuTgaQaCfaFfZfW-7Hm4X6JjUKz9vVzDodO1uA6Om4,78081
|
|
143
|
-
tapps_agents/cli/commands/simple_mode.py,sha256=
|
|
134
|
+
tapps_agents/cli/commands/simple_mode.py,sha256=JjuaaPKo0DZXOqMNyvFNNqz98sNE78EZFeMIcu77lOU,31820
|
|
144
135
|
tapps_agents/cli/commands/status.py,sha256=XrkCnxdiaieZrXExAW0_YrCDlkVGa9iRIiJ74DwP_5o,10661
|
|
136
|
+
tapps_agents/cli/commands/task.py,sha256=YQTEopFPw7QUeSHG5xe98aJUG8YNy-tEOE794Kl0Vq4,7956
|
|
145
137
|
tapps_agents/cli/commands/tester.py,sha256=ZGwSw8O6wMOx1UO5kCgmawZUccC0MBL3kvRH-7dEic4,8481
|
|
146
|
-
tapps_agents/cli/commands/top_level.py,sha256=
|
|
138
|
+
tapps_agents/cli/commands/top_level.py,sha256=dTh_rdoSiXrLgnDN04YIvlNITPnEnxoek7E8NusARho,149034
|
|
147
139
|
tapps_agents/cli/help/__init__.py,sha256=2hO-whwGhNM4efFc7fc7ihTmE5PmxFl7jaQ2H7ywUbA,147
|
|
148
140
|
tapps_agents/cli/help/static_help.py,sha256=0hFiOgLqBT-vM0yHoeY_Ea5JOg_anc_5_rPR1GX1nqs,19560
|
|
149
141
|
tapps_agents/cli/parsers/__init__.py,sha256=mtP0vrFd1P7i4V3N1B1wXKxM7ajCVLqNBul4998I5SI,35
|
|
@@ -162,7 +154,7 @@ tapps_agents/cli/parsers/orchestrator.py,sha256=CNOISO4v6dAoM3xbKrx2nhyssltCrxkf
|
|
|
162
154
|
tapps_agents/cli/parsers/planner.py,sha256=1ksw1W_CVwqXWi-z4w-XuWZPgJWjVlBQ1JlANuhlPeo,7027
|
|
163
155
|
tapps_agents/cli/parsers/reviewer.py,sha256=fx7kHgGCrk7vYc4Jqxjru1JNy8buUlryUcD5qaS5ojU,19748
|
|
164
156
|
tapps_agents/cli/parsers/tester.py,sha256=FomqAGk3RCAWwtLrlXium2UH38Oxffzt6dj-vYP_I3c,6555
|
|
165
|
-
tapps_agents/cli/parsers/top_level.py,sha256=
|
|
157
|
+
tapps_agents/cli/parsers/top_level.py,sha256=lkcmUi9yoWMMMXQ5G_ttvgGLJQPE6vkSFE-f7dwvGVo,84014
|
|
166
158
|
tapps_agents/cli/utils/__init__.py,sha256=4eLPpMJhesYkbo00Eo_e3h4Lww_ZnepSKfHe25MptfI,231
|
|
167
159
|
tapps_agents/cli/utils/agent_lifecycle.py,sha256=8fHS3kT-mA5TPht5NGuWX5N4uM9104biX_ZDJNrydxc,1351
|
|
168
160
|
tapps_agents/cli/utils/error_formatter.py,sha256=8JAQMQzDZaiU0Dk_kfLTbQfeoNB1_RBz4-P-EMGi92E,2638
|
|
@@ -229,7 +221,7 @@ tapps_agents/core/cleanup_tool.py,sha256=Kj7xyfX8zXEWBEgKEAPdRI-qPCTtrwgHgwsemIm
|
|
|
229
221
|
tapps_agents/core/code_generator.py,sha256=Ma-5NWZnr4PcfFvZEFFUtn6hDzv7zAOVaZrTwmRiOrU,9881
|
|
230
222
|
tapps_agents/core/code_validator.py,sha256=SoP_zUBTzWEhfSuFNjawk_R6ytcgjJ8VClfCSILLKFE,8953
|
|
231
223
|
tapps_agents/core/command_registry.py,sha256=Re07pBBjwtilp9kaXn5Qxdjp01liT5pj1S7KUsXwQIg,10192
|
|
232
|
-
tapps_agents/core/config.py,sha256=
|
|
224
|
+
tapps_agents/core/config.py,sha256=2kCKCXb06MIr1avlkAEQPwD07dJWFd0z45WGjjQ0HOU,56291
|
|
233
225
|
tapps_agents/core/context_manager.py,sha256=UCftn4UnGt6xf_LErC8Ty5fWP2u6mcyv5tqvoLvfK5s,8184
|
|
234
226
|
tapps_agents/core/cursor_feedback_monitor.py,sha256=p0Ow-wktUyK745MKQwt9E7rWoelV9WacQ5HWk3iRQGM,5073
|
|
235
227
|
tapps_agents/core/cursor_verification.py,sha256=kLMshs5E0-W-13rwT3TnNQ-YIjmW6v7AHI6kkiaBc7M,9905
|
|
@@ -260,7 +252,7 @@ tapps_agents/core/feedback_analyzer.py,sha256=BZbqS53fVbaPdeRjw1Yw286mJrsY88yDYq
|
|
|
260
252
|
tapps_agents/core/feedback_collector.py,sha256=ynpkMWeOFyhuFC6goOdT29QRwd4kiVWgfd5ny9Mmczc,6218
|
|
261
253
|
tapps_agents/core/git_operations.py,sha256=rzqNTAj_XhnTtegxjXXZNpGeocL5LNM5DUWFNUp1les,14272
|
|
262
254
|
tapps_agents/core/hardware_profiler.py,sha256=OMram3JZkvdqRNSHvIAweHNuX_1Oy86jDCUldsVm8yw,4312
|
|
263
|
-
tapps_agents/core/init_project.py,sha256=
|
|
255
|
+
tapps_agents/core/init_project.py,sha256=1VlaJlFcrxLPWm6DKYnJMXfYOUdPaSxQM6O5Ja-8Rmc,118099
|
|
264
256
|
tapps_agents/core/instructions.py,sha256=eMleDK9k5NFTQT3Aj_DgsiWt5Gj4GQjSq83bJUgiVhU,13044
|
|
265
257
|
tapps_agents/core/io_guardrails.py,sha256=X178WGZP1Ut8UU1Ox08pXBhfTHtN_etum5WgRjvLUrk,2206
|
|
266
258
|
tapps_agents/core/issue_manifest.py,sha256=NqwReBKfNp1ChiYvFkbVvD7_w47-RrssPIZo6NenFrc,10020
|
|
@@ -374,11 +366,12 @@ tapps_agents/docker/debugger.py,sha256=rzXTH_isr27EyglUZveKeM34iqxgiNiof7QGB6UDK
|
|
|
374
366
|
tapps_agents/docker/error_patterns.py,sha256=7MmW0kj3VLZFQlLNwt-7d1Xn4w7a6XKjItc61dUDe5Q,7089
|
|
375
367
|
tapps_agents/epic/__init__.py,sha256=QLHpM8mjraUnrip_KNLBU1_tYeyq_ewmXM70rJ7951Y,521
|
|
376
368
|
tapps_agents/epic/beads_sync.py,sha256=gfTUjqfI4lsukS9mFfCmeO-LO8VUezCq77FweJvVlKY,4303
|
|
369
|
+
tapps_agents/epic/markdown_sync.py,sha256=0bWf0N_zrhYQJSvqnpj9rQna1M-zGIXaCSky5NxEzn8,4030
|
|
377
370
|
tapps_agents/epic/models.py,sha256=JDQz0g9LrvS3qUURazIp2oaXq3fHVKOEmGHxJdJKhoA,3015
|
|
378
|
-
tapps_agents/epic/orchestrator.py,sha256=
|
|
379
|
-
tapps_agents/epic/parser.py,sha256=
|
|
371
|
+
tapps_agents/epic/orchestrator.py,sha256=Z1vplL7bb9y6kDTURpIFZr68SqQuacV3Dnmq4Lzxbuw,18795
|
|
372
|
+
tapps_agents/epic/parser.py,sha256=ymGUElnzzwU4__JJ2_wSE5_PWqJFVq2QXPr6jrdIWro,15244
|
|
380
373
|
tapps_agents/experts/__init__.py,sha256=yJtNPYJVWoGBfcXsPOLNZ66UdBP0fFzc_TwbdlPxmPM,4850
|
|
381
|
-
tapps_agents/experts/adaptive_domain_detector.py,sha256=
|
|
374
|
+
tapps_agents/experts/adaptive_domain_detector.py,sha256=hfIGsgM0lwfmlogyNboXiLQY9zvXg-4vC_8_F6OvZR4,12959
|
|
382
375
|
tapps_agents/experts/adaptive_voting.py,sha256=xHhUq62sjXquFn3_9Qd3I-kPpFbKbirjntMc4SLv4wg,9545
|
|
383
376
|
tapps_agents/experts/agent_integration.py,sha256=ajBMZ4yUiZfXYI6rjevDURcSfjTdCEMlXldefOy6cXE,8873
|
|
384
377
|
tapps_agents/experts/auto_generator.py,sha256=J_gQXG4jWgqB_7rYgaPYHNRIB2I6QyJkqr2YJAKkZjY,11699
|
|
@@ -437,11 +430,11 @@ tapps_agents/experts/knowledge/ai-frameworks/agent-orchestration-patterns.md,sha
|
|
|
437
430
|
tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md,sha256=gujaIUo794yDOzSgwy45QHRr1g-PMzWoSfpeWePRipM,2162
|
|
438
431
|
tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md,sha256=QibfG2-r0t_euib-2fBcvVH3z50nWp-3_HKbuVAS6s8,6756
|
|
439
432
|
tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md,sha256=X1dHOu6dXsM399SJ6Gk3_IZ-aRceL2wGwtGun70GsFs,7148
|
|
440
|
-
tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md,sha256=
|
|
433
|
+
tapps_agents/experts/knowledge/api-design-integration/api-security-patterns.md,sha256=SNEVPvuungnzQcaHqFT-gzdThFQJ7WZHIruCrm7cazo,14852
|
|
441
434
|
tapps_agents/experts/knowledge/api-design-integration/api-versioning.md,sha256=AvgPN04ERT8Zpv5manm36ecxFe64nhFqJyT2s3CVQXY,8805
|
|
442
435
|
tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md,sha256=HCLhXetoqUWVB079E0QTd23sduNhlPfkvJ03cV5QJnA,1567
|
|
443
436
|
tapps_agents/experts/knowledge/api-design-integration/contract-testing.md,sha256=ahpdBJGafHzl0PFh6aczaM5mzo7zgb1Dlizbr0_aIAE,5416
|
|
444
|
-
tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md,sha256=
|
|
437
|
+
tapps_agents/experts/knowledge/api-design-integration/external-api-integration.md,sha256=Qk2IuHaxUTmj2w9DzJQitOgCWiHciEAp-KhuPKzS5iM,15252
|
|
445
438
|
tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md,sha256=ZqTE8kwQMtKsTircpCBkq4V0ZSfmT_Mw-ANuRZ8AWyE,8596
|
|
446
439
|
tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md,sha256=Uz-qQR7qVsNduO_flGX1X4ih09VNRJaO0805H9hHvfA,5917
|
|
447
440
|
tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md,sha256=UrvONnl3LJmazOUXm2rgcMXAzxm9Wj1n0EI0neosBx4,10123
|
|
@@ -543,7 +536,7 @@ tapps_agents/health/base.py,sha256=1R7V1a7hCKFkJ2DUuc4SAcHXgPZELaHhwCJhhdElcoo,1
|
|
|
543
536
|
tapps_agents/health/collector.py,sha256=yTLBaqgvP7BFGo98Btaxb6MKaMOBym9jOBWNY8SPzsA,9582
|
|
544
537
|
tapps_agents/health/dashboard.py,sha256=mCaERCimQimKyPCcIbxsMyAk86XXjz5NDDJDk67LRDE,4433
|
|
545
538
|
tapps_agents/health/metrics.py,sha256=i8oKjD44UP4q_CCgH3niuppDlwx9Xbs9_h05KOkQwXw,4670
|
|
546
|
-
tapps_agents/health/orchestrator.py,sha256=
|
|
539
|
+
tapps_agents/health/orchestrator.py,sha256=C35YWZLRbdaHMFCtps7O7mlPibsDk1WNwXoKfZd_s-A,10107
|
|
547
540
|
tapps_agents/health/registry.py,sha256=ZBY7iuZJz3BXC9-eOPyxUQUOUWSQpx8TksBVZ1ObDSw,4882
|
|
548
541
|
tapps_agents/health/checks/__init__.py,sha256=7pPbZULDePvdnM9Vc2zARBGLhSlyMqtVRt9x9Lc4bJs,600
|
|
549
542
|
tapps_agents/health/checks/automation.py,sha256=BFel3D9VcXKTP5twZwhBQexCtxMjyQuhlJYuUdCP-9A,4950
|
|
@@ -551,7 +544,15 @@ tapps_agents/health/checks/context7_cache.py,sha256=5nlpB52nJraeLwzcPNhHLdTdjxQo
|
|
|
551
544
|
tapps_agents/health/checks/environment.py,sha256=DvTB_IxxNzJZ2YnHIURWVSBMo9MS1BiDmZExLpPAljk,4122
|
|
552
545
|
tapps_agents/health/checks/execution.py,sha256=urqZtXENyZPTd5jOo-EufSW1irYlQMD8KI4PLpSLLr8,6881
|
|
553
546
|
tapps_agents/health/checks/knowledge_base.py,sha256=e86NaPnRA_0LpfNvqcrBUt0jHs9Lzg5nxJeeP2efkHg,7318
|
|
554
|
-
tapps_agents/health/checks/outcomes.py,sha256=
|
|
547
|
+
tapps_agents/health/checks/outcomes.backup_20260204_064058.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
|
|
548
|
+
tapps_agents/health/checks/outcomes.backup_20260204_064256.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
|
|
549
|
+
tapps_agents/health/checks/outcomes.backup_20260204_064600.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
|
|
550
|
+
tapps_agents/health/checks/outcomes.py,sha256=bSaFyJYYvJpLT3QtYQmged0Rz0_zEkKqdqWsjMu5hoM,13935
|
|
551
|
+
tapps_agents/hooks/__init__.py,sha256=EDL7yMB8-Cb2AMuBRHNAInrxhf63fFZgsvJv3nOlARc,822
|
|
552
|
+
tapps_agents/hooks/config.py,sha256=uLl_GTPTSw2pC8336K7kWJQOgOwJXHNOrXGLvbLfNdY,4418
|
|
553
|
+
tapps_agents/hooks/events.py,sha256=7hY9okOG97jW0-LP5DokEBkBx9jQL4ef6zClLGVVcqM,4056
|
|
554
|
+
tapps_agents/hooks/executor.py,sha256=xc9BnHBoZcPCO_0tzyO9b27F0rhAa1UyJhDIAR3uEPs,4305
|
|
555
|
+
tapps_agents/hooks/manager.py,sha256=hV5dPnttP2TdZ0ifXO-gLg2S8-WaZeR6KGfErvANKgo,5038
|
|
555
556
|
tapps_agents/integration/__init__.py,sha256=yWNId0-cg6NKkrjw4pYlRiS6IWYcGLKUb36_PT4iIE0,132
|
|
556
557
|
tapps_agents/integration/service_integrator.py,sha256=7tIiT8J62XQUB7DFXUx2mJiTzEu2xXPrzz0Q_TglkhE,4012
|
|
557
558
|
tapps_agents/integrations/__init__.py,sha256=UbOmMwyHrjhHB4zhSX5g37FrIO_yz2TZ59UkyvqaQMc,246
|
|
@@ -577,16 +578,19 @@ tapps_agents/quality/gates/exceptions.py,sha256=vBcYDtaswDskl91wdCXimDsOsYRDRo_R
|
|
|
577
578
|
tapps_agents/quality/gates/policy_gate.py,sha256=d4Pjoo4jrd42_nLjWnl5hkpzXoW0FHpiRcPGzW68YJI,7187
|
|
578
579
|
tapps_agents/quality/gates/registry.py,sha256=j2VykyYKqxUfSxUv1-JYsovrQZ7DFOOB2vx_vChRnZg,7653
|
|
579
580
|
tapps_agents/quality/gates/security_gate.py,sha256=7TvVoiWbZxoFYlISkWpO7Jy1L6G8rso3KbODTb5F1lk,6096
|
|
581
|
+
tapps_agents/session/__init__.py,sha256=B6HCY2scz0fT8Ss8-TMoUNcqH1Pqy-R4t0OUomAbT3Q,454
|
|
582
|
+
tapps_agents/session/manager.py,sha256=4PuYAapCga5Hlevc3OTpY-ePNn6VkFtIssbGMYJse98,8762
|
|
580
583
|
tapps_agents/simple_mode/__init__.py,sha256=B-UzNIImDVWBRCmnlZEz1V8SQu22gslNrNPb3p4PDBA,1821
|
|
581
584
|
tapps_agents/simple_mode/agent_contracts.py,sha256=TnigBf8rKzUxeoHtz-S-58W-azyUJqHitZjGBDm3EVY,11881
|
|
582
585
|
tapps_agents/simple_mode/beads_hooks.py,sha256=58PCMg3EZvl6QnEHmUpF7Qj5cRiF3XQ3pZ0iY24EPnc,5115
|
|
583
586
|
tapps_agents/simple_mode/checkpoint_manager.py,sha256=_z2iJ2Qv6oK4lsINbcTqXWsq88BkXwYJhvhLCyKgMUo,42152
|
|
587
|
+
tapps_agents/simple_mode/code_snippet_handler.py,sha256=wnuzx0OgbUQ6SL5kDlVdpupBr7FrPA60L-NeP5U07kA,11235
|
|
584
588
|
tapps_agents/simple_mode/documentation_manager.py,sha256=udBQcQtF2eryigTz6nuQ62zLNrfrhfxLtG1Q-p9d4Ks,13336
|
|
585
589
|
tapps_agents/simple_mode/documentation_reader.py,sha256=A4RyMyIdo1M0Xf0U6PyXpdE8VK2dc9NF2Tzmj3jF-Q8,5905
|
|
586
590
|
tapps_agents/simple_mode/error_handling.py,sha256=4ncWUrFHw22TYRQRRxldxeGmcCFh_ebrHPDWeCPMRE8,10740
|
|
587
591
|
tapps_agents/simple_mode/file_inference.py,sha256=rPwb3ASqh27RYbU750HQsLHVzqSMXzN5vhGlnmp_SVg,10759
|
|
588
592
|
tapps_agents/simple_mode/framework_change_detector.py,sha256=gV4k3NSFCWtPApaYwWphxqm3GBjvcN8q7v2I04jaDJM,9796
|
|
589
|
-
tapps_agents/simple_mode/intent_parser.py,sha256=
|
|
593
|
+
tapps_agents/simple_mode/intent_parser.py,sha256=0cBBdiq0ODUwwmQkkHKKeaUDmCj6qfEIWBwsKLOMLnQ,17597
|
|
590
594
|
tapps_agents/simple_mode/learning_progression.py,sha256=5ZQm45fAen00RhxKep-q9Bo-TlxrRgebze2zSaySxDw,13538
|
|
591
595
|
tapps_agents/simple_mode/nl_handler.py,sha256=tKmYE37as1ktp26sbl_z_vZnKRuj7rNJEMINwuJbYc4,27805
|
|
592
596
|
tapps_agents/simple_mode/onboarding.py,sha256=xJ319mSnBdO5EGpWYDAEEYaE01UDrAFisM-o2Nouea0,9689
|
|
@@ -599,22 +603,22 @@ tapps_agents/simple_mode/streaming.py,sha256=faAySybvrQc0c-0Wvt37uF1zLU9f3QmXDKD
|
|
|
599
603
|
tapps_agents/simple_mode/variations.py,sha256=SfO9PTj8M88-ACLK3HkujWL3tBHYz3pccSg3ykeaEAs,2800
|
|
600
604
|
tapps_agents/simple_mode/visual_feedback.py,sha256=CJei9NhnGYRO55GBC8S4DqGK5YK9gm1mdDAUrQ1jFzo,8347
|
|
601
605
|
tapps_agents/simple_mode/workflow_selector.py,sha256=EBKpkMBeFS6WfIuRhMyTL8nnKRpj52MpnE7rpgHt0Zs,5288
|
|
602
|
-
tapps_agents/simple_mode/workflow_suggester.py,sha256=
|
|
606
|
+
tapps_agents/simple_mode/workflow_suggester.py,sha256=2KJaNyvOIk4GtENRynpkTLDBqzcg6aAZ80co3x2u7iU,23030
|
|
603
607
|
tapps_agents/simple_mode/zero_config.py,sha256=7edNF7AKiLjkzAKqOnVyUSTAu7baGBlM3QZMTNEEOug,10979
|
|
604
608
|
tapps_agents/simple_mode/formatters/__init__.py,sha256=xgAR0OZcKZiDaGLTOCCfvOI7gdBArnKyTcxVMfAE4Pc,167
|
|
605
609
|
tapps_agents/simple_mode/formatters/optimization_report_formatter.py,sha256=zthNEMZywWZMV4WYlEbk1SiqPhBsYsRVqrsQrAH3GIQ,5940
|
|
606
610
|
tapps_agents/simple_mode/metrics/__init__.py,sha256=Z_WPnbtq4sujJqLSdfxxIvpVLuLKum_kClQd-bjpXZA,172
|
|
607
611
|
tapps_agents/simple_mode/metrics/workflow_metrics_tracker.py,sha256=2mkNNIuvyJERnoIWxJ3fxSyefLocLr-qoqlgae0McDU,10685
|
|
608
612
|
tapps_agents/simple_mode/orchestrators/__init__.py,sha256=DM6TzDQ24mSJH7STMN1_47s-7nUsglfBYxj7MXZU21k,1315
|
|
609
|
-
tapps_agents/simple_mode/orchestrators/base.py,sha256=
|
|
613
|
+
tapps_agents/simple_mode/orchestrators/base.py,sha256=xpd8mIxE0i1M9H83tDzwUKRf8JIso5klsHc1XdibW2I,5852
|
|
610
614
|
tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py,sha256=ZaS8vfGPJrsT9Qfz_fRfcjkActQOjotQWbWTuqLyjXc,1790
|
|
611
615
|
tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py,sha256=m5jR5aru6U68sbgQPCuJSvSzW_-DJ6Suf4IUU8jeWBw,5149
|
|
612
|
-
tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=
|
|
616
|
+
tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=5Hl4rCegx_BkFBwCLzCG6CxEum0qHW2MUzODJKSRw8U,122623
|
|
613
617
|
tapps_agents/simple_mode/orchestrators/deliverable_checklist.py,sha256=IMtxpzv1UscwCHp047Kx_qIeLU7_b407-yEAvS774-k,12574
|
|
614
618
|
tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py,sha256=xmcicWcUPMwDHOfm-nS_6rV62-10dPZf8etj_eNGCYg,2112
|
|
615
619
|
tapps_agents/simple_mode/orchestrators/epic_orchestrator.py,sha256=6rJ-g5R0GtsFaM90fCAhP26Ag3EKe71Cd1P-yUT0NHQ,4340
|
|
616
620
|
tapps_agents/simple_mode/orchestrators/explore_orchestrator.py,sha256=MWkGaQ1kMj5H1B5ryHZUssMjXWI3Di11U_aUgrPJldA,6764
|
|
617
|
-
tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=
|
|
621
|
+
tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=sgLxSFbaGHFMFNtcuz0vHIp_lZF6-3VSWnS7VpvtyUw,33535
|
|
618
622
|
tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py,sha256=aR0qMtJ6jlUx1T5dhVn-_sYg9YPN0Wl7044kD7jYF40,7266
|
|
619
623
|
tapps_agents/simple_mode/orchestrators/pr_orchestrator.py,sha256=1KPEBdAE2M163rwp367qRkrTGlRM1A53qIZmfM1kR5g,8603
|
|
620
624
|
tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py,sha256=bOEj9m67HqHqa2oLY4YEP5wKdN8Knk1rsds5XXGAcdk,8157
|
|
@@ -655,12 +659,12 @@ tapps_agents/workflow/confirmation_handler.py,sha256=iH6WCI08pDin5FBztzMYgRMWaO3
|
|
|
655
659
|
tapps_agents/workflow/context_analyzer.py,sha256=-Nxq8okaqQD1rTAsOtNy0BNN_AcMQweM6KCxV8S6j34,8455
|
|
656
660
|
tapps_agents/workflow/context_artifact.py,sha256=ps8sZgMXIemKNK1nADxpHfi5NQdFIVtmDMp48jDb5rI,8125
|
|
657
661
|
tapps_agents/workflow/cursor_chat.py,sha256=e_2eXbr3yFYRdnu9iYcWIsuRgubd5-R68DsJrFN9buU,3180
|
|
658
|
-
tapps_agents/workflow/cursor_executor.py,sha256=
|
|
662
|
+
tapps_agents/workflow/cursor_executor.py,sha256=9wbMDAX4k18OVdGQYvPmd8IYS6Sxt2La18Pqo8tBWjQ,93712
|
|
659
663
|
tapps_agents/workflow/cursor_skill_helper.py,sha256=QZCNCIBpwdZiP5piH9qB2l3Fseh4bMulCg8QcHyAfVA,19481
|
|
660
664
|
tapps_agents/workflow/dependency_resolver.py,sha256=f_2a0uUBADHPEgNvdOdA-tCs-qYXwKyMkbvep2mwlrI,8923
|
|
661
665
|
tapps_agents/workflow/design_artifact.py,sha256=HgEyNndiItMBPTTalOtiUrB600LF3EwwIL557034w7k,5510
|
|
662
666
|
tapps_agents/workflow/detector.py,sha256=bvOrTPT2TS08e6sA05szm22oyipLpJx5oKc6Ca_SO_4,27923
|
|
663
|
-
tapps_agents/workflow/direct_execution_fallback.py,sha256=
|
|
667
|
+
tapps_agents/workflow/direct_execution_fallback.py,sha256=CT-wYMicXc5FEz38DtXUt8XD0tBIHPTXasyVkVFi4TU,11650
|
|
664
668
|
tapps_agents/workflow/docs_artifact.py,sha256=7NNlLEfFkvjIvxLhZAIdpdieC5oPsZElTPflFzA-S_k,5702
|
|
665
669
|
tapps_agents/workflow/durable_state.py,sha256=qGjVp5FXSQsKuLtBBWlwwyo9CbKKjU1OwS1jBmDMjJY,24882
|
|
666
670
|
tapps_agents/workflow/enforcer.py,sha256=2FAUd1_utDbOM2F3YRoM4F2u7M-bzHLMCDDS-mdy-xo,15208
|
|
@@ -683,7 +687,7 @@ tapps_agents/workflow/intent_detector.py,sha256=6JZVk0s2bfFKRO3UNkjfxV7t6PzvirMr
|
|
|
683
687
|
tapps_agents/workflow/logging_helper.py,sha256=x38gDL_ZdlQMnSoIb8aPSVc2hgCj8cgMSzua8o0Rplc,8982
|
|
684
688
|
tapps_agents/workflow/manifest.py,sha256=D5v3E-fBoD0dEK5BNDj_VmVdJmUoT7rCQrJQSygeWRg,20341
|
|
685
689
|
tapps_agents/workflow/marker_writer.py,sha256=2uaP86Fwm_QUPjqRCUdJcNlrHEAD6P7PRJBGpqUhxMo,8325
|
|
686
|
-
tapps_agents/workflow/message_formatter.py,sha256=
|
|
690
|
+
tapps_agents/workflow/message_formatter.py,sha256=Pl5u_D7TGL1JVTgw6E6EPzCEt-IB9ayKgm-VHJJAUwU,6112
|
|
687
691
|
tapps_agents/workflow/messaging.py,sha256=fzVDP7vvQXjJG3AGTS1mp1GiBPaK_NzkPNlxCWxfJ6A,11547
|
|
688
692
|
tapps_agents/workflow/metadata_models.py,sha256=xsigrFQgIgFzLJn7qwCa242w49iEv-QwIrFGkGzL0Zg,2954
|
|
689
693
|
tapps_agents/workflow/metrics_enhancements.py,sha256=6u5EnXCJTyLbi5BcouKamW2Pzutmzjv-Fy-ZGCHVgxk,25800
|
|
@@ -698,8 +702,8 @@ tapps_agents/workflow/observability_dashboard.py,sha256=-0zCZzoa05aOfLutHfspSOZk
|
|
|
698
702
|
tapps_agents/workflow/observer.py,sha256=aMIVdw4mVEWz7yKF4XDPQgehz4wo_W2SxNn58G16uwo,6049
|
|
699
703
|
tapps_agents/workflow/ops_artifact.py,sha256=i5-Uiw-n5iAuXZCErHJ6d5_C-oD4PUsS_JBiWB6xc4w,9277
|
|
700
704
|
tapps_agents/workflow/output_passing.py,sha256=Rc4gha7EWfLUfB70gE127Nhk3xlGwjZgp_5ZebiWNKI,7422
|
|
701
|
-
tapps_agents/workflow/parallel_executor.py,sha256=
|
|
702
|
-
tapps_agents/workflow/parser.py,sha256=
|
|
705
|
+
tapps_agents/workflow/parallel_executor.py,sha256=DkudB_w-4GzE2Pr-fsFtUWFwIVP8rGYWXGLENUCniGY,18900
|
|
706
|
+
tapps_agents/workflow/parser.py,sha256=r2T9XGhzY6iyzLBKxDAcmYHqthD_uZ0rKwza_1HExWs,15258
|
|
703
707
|
tapps_agents/workflow/planning_artifact.py,sha256=yRXnm6KQ4iVVoy22jlo4G175ltHxzHcei2nzKn6da6Q,6438
|
|
704
708
|
tapps_agents/workflow/preset_loader.py,sha256=QbTAciaqX_gqWsDoKWu8ILc0f7dTwopgHZIudPUdv88,11242
|
|
705
709
|
tapps_agents/workflow/preset_recommender.py,sha256=XkFwfuFov2wYw5J_m70Mz38NP1OUAjLke7y6qDJR1X0,8708
|
|
@@ -713,10 +717,10 @@ tapps_agents/workflow/recommender.py,sha256=i4i_qKxYvADBVuXil53WmJp-bRNCwTjh2S_l
|
|
|
713
717
|
tapps_agents/workflow/remediation_loop.py,sha256=DoLsfE5ncxuBXvieYaCFAYbFx1grdkNuxPxzWXY_wb0,5522
|
|
714
718
|
tapps_agents/workflow/result_aggregator.py,sha256=R-ZDVT0XPfqJP4Qyt8Y12MpG3U9419YONxWADm6_IS4,11208
|
|
715
719
|
tapps_agents/workflow/review_artifact.py,sha256=eU8udcTP4aFYXEYxFXsp-Z3YmPBwK981GSNe2Sd2LUY,6786
|
|
716
|
-
tapps_agents/workflow/rules_generator.py,sha256=
|
|
720
|
+
tapps_agents/workflow/rules_generator.py,sha256=aYfG8PMf56CIlm5uPk47A05vuB59X-eLGPeg0J9_ptg,13366
|
|
717
721
|
tapps_agents/workflow/schema_validator.py,sha256=RLQLg1JEYjjIaY5vZWMLwNXJm-dsPMadPYMqdzaN-lw,18870
|
|
718
722
|
tapps_agents/workflow/session_handoff.py,sha256=mPQPxVAgyjdgok0RZvasR147jFRciV2vAHZ4DBwNFk8,5546
|
|
719
|
-
tapps_agents/workflow/skill_invoker.py,sha256=
|
|
723
|
+
tapps_agents/workflow/skill_invoker.py,sha256=cBOHHA8NfVLuTmYla5jLZFTvwJRFxH4u4ZwsnJAdlLM,24766
|
|
720
724
|
tapps_agents/workflow/state_manager.py,sha256=ErIMcHABDmQTm6bSbLjotjV6FHx4kON6eudXWJfV_MI,30367
|
|
721
725
|
tapps_agents/workflow/state_persistence_config.py,sha256=6flU4p61PIIOIkmEHqY1rCfqsXD1P8siUzItKhtPRRA,12701
|
|
722
726
|
tapps_agents/workflow/status_monitor.py,sha256=xA_p3RblPQfhQbWWobrPRjjsd0ccwKYP-cH9XBws7XA,18256
|
|
@@ -741,16 +745,16 @@ tapps_agents/workflow/agent_handlers/debugger_handler.py,sha256=CUPjYAO6Xb78LcI2
|
|
|
741
745
|
tapps_agents/workflow/agent_handlers/designer_handler.py,sha256=6dEwyn1GZty-kAGgSC0XSnjJZc0VEoKnTfTTh08zl8U,3954
|
|
742
746
|
tapps_agents/workflow/agent_handlers/documenter_handler.py,sha256=AC4r6gdahCrLZOYtf59l9VsXVe_TLC_C6YtNifL0kqw,3293
|
|
743
747
|
tapps_agents/workflow/agent_handlers/enhancer_handler.py,sha256=FYny7CpHZ4ERxFmomsTZg_Jj3k-mtjmQOXhlRiWiARU,4775
|
|
744
|
-
tapps_agents/workflow/agent_handlers/implementer_handler.py,sha256=
|
|
748
|
+
tapps_agents/workflow/agent_handlers/implementer_handler.py,sha256=kiX7Jd-zZMfskw20ND9w6DMhtTDv8fjCfbOoBGmerP4,9686
|
|
745
749
|
tapps_agents/workflow/agent_handlers/ops_handler.py,sha256=gQpN9qSN6HA-evAhFv87RYC6FD0UERkuvQA0A5EL1Aw,1821
|
|
746
750
|
tapps_agents/workflow/agent_handlers/orchestrator_handler.py,sha256=AWV3Khqlp41teNo6HjJSLnn21zm1EkJSzM7sQ0ZgFgA,1280
|
|
747
751
|
tapps_agents/workflow/agent_handlers/planner_handler.py,sha256=9oVSsA6Lso5NncYPS4Yn-iEhc5QBGlo7uL89JrmAgls,3449
|
|
748
752
|
tapps_agents/workflow/agent_handlers/registry.py,sha256=aYMU59da4SBgDgqMy4Basu1yL8CvDvdi929n6XM50ro,3613
|
|
749
753
|
tapps_agents/workflow/agent_handlers/reviewer_handler.py,sha256=D4spVUk4l9mJsSsDIKC88EL-2k43YObNz5v439EtDRc,4285
|
|
750
754
|
tapps_agents/workflow/agent_handlers/tester_handler.py,sha256=e44Eqn1CIpcqYqCrjaTK748yb4k7PlzGdK9zSne-SfY,2249
|
|
751
|
-
tapps_agents-3.5.
|
|
752
|
-
tapps_agents-3.5.
|
|
753
|
-
tapps_agents-3.5.
|
|
754
|
-
tapps_agents-3.5.
|
|
755
|
-
tapps_agents-3.5.
|
|
756
|
-
tapps_agents-3.5.
|
|
755
|
+
tapps_agents-3.5.40.dist-info/licenses/LICENSE,sha256=xwT0RCg0KluJ63lZcgkSOiYkpEIEXYlIGqRtkGGsPe0,1085
|
|
756
|
+
tapps_agents-3.5.40.dist-info/METADATA,sha256=jkhzTrjCsNOgFVIFPZwvARmAQ7EstqhNdZYHtMcUrWU,41413
|
|
757
|
+
tapps_agents-3.5.40.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
758
|
+
tapps_agents-3.5.40.dist-info/entry_points.txt,sha256=b8WhZxYg2xA-ocElPeY0LDSqRCOgzw6PuEksZD6BB2E,55
|
|
759
|
+
tapps_agents-3.5.40.dist-info/top_level.txt,sha256=AR0UfcM1nJhQ413h8j1ObAGsUrbfys55D-qKUBGzYtk,13
|
|
760
|
+
tapps_agents-3.5.40.dist-info/RECORD,,
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
# Analyst Agent - Skill Definition
|
|
2
|
-
|
|
3
|
-
> NOTE: Cursor uses the canonical Skills in `.claude/skills/`.
|
|
4
|
-
> This file is framework documentation; prefer `.claude/skills/analyst/SKILL.md` for Cursor.
|
|
5
|
-
|
|
6
|
-
## Purpose
|
|
7
|
-
|
|
8
|
-
The Analyst Agent gathers requirements, performs technical research, and estimates effort/risk. It is a read-only agent that analyzes and provides recommendations.
|
|
9
|
-
|
|
10
|
-
## Permissions
|
|
11
|
-
|
|
12
|
-
- **Read**: ✅
|
|
13
|
-
- **Write**: ❌
|
|
14
|
-
- **Edit**: ❌
|
|
15
|
-
- **Grep**: ✅
|
|
16
|
-
- **Glob**: ✅
|
|
17
|
-
- **Bash**: ❌
|
|
18
|
-
|
|
19
|
-
**Type**: Read-only agent (analysis and research only)
|
|
20
|
-
|
|
21
|
-
## Commands
|
|
22
|
-
|
|
23
|
-
### `*gather-requirements`
|
|
24
|
-
|
|
25
|
-
Gather and extract detailed requirements from a description.
|
|
26
|
-
|
|
27
|
-
**Example:**
|
|
28
|
-
```bash
|
|
29
|
-
tapps-agents analyst gather-requirements "Build a user authentication system"
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
**Parameters:**
|
|
33
|
-
- `description` (required): Requirement description
|
|
34
|
-
- `--context`: Additional context
|
|
35
|
-
- `--output-file`: Save requirements to file
|
|
36
|
-
|
|
37
|
-
### `*analyze-stakeholders`
|
|
38
|
-
|
|
39
|
-
Analyze stakeholders and their needs.
|
|
40
|
-
|
|
41
|
-
**Example:**
|
|
42
|
-
```bash
|
|
43
|
-
tapps-agents analyst analyze-stakeholders "New payment feature" --stakeholders "Product Manager" "Engineering Lead"
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
### `*research-technology`
|
|
47
|
-
|
|
48
|
-
Research technology options for a requirement.
|
|
49
|
-
|
|
50
|
-
**Example:**
|
|
51
|
-
```bash
|
|
52
|
-
tapps-agents analyst research-technology "Need real-time messaging" --criteria "performance" "scalability"
|
|
53
|
-
```
|
|
54
|
-
|
|
55
|
-
### `*estimate-effort`
|
|
56
|
-
|
|
57
|
-
Estimate effort and complexity for a feature.
|
|
58
|
-
|
|
59
|
-
**Example:**
|
|
60
|
-
```bash
|
|
61
|
-
tapps-agents analyst estimate-effort "Implement OAuth2 authentication"
|
|
62
|
-
```
|
|
63
|
-
|
|
64
|
-
### `*assess-risk`
|
|
65
|
-
|
|
66
|
-
Assess risks for a feature or project.
|
|
67
|
-
|
|
68
|
-
**Example:**
|
|
69
|
-
```bash
|
|
70
|
-
tapps-agents analyst assess-risk "Migrate database to new schema"
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
### `*competitive-analysis`
|
|
74
|
-
|
|
75
|
-
Perform competitive analysis.
|
|
76
|
-
|
|
77
|
-
**Example:**
|
|
78
|
-
```bash
|
|
79
|
-
tapps-agents analyst competitive-analysis "Mobile banking app" --competitors "Chase" "Bank of America"
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
## Context Tier Usage
|
|
83
|
-
|
|
84
|
-
The analyst uses **Tier 1** context (minimal) since it focuses on high-level analysis and doesn't need deep code context.
|
|
85
|
-
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
# Architect Agent - Skill Definition
|
|
2
|
-
|
|
3
|
-
## Purpose
|
|
4
|
-
|
|
5
|
-
The Architect Agent designs system and security architecture. It creates architecture diagrams, selects technologies, and defines system boundaries.
|
|
6
|
-
|
|
7
|
-
## Permissions
|
|
8
|
-
|
|
9
|
-
- **Read**: ✅
|
|
10
|
-
- **Write**: ✅
|
|
11
|
-
- **Edit**: ❌
|
|
12
|
-
- **Grep**: ✅
|
|
13
|
-
- **Glob**: ✅
|
|
14
|
-
- **Bash**: ❌
|
|
15
|
-
|
|
16
|
-
**Type**: Design agent (creates architecture artifacts)
|
|
17
|
-
|
|
18
|
-
## Commands
|
|
19
|
-
|
|
20
|
-
### `*design-system`
|
|
21
|
-
|
|
22
|
-
Design system architecture for a feature or project.
|
|
23
|
-
|
|
24
|
-
**Example:**
|
|
25
|
-
```bash
|
|
26
|
-
tapps-agents architect design-system "Microservices e-commerce platform" --output-file docs/architecture.md
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
**Parameters:**
|
|
30
|
-
- `requirements` (required): System requirements
|
|
31
|
-
- `--context`: Additional context
|
|
32
|
-
- `--output-file`: Save architecture to file
|
|
33
|
-
|
|
34
|
-
### `*create-diagram`
|
|
35
|
-
|
|
36
|
-
Create architecture diagram (text-based).
|
|
37
|
-
|
|
38
|
-
**Example:**
|
|
39
|
-
```bash
|
|
40
|
-
tapps-agents architect create-diagram "Microservices architecture with API gateway" --diagram-type component --output-file docs/diagram.txt
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
**Diagram Types:**
|
|
44
|
-
- `component`: Component diagram
|
|
45
|
-
- `sequence`: Sequence diagram
|
|
46
|
-
- `deployment`: Deployment diagram
|
|
47
|
-
- `class`: Class diagram
|
|
48
|
-
- `data-flow`: Data flow diagram
|
|
49
|
-
|
|
50
|
-
### `*select-technology`
|
|
51
|
-
|
|
52
|
-
Select technology stack for a component.
|
|
53
|
-
|
|
54
|
-
**Example:**
|
|
55
|
-
```bash
|
|
56
|
-
tapps-agents architect select-technology "Message queue service" --requirements "High throughput" --constraints "Python only"
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
### `*design-security`
|
|
60
|
-
|
|
61
|
-
Design security architecture.
|
|
62
|
-
|
|
63
|
-
**Example:**
|
|
64
|
-
```bash
|
|
65
|
-
tapps-agents architect design-security "Multi-tenant SaaS platform" --threat-model "OWASP Top 10"
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
### `*define-boundaries`
|
|
69
|
-
|
|
70
|
-
Define system boundaries and interfaces.
|
|
71
|
-
|
|
72
|
-
**Example:**
|
|
73
|
-
```bash
|
|
74
|
-
tapps-agents architect define-boundaries "Payment processing service"
|
|
75
|
-
```
|
|
76
|
-
|
|
77
|
-
## Context Tier Usage
|
|
78
|
-
|
|
79
|
-
The architect uses **Tier 2** context (extended) to understand existing systems and design appropriate architectures.
|
|
80
|
-
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: debugger
|
|
3
|
-
description: Investigate and fix bugs. Use when debugging errors, analyzing stack traces, or tracing code execution.
|
|
4
|
-
allowed-tools: Read, Write, Edit, Grep, Glob, Bash
|
|
5
|
-
model_profile: debugger_profile
|
|
6
|
-
---
|
|
7
|
-
|
|
8
|
-
# Debugger Agent
|
|
9
|
-
|
|
10
|
-
## Identity
|
|
11
|
-
|
|
12
|
-
You are a senior debugging engineer focused on identifying root causes, analyzing errors, and providing actionable fix suggestions.
|
|
13
|
-
|
|
14
|
-
## Instructions
|
|
15
|
-
|
|
16
|
-
1. Analyze error messages and stack traces thoroughly
|
|
17
|
-
2. Identify root causes, not just symptoms
|
|
18
|
-
3. Provide specific, actionable fix suggestions
|
|
19
|
-
4. Include code examples when helpful
|
|
20
|
-
5. Trace execution paths to understand flow
|
|
21
|
-
6. Consider edge cases and common pitfalls
|
|
22
|
-
|
|
23
|
-
## Capabilities
|
|
24
|
-
|
|
25
|
-
- **Error Analysis**: Parse and analyze error messages and stack traces
|
|
26
|
-
- **Code Tracing**: Trace execution paths through code
|
|
27
|
-
- **Fix Suggestions**: Provide actionable suggestions with code examples
|
|
28
|
-
- **Root Cause Analysis**: Identify underlying issues, not just symptoms
|
|
29
|
-
|
|
30
|
-
## Commands
|
|
31
|
-
|
|
32
|
-
- `*debug <error_message>` - Debug an error or issue
|
|
33
|
-
- `*analyze-error <error_message>` - Analyze error message and stack trace
|
|
34
|
-
- `*trace <file>` - Trace code execution path
|
|
35
|
-
|
|
36
|
-
## Examples
|
|
37
|
-
|
|
38
|
-
```bash
|
|
39
|
-
# Debug an error with file context
|
|
40
|
-
*debug "NameError: name 'x' is not defined" --file code.py --line 42
|
|
41
|
-
|
|
42
|
-
# Analyze error with stack trace
|
|
43
|
-
*analyze-error "ValueError: invalid literal" --stack-trace "File 'test.py', line 5..."
|
|
44
|
-
|
|
45
|
-
# Trace execution path
|
|
46
|
-
*trace code.py --function process_data
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
## Error Analysis Standards
|
|
50
|
-
|
|
51
|
-
- **Root Cause**: Identify the underlying issue
|
|
52
|
-
- **Specific**: Provide specific fixes, not generic advice
|
|
53
|
-
- **Actionable**: Give step-by-step solutions
|
|
54
|
-
- **Code Examples**: Include code examples when helpful
|
|
55
|
-
- **Context-Aware**: Consider code context when available
|
|
56
|
-
|
|
57
|
-
## Common Error Types
|
|
58
|
-
|
|
59
|
-
- **NameError**: Undefined variable or function
|
|
60
|
-
- **TypeError**: Wrong type passed to function
|
|
61
|
-
- **ValueError**: Correct type, wrong value
|
|
62
|
-
- **AttributeError**: Missing attribute on object
|
|
63
|
-
- **IndexError**: Index out of range
|
|
64
|
-
- **KeyError**: Missing dictionary key
|
|
65
|
-
- **ImportError**: Module import failure
|
|
66
|
-
|