tapps-agents 3.5.38__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/cleanup/__init__.py +7 -0
- tapps_agents/agents/cleanup/agent.py +445 -0
- tapps_agents/agents/enhancer/agent.py +2 -2
- 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/cleanup_agent.py +92 -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 +15 -2
- tapps_agents/cli/parsers/cleanup_agent.py +228 -0
- tapps_agents/cli/parsers/top_level.py +1978 -1881
- tapps_agents/core/config.py +43 -0
- tapps_agents/core/init_project.py +3012 -2896
- 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 +723 -723
- 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/enforcer.py +36 -23
- tapps_agents/workflow/message_formatter.py +188 -0
- tapps_agents/workflow/parallel_executor.py +43 -4
- tapps_agents/workflow/parser.py +375 -357
- tapps_agents/workflow/rules_generator.py +337 -331
- tapps_agents/workflow/skill_invoker.py +9 -3
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/METADATA +9 -5
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/RECORD +62 -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.38.dist-info → tapps_agents-3.5.40.dist-info}/WHEEL +0 -0
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/entry_points.txt +0 -0
- {tapps_agents-3.5.38.dist-info → tapps_agents-3.5.40.dist-info}/licenses/LICENSE +0 -0
- {tapps_agents-3.5.38.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
|
|
@@ -57,7 +57,7 @@ Dynamic: license-file
|
|
|
57
57
|
[](https://www.python.org/downloads/)
|
|
58
58
|
[](LICENSE)
|
|
59
59
|
[](README.md)
|
|
60
|
-
[](CHANGELOG.md)
|
|
61
61
|
|
|
62
62
|
**A specification framework for defining, configuring, and orchestrating coding agents.**
|
|
63
63
|
|
|
@@ -118,7 +118,7 @@ If you're using **Cursor IDE**, get started quickly:
|
|
|
118
118
|
# Install from PyPI (clean install, framework code only)
|
|
119
119
|
pip install tapps-agents
|
|
120
120
|
# or specific version:
|
|
121
|
-
pip install tapps-agents==3.5.
|
|
121
|
+
pip install tapps-agents==3.5.39
|
|
122
122
|
```
|
|
123
123
|
**Windows:** If `tapps-agents` is not found after install (user Scripts often not on PATH), use a project venv or run `python -m tapps_agents.cli` instead. See [Troubleshooting CLI installation](docs/TROUBLESHOOTING_CLI_INSTALLATION.md).
|
|
124
124
|
|
|
@@ -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):
|
|
@@ -280,7 +284,7 @@ See [Demo Plan](docs/DEMO_PLAN.md) for complete demo scenarios and instructions.
|
|
|
280
284
|
|
|
281
285
|
## Current Status
|
|
282
286
|
|
|
283
|
-
**Version** 3.5.
|
|
287
|
+
**Version** 3.5.39 · **Production ready** · All 7 Cursor AI integration phases complete · YAML-first architecture (Epics 6–10) · 14 workflow agents + Simple Mode · 16 built-in experts.
|
|
284
288
|
|
|
285
289
|
📋 [Changelog](CHANGELOG.md) · [Cursor AI Integration Plan](docs/CURSOR_AI_INTEGRATION_PLAN_2025.md) · [YAML Workflow Design](docs/YAML_WORKFLOW_ARCHITECTURE_DESIGN.md)
|
|
286
290
|
|
|
@@ -626,7 +630,7 @@ See [Release Guide](docs/operations/RELEASE_GUIDE.md) for complete release proce
|
|
|
626
630
|
## Status
|
|
627
631
|
|
|
628
632
|
**Phase**: ✅ **All 7 Phases Complete - Cursor AI Integration Plan 2025**
|
|
629
|
-
**Version**: 3.5.
|
|
633
|
+
**Version**: 3.5.39
|
|
630
634
|
**Last Updated**: January 2026
|
|
631
635
|
**Cursor AI Integration**: ✅ Complete (Phases 1-7)
|
|
632
636
|
**Dependencies**: ✅ Updated to latest 2025 stable versions (pytest 9.x, ruff 0.14.8, mypy 1.19.0, etc.)
|
|
@@ -1,29 +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
|
-
tapps_agents/agents/
|
|
8
|
+
tapps_agents/agents/cleanup/__init__.py,sha256=1YoZ2SpX6fOun5F0RAEMMyCUeUXxgcdDXpm_L1qx1O4,131
|
|
9
|
+
tapps_agents/agents/cleanup/agent.py,sha256=OzrRyjaKDiuiC_ryJQpUnc9gcPcDg6qY8scSZbnWnno,17178
|
|
11
10
|
tapps_agents/agents/debugger/__init__.py,sha256=SY-6_cbvKpFSN3E3FJ0de_Tfj8VA2b95T_s39LMDkZU,130
|
|
12
11
|
tapps_agents/agents/debugger/agent.py,sha256=hTxNoAjcHVv7sIQhDJHm3uDkJzk6oy1aYfxxbToiXJM,11900
|
|
13
12
|
tapps_agents/agents/debugger/error_analyzer.py,sha256=_2RRD5Kb7y_ak1SWoLnnqZExzYcbYUB9NmyfsDfpioM,18099
|
|
14
|
-
tapps_agents/agents/designer/SKILL.md,sha256=118p2JCp2FtkzlYP041HBpPYXqA4FPvIrTzvQbvODIY,1883
|
|
15
13
|
tapps_agents/agents/designer/__init__.py,sha256=oJ2CKxUabNNviUmRmnV0m8_JkFyjZNpvQRetx9TJRTA,141
|
|
16
14
|
tapps_agents/agents/designer/agent.py,sha256=LTfsUD73H84xWx528lQtAr_JAAnupJc4hWXSZ7MZAu0,32112
|
|
17
15
|
tapps_agents/agents/designer/visual_designer.py,sha256=I9H2ZZrfptwpegDRFbP6QaszT2xydlbTaJMARhjmMEg,23209
|
|
18
|
-
tapps_agents/agents/documenter/SKILL.md,sha256=l5rHTv4zuOqXfO4m1bb1DUtbLwB1dG8TYwotZqdoIU4,2336
|
|
19
16
|
tapps_agents/agents/documenter/__init__.py,sha256=28ooCfh8Xaey2w8wGPiTKQzOQkiVj_ZYsSQzY5RAEMc,125
|
|
20
17
|
tapps_agents/agents/documenter/agent.py,sha256=LHmTweCIMdDWTej6EOkFM1FM6RVkbjNBxgCcBue0HHk,22340
|
|
21
18
|
tapps_agents/agents/documenter/doc_generator.py,sha256=A9HyMFAhX0J_9frkAH0AiPBrL2LA2XF1uVNIlvDrOKA,17841
|
|
22
19
|
tapps_agents/agents/documenter/doc_validator.py,sha256=3nTEujC5-JQQaeK-e8qWpHOM6ijTjGYIo5GV0Mo4o2U,14389
|
|
23
20
|
tapps_agents/agents/documenter/framework_doc_updater.py,sha256=LhxhY5aDP_6yGsWUWkuK43jPDCOPdQ446k7x-C3YA_k,18438
|
|
24
|
-
tapps_agents/agents/enhancer/SKILL.md,sha256=HG_AYw8UYCcGj1vcXpXX0KGNkV7G0nRBD8ASzgVU8Hw,5661
|
|
25
21
|
tapps_agents/agents/enhancer/__init__.py,sha256=BT1vH1rkV2tsry9eBtI3U0EXEMWZB3ptGSTECKlcOcY,122
|
|
26
|
-
tapps_agents/agents/enhancer/agent.py,sha256=
|
|
22
|
+
tapps_agents/agents/enhancer/agent.py,sha256=GQrz0AiVaiwsLFfzr4CC8A0sn1hkOrYpkcIZS7pWYDw,119076
|
|
27
23
|
tapps_agents/agents/evaluator/__init__.py,sha256=gGBp4fg8o33yQppF-G8139mOH3VrhFumVslMaecyOOs,151
|
|
28
24
|
tapps_agents/agents/evaluator/agent.py,sha256=djcsFQ5XM8FKgDU0OZdXj4VOxt2d9Uj90HSR0PgdFiQ,16092
|
|
29
25
|
tapps_agents/agents/evaluator/priority_evaluator.py,sha256=Wa9FobcOqPzbMVgVEPgkFrWDq6LItAF8Fe-j9WHgYw8,22948
|
|
@@ -31,27 +27,22 @@ tapps_agents/agents/evaluator/quality_analyzer.py,sha256=3shvSZqLf_fJf9ErzJveMgG
|
|
|
31
27
|
tapps_agents/agents/evaluator/report_generator.py,sha256=51DDOXHFvWSzIiA4e9QfPG6jHu6qQ07aunz21cfCGSo,13594
|
|
32
28
|
tapps_agents/agents/evaluator/usage_analyzer.py,sha256=8bEYE_-iUl8M9msl77C1DtW-1VCDQMcPRx92Qs3efi0,6842
|
|
33
29
|
tapps_agents/agents/evaluator/workflow_analyzer.py,sha256=1hHTwIbjc_308bVUtGYEFDb3XD0J4Rqq-TX-LTqvGD0,7099
|
|
34
|
-
tapps_agents/agents/implementer/SKILL.md,sha256=VizfTijOwNTyyCVbppSW_Pcr-B1q0lyVEEPIm4guOB0,4148
|
|
35
30
|
tapps_agents/agents/implementer/__init__.py,sha256=CFUeZQZC__nV-V8MvF6nDg11sXhNFUbj5Q9OuMqLrc8,141
|
|
36
|
-
tapps_agents/agents/implementer/agent.py,sha256=
|
|
31
|
+
tapps_agents/agents/implementer/agent.py,sha256=1srh5qt8zXERgjTyubwU9X---SGUUMmuQk2br3ZPE98,32178
|
|
37
32
|
tapps_agents/agents/implementer/auto_fix.py,sha256=M_OgtttKHmCy3Oy65NoPXRFyor-he9S_DZulqwnTvR4,37607
|
|
38
33
|
tapps_agents/agents/implementer/code_generator.py,sha256=xdzoD0jP815bTzI4lrjv55RNEKE1yZCopUorz0sy4wQ,2532
|
|
39
|
-
tapps_agents/agents/improver/SKILL.md,sha256=D84Z2uDaN4qc0kwVNTEI_w0JBtv-XPpvTMQ3qb5H8Cg,2630
|
|
40
34
|
tapps_agents/agents/improver/__init__.py,sha256=jQkAcemMDJtLZ2bPfTHBfnU8kBPpINAakKQalXHk9BY,51
|
|
41
35
|
tapps_agents/agents/improver/agent.py,sha256=vGsNiXDEPRyyiRaiupM2laGjaYvThd6Zd5Ipv4aEBSo,30153
|
|
42
|
-
tapps_agents/agents/ops/SKILL.md,sha256=xiUP43E8muf_kO6sZNbEVdlL8aAi-6_sSuqqoY2YXTk,3162
|
|
43
36
|
tapps_agents/agents/ops/__init__.py,sha256=tuo9GY4-_oOkFE_JKNJPBttMWE2ihTkqnaaFnNJvjyg,41
|
|
44
37
|
tapps_agents/agents/ops/agent.py,sha256=Z_WrkXvj3rVjNXN0C4K8q2OsoF8biFqI4apa98HFguA,23719
|
|
45
38
|
tapps_agents/agents/ops/dependency_analyzer.py,sha256=KndVDs7Y9PgRePTL1zr0mmkos7wxhfx_tI8u48jZgj0,24275
|
|
46
|
-
tapps_agents/agents/orchestrator/SKILL.md,sha256=WBNpp54V3aaVmmGPgMbvwoeAxwyp1u6NdT9qo7hmJBw,5602
|
|
47
39
|
tapps_agents/agents/orchestrator/__init__.py,sha256=FZCI_1V1wojH0FneXk-kKPPf1ZS1XOWYdoFCb8H0XPE,145
|
|
48
40
|
tapps_agents/agents/orchestrator/agent.py,sha256=G7Byg1D7GyRRnXprLt6PdHOrKUvyAzPlAkpRFZngI_k,21070
|
|
49
41
|
tapps_agents/agents/planner/__init__.py,sha256=_LzUY-GHe7Lg7PZtiZ8p-9UhH7xUoOizmZb7SAvx1nc,133
|
|
50
42
|
tapps_agents/agents/planner/agent.py,sha256=5ogYzmo7e1onlSknJsPVgTI2Ou5P0nGr9-4yrqmjTBU,42787
|
|
51
|
-
tapps_agents/agents/planner/story_template.md,sha256=Ccvjfhqwr0v0oMKFDkKj2dpC0geQAuQoaAjVIsSqYP4,620
|
|
52
43
|
tapps_agents/agents/reviewer/__init__.py,sha256=SX3AS69TRG_gn-8TwZ9B45kFs3jTTLhwwG7bwO5zmjI,559
|
|
53
44
|
tapps_agents/agents/reviewer/adaptive_scorer.py,sha256=IGqPTGkmxg6ed9ORa9bxYYmhcbkWzTgWCEwjgHyNM7o,4788
|
|
54
|
-
tapps_agents/agents/reviewer/agent.py,sha256=
|
|
45
|
+
tapps_agents/agents/reviewer/agent.py,sha256=VBnPTUVReH2L7G4Lw3bhwMe6kFnR6uwu-CIkwQiAw8Q,159163
|
|
55
46
|
tapps_agents/agents/reviewer/aggregator.py,sha256=_vXTvbmJPk6noWcIVvhOSUKu8qxeSy8OnwY9wTsaSxE,7475
|
|
56
47
|
tapps_agents/agents/reviewer/batch_review.py,sha256=OHLkGqkU68X0eZzW3kscKKG0EY4k1G_bEwEL2kh2ucE,16717
|
|
57
48
|
tapps_agents/agents/reviewer/cache.py,sha256=LSmUfrTZgtwEKVFYd9tfEMF-r8eLtDcIn9VZjqe6ieI,15310
|
|
@@ -78,15 +69,15 @@ tapps_agents/agents/reviewer/report_generator.py,sha256=gVx8sLZj7UGzHnXTDqMI5sKG
|
|
|
78
69
|
tapps_agents/agents/reviewer/score_constants.py,sha256=A1DSz-IEQpIqCWX3C9Zao0jVhgY08PbVoaPXdjMTAbY,7828
|
|
79
70
|
tapps_agents/agents/reviewer/score_validator.py,sha256=Pl3Qr6XZZ0eOmtpTvjUCgWUroGrb2cCMHcIXRHrWCwg,22038
|
|
80
71
|
tapps_agents/agents/reviewer/scorer_registry.py,sha256=16JrhqfFjphoiOiBVmKMmWqPB2DpraUt5sKwLToJlVE,14095
|
|
81
|
-
tapps_agents/agents/reviewer/scoring.py,sha256=
|
|
72
|
+
tapps_agents/agents/reviewer/scoring.py,sha256=4Ccos31UuLbWlJSb8fr9k0FnTEa4y4R2p1qxe4KUm-U,62650
|
|
82
73
|
tapps_agents/agents/reviewer/service_discovery.py,sha256=S5k83CzN8Q-F3bIgfAXRjLy0LegRLn_3et8hs9qrxfY,18983
|
|
83
74
|
tapps_agents/agents/reviewer/typescript_scorer.py,sha256=IHk_cSGrCCnM0oZ2Dx5GaATyjDLOZUhUn5_EHmNha6Y,45648
|
|
84
75
|
tapps_agents/agents/reviewer/validation.py,sha256=xwXRt8wFd43OyHTFej2n944MK4rdqlnVyqZcMbpo6AI,6154
|
|
85
76
|
tapps_agents/agents/reviewer/websocket_validator.py,sha256=9AWyBRU-y55ns4SJs2TkpLxvXt_PM--5AV2OnustTQY,4539
|
|
86
|
-
tapps_agents/agents/reviewer/
|
|
87
|
-
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
|
|
88
78
|
tapps_agents/agents/reviewer/tools/parallel_executor.py,sha256=uDxuJZv5wzE7kUoKLwYKwS_jwen1gFTAeQrfnVEbtVg,19345
|
|
89
|
-
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
|
|
90
81
|
tapps_agents/agents/tester/__init__.py,sha256=w4C2m6HnMbAadVZJZhqUzJih09NWqZvdeQ2F67hsCTQ,114
|
|
91
82
|
tapps_agents/agents/tester/accessibility_auditor.py,sha256=y8Snsd-pX4PpxbtCSNcpIlpUbZHS5qgHn4t9wM32h0A,12127
|
|
92
83
|
tapps_agents/agents/tester/agent.py,sha256=SE_fm_QTrrbYt38oCef_f0zhCTU62x05kjFBPVBoae8,46613
|
|
@@ -104,16 +95,18 @@ tapps_agents/agents/tester/test_generator.py,sha256=5AxKPKBhcO9yGGh23gscCERUxp_0
|
|
|
104
95
|
tapps_agents/agents/tester/trace_manager.py,sha256=lAqwU_dPaWqTmXD8esPr-NanTyrOegiam-LM8RpyCrw,7372
|
|
105
96
|
tapps_agents/agents/tester/visual_regression.py,sha256=8TXfYIZD8OL3cF6hm20N123-Cuo_HCoHCdGxKsHREug,9548
|
|
106
97
|
tapps_agents/analysis/pattern_detector.py,sha256=ph3jb6pQwUYGMpgJpRm3x66ywmfv89l4LJhhQ4UByF8,813
|
|
107
|
-
tapps_agents/beads/__init__.py,sha256=
|
|
98
|
+
tapps_agents/beads/__init__.py,sha256=XaWHzRJFVy_r1XVxZNTFlVCD-TuOLAsIdYt-H96_Zko,867
|
|
108
99
|
tapps_agents/beads/client.py,sha256=ApltiDkxWjtMT14t0KU3c3GdqFm2qYXXQ3shebe74Cg,4255
|
|
100
|
+
tapps_agents/beads/hydration.py,sha256=s5l_LCw4zNxa17gPdQlhnZZfIZei6OMCE-mwFSKaaII,7485
|
|
109
101
|
tapps_agents/beads/parse.py,sha256=_KGVvYdH8cQhF7fLA52PkC-A8cGksXmx02r6AQlXfHI,1003
|
|
102
|
+
tapps_agents/beads/specs.py,sha256=dPg9-WUA5r2iX3Zkx_4vNdREsNkLJPJvhbhyafbdo0E,6635
|
|
110
103
|
tapps_agents/cli/__init__.py,sha256=T9HjgIk2JDrXmQBLD_1JYc9RJAETw85qwmUTMdDg9Ig,139
|
|
111
104
|
tapps_agents/cli/__main__.py,sha256=-jPOZPcfNrnAEEdP0igvZ9_-yH_SXpbdPMDP6IZ6lqQ,133
|
|
112
105
|
tapps_agents/cli/base.py,sha256=1XoAc2v6zh0kZoDuf-2vPEQlUVGzWoFZZT8cxgblklw,17385
|
|
113
106
|
tapps_agents/cli/command_classifier.py,sha256=PesY18-Trn53OBktVPWmq6ddxAkz1EJ4mkYyEy9rpf8,2430
|
|
114
107
|
tapps_agents/cli/feedback.py,sha256=bhq37Iqocu9DLa-XOoZIH2K8nHCOzKdzeoFnQKC2D0M,36652
|
|
115
108
|
tapps_agents/cli/formatters.py,sha256=6O7CmMj3CA9KAVoNvUrX2nbswIqBnfmEexi4pCHUTDI,23207
|
|
116
|
-
tapps_agents/cli/main.py,sha256=
|
|
109
|
+
tapps_agents/cli/main.py,sha256=gpfi3M676iy5sk_6mToH6bo_5qziBd5c-ROs6zs5_jY,23572
|
|
117
110
|
tapps_agents/cli/network_detection.py,sha256=ZoSEqO2ro_HGQqGC6utBDKJypQlsihzXv9C_gZte-6A,3811
|
|
118
111
|
tapps_agents/cli/output_compactor.py,sha256=x5tkcIIFVnrKmtdo7PE0R-C84LWr4Agd2ulO1xclhRI,8979
|
|
119
112
|
tapps_agents/cli/progress_heartbeat.py,sha256=3CvT5El-9KbaImPdTp-IKPrUsRGw-2j1zi1PNWaGwIk,8549
|
|
@@ -121,13 +114,14 @@ tapps_agents/cli/streaming_progress.py,sha256=bp9rQShwjGdGtyfcL4mzQY-n14qZyhYONY
|
|
|
121
114
|
tapps_agents/cli/commands/__init__.py,sha256=uQOwkQLQqkjWydOGg5ggNLCnnwnIU9wvnAvXt1PSeog,35
|
|
122
115
|
tapps_agents/cli/commands/analyst.py,sha256=Vot2o3E1DrcoFD5BjeqvFHVMP9WbWu6JJ3Ld82lW2m0,8668
|
|
123
116
|
tapps_agents/cli/commands/architect.py,sha256=CYUC4FrB236EnQe0ZIqeq7VlrIDUfO91NQrcfOZfVnI,4464
|
|
117
|
+
tapps_agents/cli/commands/cleanup_agent.py,sha256=3EEPq4dg-HwiLrah0Fq7I0RXniIAUACXbbu10R2j5YA,3358
|
|
124
118
|
tapps_agents/cli/commands/common.py,sha256=ZNujv1n1uJKIVVbKNx_Lrvhevf0E6KRK-hfO59BCBh8,3363
|
|
125
119
|
tapps_agents/cli/commands/debugger.py,sha256=PXuQkVPgNO55VAif2JjclT6mfqkuylS98KlWBHj6Ds8,3394
|
|
126
120
|
tapps_agents/cli/commands/designer.py,sha256=OlfS1LDlLMdesXhWckTilJPALRJySB402ss3uy1_2r4,4969
|
|
127
121
|
tapps_agents/cli/commands/documenter.py,sha256=o1JwCwkuH4NqL75pEqxEdsOqUOodkZYyxo64Bw0mRto,5389
|
|
128
122
|
tapps_agents/cli/commands/enhancer.py,sha256=EwrGZrAyx9muNSfj0lae-UTRo41NSauLf_kKOgJFvR8,4224
|
|
129
123
|
tapps_agents/cli/commands/evaluator.py,sha256=eLtgr0mxDvR05XvIgMmnUmW7oYx5kImaWsQXxPPFVbY,11943
|
|
130
|
-
tapps_agents/cli/commands/health.py,sha256=
|
|
124
|
+
tapps_agents/cli/commands/health.py,sha256=jrMKIMfg7q_5clw9dYGBz9SaRtlU9Kq1h3EOfcxdQkc,27599
|
|
131
125
|
tapps_agents/cli/commands/implementer.py,sha256=S90u3XFyA0MdpDZje0at_4RUtDQv0WgfqtDZBvxRlks,12991
|
|
132
126
|
tapps_agents/cli/commands/improver.py,sha256=y9UF17WapZiuGJ_JWZu8c4u9FYSku3EZq24dnvTIsmU,3399
|
|
133
127
|
tapps_agents/cli/commands/knowledge.py,sha256=LyycqdUL585guE5nVMcXDTxIkcFkSn7maLyvJj-Q6ho,3590
|
|
@@ -137,15 +131,17 @@ tapps_agents/cli/commands/ops.py,sha256=4tlDVKI8rflchkU1F95bQnPCp3Kd9ykrjuDOSWRZ
|
|
|
137
131
|
tapps_agents/cli/commands/orchestrator.py,sha256=TvZGltqYBaLMevo3hp13QiIUTTeByFQ-SsRxu8JrMNI,4791
|
|
138
132
|
tapps_agents/cli/commands/planner.py,sha256=dB43ux1hF5Z_bJImP06CpKocCRWcSGd2LG90-b0irzY,10074
|
|
139
133
|
tapps_agents/cli/commands/reviewer.py,sha256=TjuTgaQaCfaFfZfW-7Hm4X6JjUKz9vVzDodO1uA6Om4,78081
|
|
140
|
-
tapps_agents/cli/commands/simple_mode.py,sha256=
|
|
134
|
+
tapps_agents/cli/commands/simple_mode.py,sha256=JjuaaPKo0DZXOqMNyvFNNqz98sNE78EZFeMIcu77lOU,31820
|
|
141
135
|
tapps_agents/cli/commands/status.py,sha256=XrkCnxdiaieZrXExAW0_YrCDlkVGa9iRIiJ74DwP_5o,10661
|
|
136
|
+
tapps_agents/cli/commands/task.py,sha256=YQTEopFPw7QUeSHG5xe98aJUG8YNy-tEOE794Kl0Vq4,7956
|
|
142
137
|
tapps_agents/cli/commands/tester.py,sha256=ZGwSw8O6wMOx1UO5kCgmawZUccC0MBL3kvRH-7dEic4,8481
|
|
143
|
-
tapps_agents/cli/commands/top_level.py,sha256=
|
|
138
|
+
tapps_agents/cli/commands/top_level.py,sha256=dTh_rdoSiXrLgnDN04YIvlNITPnEnxoek7E8NusARho,149034
|
|
144
139
|
tapps_agents/cli/help/__init__.py,sha256=2hO-whwGhNM4efFc7fc7ihTmE5PmxFl7jaQ2H7ywUbA,147
|
|
145
140
|
tapps_agents/cli/help/static_help.py,sha256=0hFiOgLqBT-vM0yHoeY_Ea5JOg_anc_5_rPR1GX1nqs,19560
|
|
146
141
|
tapps_agents/cli/parsers/__init__.py,sha256=mtP0vrFd1P7i4V3N1B1wXKxM7ajCVLqNBul4998I5SI,35
|
|
147
142
|
tapps_agents/cli/parsers/analyst.py,sha256=6Cp2BMFAqgR9p_I8gOJ-IorgFETiE9uqJ3xvuyhZzhM,10319
|
|
148
143
|
tapps_agents/cli/parsers/architect.py,sha256=Catv0P3esfD7oN3E9bisfZ4w9ddqSwzd-faunX5r-Gs,9071
|
|
144
|
+
tapps_agents/cli/parsers/cleanup_agent.py,sha256=AVTzWEw23E_t2xm-74k4EgDDmr8ycLQeP703NdD90tw,7617
|
|
149
145
|
tapps_agents/cli/parsers/debugger.py,sha256=6GXsHh2iohUQTNvrMkQZRodI4LO5NZihJm7ICrRaG0E,6320
|
|
150
146
|
tapps_agents/cli/parsers/designer.py,sha256=UptPvtGVRRcr1-5hJJAO7yE1ren0rXJ0Mfa2pKTAyUY,9780
|
|
151
147
|
tapps_agents/cli/parsers/documenter.py,sha256=AYLdo1zYyA20xLlRU397i00oGa7p3nhjlQ2-bcNA6UI,6329
|
|
@@ -158,7 +154,7 @@ tapps_agents/cli/parsers/orchestrator.py,sha256=CNOISO4v6dAoM3xbKrx2nhyssltCrxkf
|
|
|
158
154
|
tapps_agents/cli/parsers/planner.py,sha256=1ksw1W_CVwqXWi-z4w-XuWZPgJWjVlBQ1JlANuhlPeo,7027
|
|
159
155
|
tapps_agents/cli/parsers/reviewer.py,sha256=fx7kHgGCrk7vYc4Jqxjru1JNy8buUlryUcD5qaS5ojU,19748
|
|
160
156
|
tapps_agents/cli/parsers/tester.py,sha256=FomqAGk3RCAWwtLrlXium2UH38Oxffzt6dj-vYP_I3c,6555
|
|
161
|
-
tapps_agents/cli/parsers/top_level.py,sha256=
|
|
157
|
+
tapps_agents/cli/parsers/top_level.py,sha256=lkcmUi9yoWMMMXQ5G_ttvgGLJQPE6vkSFE-f7dwvGVo,84014
|
|
162
158
|
tapps_agents/cli/utils/__init__.py,sha256=4eLPpMJhesYkbo00Eo_e3h4Lww_ZnepSKfHe25MptfI,231
|
|
163
159
|
tapps_agents/cli/utils/agent_lifecycle.py,sha256=8fHS3kT-mA5TPht5NGuWX5N4uM9104biX_ZDJNrydxc,1351
|
|
164
160
|
tapps_agents/cli/utils/error_formatter.py,sha256=8JAQMQzDZaiU0Dk_kfLTbQfeoNB1_RBz4-P-EMGi92E,2638
|
|
@@ -225,7 +221,7 @@ tapps_agents/core/cleanup_tool.py,sha256=Kj7xyfX8zXEWBEgKEAPdRI-qPCTtrwgHgwsemIm
|
|
|
225
221
|
tapps_agents/core/code_generator.py,sha256=Ma-5NWZnr4PcfFvZEFFUtn6hDzv7zAOVaZrTwmRiOrU,9881
|
|
226
222
|
tapps_agents/core/code_validator.py,sha256=SoP_zUBTzWEhfSuFNjawk_R6ytcgjJ8VClfCSILLKFE,8953
|
|
227
223
|
tapps_agents/core/command_registry.py,sha256=Re07pBBjwtilp9kaXn5Qxdjp01liT5pj1S7KUsXwQIg,10192
|
|
228
|
-
tapps_agents/core/config.py,sha256=
|
|
224
|
+
tapps_agents/core/config.py,sha256=2kCKCXb06MIr1avlkAEQPwD07dJWFd0z45WGjjQ0HOU,56291
|
|
229
225
|
tapps_agents/core/context_manager.py,sha256=UCftn4UnGt6xf_LErC8Ty5fWP2u6mcyv5tqvoLvfK5s,8184
|
|
230
226
|
tapps_agents/core/cursor_feedback_monitor.py,sha256=p0Ow-wktUyK745MKQwt9E7rWoelV9WacQ5HWk3iRQGM,5073
|
|
231
227
|
tapps_agents/core/cursor_verification.py,sha256=kLMshs5E0-W-13rwT3TnNQ-YIjmW6v7AHI6kkiaBc7M,9905
|
|
@@ -256,7 +252,7 @@ tapps_agents/core/feedback_analyzer.py,sha256=BZbqS53fVbaPdeRjw1Yw286mJrsY88yDYq
|
|
|
256
252
|
tapps_agents/core/feedback_collector.py,sha256=ynpkMWeOFyhuFC6goOdT29QRwd4kiVWgfd5ny9Mmczc,6218
|
|
257
253
|
tapps_agents/core/git_operations.py,sha256=rzqNTAj_XhnTtegxjXXZNpGeocL5LNM5DUWFNUp1les,14272
|
|
258
254
|
tapps_agents/core/hardware_profiler.py,sha256=OMram3JZkvdqRNSHvIAweHNuX_1Oy86jDCUldsVm8yw,4312
|
|
259
|
-
tapps_agents/core/init_project.py,sha256=
|
|
255
|
+
tapps_agents/core/init_project.py,sha256=1VlaJlFcrxLPWm6DKYnJMXfYOUdPaSxQM6O5Ja-8Rmc,118099
|
|
260
256
|
tapps_agents/core/instructions.py,sha256=eMleDK9k5NFTQT3Aj_DgsiWt5Gj4GQjSq83bJUgiVhU,13044
|
|
261
257
|
tapps_agents/core/io_guardrails.py,sha256=X178WGZP1Ut8UU1Ox08pXBhfTHtN_etum5WgRjvLUrk,2206
|
|
262
258
|
tapps_agents/core/issue_manifest.py,sha256=NqwReBKfNp1ChiYvFkbVvD7_w47-RrssPIZo6NenFrc,10020
|
|
@@ -370,11 +366,12 @@ tapps_agents/docker/debugger.py,sha256=rzXTH_isr27EyglUZveKeM34iqxgiNiof7QGB6UDK
|
|
|
370
366
|
tapps_agents/docker/error_patterns.py,sha256=7MmW0kj3VLZFQlLNwt-7d1Xn4w7a6XKjItc61dUDe5Q,7089
|
|
371
367
|
tapps_agents/epic/__init__.py,sha256=QLHpM8mjraUnrip_KNLBU1_tYeyq_ewmXM70rJ7951Y,521
|
|
372
368
|
tapps_agents/epic/beads_sync.py,sha256=gfTUjqfI4lsukS9mFfCmeO-LO8VUezCq77FweJvVlKY,4303
|
|
369
|
+
tapps_agents/epic/markdown_sync.py,sha256=0bWf0N_zrhYQJSvqnpj9rQna1M-zGIXaCSky5NxEzn8,4030
|
|
373
370
|
tapps_agents/epic/models.py,sha256=JDQz0g9LrvS3qUURazIp2oaXq3fHVKOEmGHxJdJKhoA,3015
|
|
374
|
-
tapps_agents/epic/orchestrator.py,sha256=
|
|
375
|
-
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
|
|
376
373
|
tapps_agents/experts/__init__.py,sha256=yJtNPYJVWoGBfcXsPOLNZ66UdBP0fFzc_TwbdlPxmPM,4850
|
|
377
|
-
tapps_agents/experts/adaptive_domain_detector.py,sha256=
|
|
374
|
+
tapps_agents/experts/adaptive_domain_detector.py,sha256=hfIGsgM0lwfmlogyNboXiLQY9zvXg-4vC_8_F6OvZR4,12959
|
|
378
375
|
tapps_agents/experts/adaptive_voting.py,sha256=xHhUq62sjXquFn3_9Qd3I-kPpFbKbirjntMc4SLv4wg,9545
|
|
379
376
|
tapps_agents/experts/agent_integration.py,sha256=ajBMZ4yUiZfXYI6rjevDURcSfjTdCEMlXldefOy6cXE,8873
|
|
380
377
|
tapps_agents/experts/auto_generator.py,sha256=J_gQXG4jWgqB_7rYgaPYHNRIB2I6QyJkqr2YJAKkZjY,11699
|
|
@@ -433,11 +430,11 @@ tapps_agents/experts/knowledge/ai-frameworks/agent-orchestration-patterns.md,sha
|
|
|
433
430
|
tapps_agents/experts/knowledge/ai-frameworks/model-optimization.md,sha256=gujaIUo794yDOzSgwy45QHRr1g-PMzWoSfpeWePRipM,2162
|
|
434
431
|
tapps_agents/experts/knowledge/ai-frameworks/openvino-patterns.md,sha256=QibfG2-r0t_euib-2fBcvVH3z50nWp-3_HKbuVAS6s8,6756
|
|
435
432
|
tapps_agents/experts/knowledge/api-design-integration/api-gateway-patterns.md,sha256=X1dHOu6dXsM399SJ6Gk3_IZ-aRceL2wGwtGun70GsFs,7148
|
|
436
|
-
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
|
|
437
434
|
tapps_agents/experts/knowledge/api-design-integration/api-versioning.md,sha256=AvgPN04ERT8Zpv5manm36ecxFe64nhFqJyT2s3CVQXY,8805
|
|
438
435
|
tapps_agents/experts/knowledge/api-design-integration/async-protocol-patterns.md,sha256=HCLhXetoqUWVB079E0QTd23sduNhlPfkvJ03cV5QJnA,1567
|
|
439
436
|
tapps_agents/experts/knowledge/api-design-integration/contract-testing.md,sha256=ahpdBJGafHzl0PFh6aczaM5mzo7zgb1Dlizbr0_aIAE,5416
|
|
440
|
-
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
|
|
441
438
|
tapps_agents/experts/knowledge/api-design-integration/fastapi-patterns.md,sha256=ZqTE8kwQMtKsTircpCBkq4V0ZSfmT_Mw-ANuRZ8AWyE,8596
|
|
442
439
|
tapps_agents/experts/knowledge/api-design-integration/fastapi-testing.md,sha256=Uz-qQR7qVsNduO_flGX1X4ih09VNRJaO0805H9hHvfA,5917
|
|
443
440
|
tapps_agents/experts/knowledge/api-design-integration/graphql-patterns.md,sha256=UrvONnl3LJmazOUXm2rgcMXAzxm9Wj1n0EI0neosBx4,10123
|
|
@@ -539,7 +536,7 @@ tapps_agents/health/base.py,sha256=1R7V1a7hCKFkJ2DUuc4SAcHXgPZELaHhwCJhhdElcoo,1
|
|
|
539
536
|
tapps_agents/health/collector.py,sha256=yTLBaqgvP7BFGo98Btaxb6MKaMOBym9jOBWNY8SPzsA,9582
|
|
540
537
|
tapps_agents/health/dashboard.py,sha256=mCaERCimQimKyPCcIbxsMyAk86XXjz5NDDJDk67LRDE,4433
|
|
541
538
|
tapps_agents/health/metrics.py,sha256=i8oKjD44UP4q_CCgH3niuppDlwx9Xbs9_h05KOkQwXw,4670
|
|
542
|
-
tapps_agents/health/orchestrator.py,sha256=
|
|
539
|
+
tapps_agents/health/orchestrator.py,sha256=C35YWZLRbdaHMFCtps7O7mlPibsDk1WNwXoKfZd_s-A,10107
|
|
543
540
|
tapps_agents/health/registry.py,sha256=ZBY7iuZJz3BXC9-eOPyxUQUOUWSQpx8TksBVZ1ObDSw,4882
|
|
544
541
|
tapps_agents/health/checks/__init__.py,sha256=7pPbZULDePvdnM9Vc2zARBGLhSlyMqtVRt9x9Lc4bJs,600
|
|
545
542
|
tapps_agents/health/checks/automation.py,sha256=BFel3D9VcXKTP5twZwhBQexCtxMjyQuhlJYuUdCP-9A,4950
|
|
@@ -547,7 +544,15 @@ tapps_agents/health/checks/context7_cache.py,sha256=5nlpB52nJraeLwzcPNhHLdTdjxQo
|
|
|
547
544
|
tapps_agents/health/checks/environment.py,sha256=DvTB_IxxNzJZ2YnHIURWVSBMo9MS1BiDmZExLpPAljk,4122
|
|
548
545
|
tapps_agents/health/checks/execution.py,sha256=urqZtXENyZPTd5jOo-EufSW1irYlQMD8KI4PLpSLLr8,6881
|
|
549
546
|
tapps_agents/health/checks/knowledge_base.py,sha256=e86NaPnRA_0LpfNvqcrBUt0jHs9Lzg5nxJeeP2efkHg,7318
|
|
550
|
-
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
|
|
551
556
|
tapps_agents/integration/__init__.py,sha256=yWNId0-cg6NKkrjw4pYlRiS6IWYcGLKUb36_PT4iIE0,132
|
|
552
557
|
tapps_agents/integration/service_integrator.py,sha256=7tIiT8J62XQUB7DFXUx2mJiTzEu2xXPrzz0Q_TglkhE,4012
|
|
553
558
|
tapps_agents/integrations/__init__.py,sha256=UbOmMwyHrjhHB4zhSX5g37FrIO_yz2TZ59UkyvqaQMc,246
|
|
@@ -573,16 +578,19 @@ tapps_agents/quality/gates/exceptions.py,sha256=vBcYDtaswDskl91wdCXimDsOsYRDRo_R
|
|
|
573
578
|
tapps_agents/quality/gates/policy_gate.py,sha256=d4Pjoo4jrd42_nLjWnl5hkpzXoW0FHpiRcPGzW68YJI,7187
|
|
574
579
|
tapps_agents/quality/gates/registry.py,sha256=j2VykyYKqxUfSxUv1-JYsovrQZ7DFOOB2vx_vChRnZg,7653
|
|
575
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
|
|
576
583
|
tapps_agents/simple_mode/__init__.py,sha256=B-UzNIImDVWBRCmnlZEz1V8SQu22gslNrNPb3p4PDBA,1821
|
|
577
584
|
tapps_agents/simple_mode/agent_contracts.py,sha256=TnigBf8rKzUxeoHtz-S-58W-azyUJqHitZjGBDm3EVY,11881
|
|
578
585
|
tapps_agents/simple_mode/beads_hooks.py,sha256=58PCMg3EZvl6QnEHmUpF7Qj5cRiF3XQ3pZ0iY24EPnc,5115
|
|
579
586
|
tapps_agents/simple_mode/checkpoint_manager.py,sha256=_z2iJ2Qv6oK4lsINbcTqXWsq88BkXwYJhvhLCyKgMUo,42152
|
|
587
|
+
tapps_agents/simple_mode/code_snippet_handler.py,sha256=wnuzx0OgbUQ6SL5kDlVdpupBr7FrPA60L-NeP5U07kA,11235
|
|
580
588
|
tapps_agents/simple_mode/documentation_manager.py,sha256=udBQcQtF2eryigTz6nuQ62zLNrfrhfxLtG1Q-p9d4Ks,13336
|
|
581
589
|
tapps_agents/simple_mode/documentation_reader.py,sha256=A4RyMyIdo1M0Xf0U6PyXpdE8VK2dc9NF2Tzmj3jF-Q8,5905
|
|
582
590
|
tapps_agents/simple_mode/error_handling.py,sha256=4ncWUrFHw22TYRQRRxldxeGmcCFh_ebrHPDWeCPMRE8,10740
|
|
583
591
|
tapps_agents/simple_mode/file_inference.py,sha256=rPwb3ASqh27RYbU750HQsLHVzqSMXzN5vhGlnmp_SVg,10759
|
|
584
592
|
tapps_agents/simple_mode/framework_change_detector.py,sha256=gV4k3NSFCWtPApaYwWphxqm3GBjvcN8q7v2I04jaDJM,9796
|
|
585
|
-
tapps_agents/simple_mode/intent_parser.py,sha256=
|
|
593
|
+
tapps_agents/simple_mode/intent_parser.py,sha256=0cBBdiq0ODUwwmQkkHKKeaUDmCj6qfEIWBwsKLOMLnQ,17597
|
|
586
594
|
tapps_agents/simple_mode/learning_progression.py,sha256=5ZQm45fAen00RhxKep-q9Bo-TlxrRgebze2zSaySxDw,13538
|
|
587
595
|
tapps_agents/simple_mode/nl_handler.py,sha256=tKmYE37as1ktp26sbl_z_vZnKRuj7rNJEMINwuJbYc4,27805
|
|
588
596
|
tapps_agents/simple_mode/onboarding.py,sha256=xJ319mSnBdO5EGpWYDAEEYaE01UDrAFisM-o2Nouea0,9689
|
|
@@ -595,22 +603,22 @@ tapps_agents/simple_mode/streaming.py,sha256=faAySybvrQc0c-0Wvt37uF1zLU9f3QmXDKD
|
|
|
595
603
|
tapps_agents/simple_mode/variations.py,sha256=SfO9PTj8M88-ACLK3HkujWL3tBHYz3pccSg3ykeaEAs,2800
|
|
596
604
|
tapps_agents/simple_mode/visual_feedback.py,sha256=CJei9NhnGYRO55GBC8S4DqGK5YK9gm1mdDAUrQ1jFzo,8347
|
|
597
605
|
tapps_agents/simple_mode/workflow_selector.py,sha256=EBKpkMBeFS6WfIuRhMyTL8nnKRpj52MpnE7rpgHt0Zs,5288
|
|
598
|
-
tapps_agents/simple_mode/workflow_suggester.py,sha256=
|
|
606
|
+
tapps_agents/simple_mode/workflow_suggester.py,sha256=2KJaNyvOIk4GtENRynpkTLDBqzcg6aAZ80co3x2u7iU,23030
|
|
599
607
|
tapps_agents/simple_mode/zero_config.py,sha256=7edNF7AKiLjkzAKqOnVyUSTAu7baGBlM3QZMTNEEOug,10979
|
|
600
608
|
tapps_agents/simple_mode/formatters/__init__.py,sha256=xgAR0OZcKZiDaGLTOCCfvOI7gdBArnKyTcxVMfAE4Pc,167
|
|
601
609
|
tapps_agents/simple_mode/formatters/optimization_report_formatter.py,sha256=zthNEMZywWZMV4WYlEbk1SiqPhBsYsRVqrsQrAH3GIQ,5940
|
|
602
610
|
tapps_agents/simple_mode/metrics/__init__.py,sha256=Z_WPnbtq4sujJqLSdfxxIvpVLuLKum_kClQd-bjpXZA,172
|
|
603
611
|
tapps_agents/simple_mode/metrics/workflow_metrics_tracker.py,sha256=2mkNNIuvyJERnoIWxJ3fxSyefLocLr-qoqlgae0McDU,10685
|
|
604
612
|
tapps_agents/simple_mode/orchestrators/__init__.py,sha256=DM6TzDQ24mSJH7STMN1_47s-7nUsglfBYxj7MXZU21k,1315
|
|
605
|
-
tapps_agents/simple_mode/orchestrators/base.py,sha256=
|
|
613
|
+
tapps_agents/simple_mode/orchestrators/base.py,sha256=xpd8mIxE0i1M9H83tDzwUKRf8JIso5klsHc1XdibW2I,5852
|
|
606
614
|
tapps_agents/simple_mode/orchestrators/breakdown_orchestrator.py,sha256=ZaS8vfGPJrsT9Qfz_fRfcjkActQOjotQWbWTuqLyjXc,1790
|
|
607
615
|
tapps_agents/simple_mode/orchestrators/brownfield_orchestrator.py,sha256=m5jR5aru6U68sbgQPCuJSvSzW_-DJ6Suf4IUU8jeWBw,5149
|
|
608
|
-
tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=
|
|
616
|
+
tapps_agents/simple_mode/orchestrators/build_orchestrator.py,sha256=5Hl4rCegx_BkFBwCLzCG6CxEum0qHW2MUzODJKSRw8U,122623
|
|
609
617
|
tapps_agents/simple_mode/orchestrators/deliverable_checklist.py,sha256=IMtxpzv1UscwCHp047Kx_qIeLU7_b407-yEAvS774-k,12574
|
|
610
618
|
tapps_agents/simple_mode/orchestrators/enhance_orchestrator.py,sha256=xmcicWcUPMwDHOfm-nS_6rV62-10dPZf8etj_eNGCYg,2112
|
|
611
619
|
tapps_agents/simple_mode/orchestrators/epic_orchestrator.py,sha256=6rJ-g5R0GtsFaM90fCAhP26Ag3EKe71Cd1P-yUT0NHQ,4340
|
|
612
620
|
tapps_agents/simple_mode/orchestrators/explore_orchestrator.py,sha256=MWkGaQ1kMj5H1B5ryHZUssMjXWI3Di11U_aUgrPJldA,6764
|
|
613
|
-
tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=
|
|
621
|
+
tapps_agents/simple_mode/orchestrators/fix_orchestrator.py,sha256=sgLxSFbaGHFMFNtcuz0vHIp_lZF6-3VSWnS7VpvtyUw,33535
|
|
614
622
|
tapps_agents/simple_mode/orchestrators/plan_analysis_orchestrator.py,sha256=aR0qMtJ6jlUx1T5dhVn-_sYg9YPN0Wl7044kD7jYF40,7266
|
|
615
623
|
tapps_agents/simple_mode/orchestrators/pr_orchestrator.py,sha256=1KPEBdAE2M163rwp367qRkrTGlRM1A53qIZmfM1kR5g,8603
|
|
616
624
|
tapps_agents/simple_mode/orchestrators/refactor_orchestrator.py,sha256=bOEj9m67HqHqa2oLY4YEP5wKdN8Knk1rsds5XXGAcdk,8157
|
|
@@ -651,15 +659,15 @@ tapps_agents/workflow/confirmation_handler.py,sha256=iH6WCI08pDin5FBztzMYgRMWaO3
|
|
|
651
659
|
tapps_agents/workflow/context_analyzer.py,sha256=-Nxq8okaqQD1rTAsOtNy0BNN_AcMQweM6KCxV8S6j34,8455
|
|
652
660
|
tapps_agents/workflow/context_artifact.py,sha256=ps8sZgMXIemKNK1nADxpHfi5NQdFIVtmDMp48jDb5rI,8125
|
|
653
661
|
tapps_agents/workflow/cursor_chat.py,sha256=e_2eXbr3yFYRdnu9iYcWIsuRgubd5-R68DsJrFN9buU,3180
|
|
654
|
-
tapps_agents/workflow/cursor_executor.py,sha256=
|
|
662
|
+
tapps_agents/workflow/cursor_executor.py,sha256=9wbMDAX4k18OVdGQYvPmd8IYS6Sxt2La18Pqo8tBWjQ,93712
|
|
655
663
|
tapps_agents/workflow/cursor_skill_helper.py,sha256=QZCNCIBpwdZiP5piH9qB2l3Fseh4bMulCg8QcHyAfVA,19481
|
|
656
664
|
tapps_agents/workflow/dependency_resolver.py,sha256=f_2a0uUBADHPEgNvdOdA-tCs-qYXwKyMkbvep2mwlrI,8923
|
|
657
665
|
tapps_agents/workflow/design_artifact.py,sha256=HgEyNndiItMBPTTalOtiUrB600LF3EwwIL557034w7k,5510
|
|
658
666
|
tapps_agents/workflow/detector.py,sha256=bvOrTPT2TS08e6sA05szm22oyipLpJx5oKc6Ca_SO_4,27923
|
|
659
|
-
tapps_agents/workflow/direct_execution_fallback.py,sha256=
|
|
667
|
+
tapps_agents/workflow/direct_execution_fallback.py,sha256=CT-wYMicXc5FEz38DtXUt8XD0tBIHPTXasyVkVFi4TU,11650
|
|
660
668
|
tapps_agents/workflow/docs_artifact.py,sha256=7NNlLEfFkvjIvxLhZAIdpdieC5oPsZElTPflFzA-S_k,5702
|
|
661
669
|
tapps_agents/workflow/durable_state.py,sha256=qGjVp5FXSQsKuLtBBWlwwyo9CbKKjU1OwS1jBmDMjJY,24882
|
|
662
|
-
tapps_agents/workflow/enforcer.py,sha256=
|
|
670
|
+
tapps_agents/workflow/enforcer.py,sha256=2FAUd1_utDbOM2F3YRoM4F2u7M-bzHLMCDDS-mdy-xo,15208
|
|
663
671
|
tapps_agents/workflow/enhancement_artifact.py,sha256=wHdmIJT6i7KO39rTibO5ehVIMbMmya63AyyRqqLTCGM,4830
|
|
664
672
|
tapps_agents/workflow/error_recovery.py,sha256=E4yW9W4rmCmXawnogi6IwjNyxsy6uAdohoqLZgsiNOM,29493
|
|
665
673
|
tapps_agents/workflow/event_bus.py,sha256=gl0aiK35xMJOUhISV6n_1SJTDxarrZIyflfcRVX-fkM,5870
|
|
@@ -679,6 +687,7 @@ tapps_agents/workflow/intent_detector.py,sha256=6JZVk0s2bfFKRO3UNkjfxV7t6PzvirMr
|
|
|
679
687
|
tapps_agents/workflow/logging_helper.py,sha256=x38gDL_ZdlQMnSoIb8aPSVc2hgCj8cgMSzua8o0Rplc,8982
|
|
680
688
|
tapps_agents/workflow/manifest.py,sha256=D5v3E-fBoD0dEK5BNDj_VmVdJmUoT7rCQrJQSygeWRg,20341
|
|
681
689
|
tapps_agents/workflow/marker_writer.py,sha256=2uaP86Fwm_QUPjqRCUdJcNlrHEAD6P7PRJBGpqUhxMo,8325
|
|
690
|
+
tapps_agents/workflow/message_formatter.py,sha256=Pl5u_D7TGL1JVTgw6E6EPzCEt-IB9ayKgm-VHJJAUwU,6112
|
|
682
691
|
tapps_agents/workflow/messaging.py,sha256=fzVDP7vvQXjJG3AGTS1mp1GiBPaK_NzkPNlxCWxfJ6A,11547
|
|
683
692
|
tapps_agents/workflow/metadata_models.py,sha256=xsigrFQgIgFzLJn7qwCa242w49iEv-QwIrFGkGzL0Zg,2954
|
|
684
693
|
tapps_agents/workflow/metrics_enhancements.py,sha256=6u5EnXCJTyLbi5BcouKamW2Pzutmzjv-Fy-ZGCHVgxk,25800
|
|
@@ -693,8 +702,8 @@ tapps_agents/workflow/observability_dashboard.py,sha256=-0zCZzoa05aOfLutHfspSOZk
|
|
|
693
702
|
tapps_agents/workflow/observer.py,sha256=aMIVdw4mVEWz7yKF4XDPQgehz4wo_W2SxNn58G16uwo,6049
|
|
694
703
|
tapps_agents/workflow/ops_artifact.py,sha256=i5-Uiw-n5iAuXZCErHJ6d5_C-oD4PUsS_JBiWB6xc4w,9277
|
|
695
704
|
tapps_agents/workflow/output_passing.py,sha256=Rc4gha7EWfLUfB70gE127Nhk3xlGwjZgp_5ZebiWNKI,7422
|
|
696
|
-
tapps_agents/workflow/parallel_executor.py,sha256=
|
|
697
|
-
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
|
|
698
707
|
tapps_agents/workflow/planning_artifact.py,sha256=yRXnm6KQ4iVVoy22jlo4G175ltHxzHcei2nzKn6da6Q,6438
|
|
699
708
|
tapps_agents/workflow/preset_loader.py,sha256=QbTAciaqX_gqWsDoKWu8ILc0f7dTwopgHZIudPUdv88,11242
|
|
700
709
|
tapps_agents/workflow/preset_recommender.py,sha256=XkFwfuFov2wYw5J_m70Mz38NP1OUAjLke7y6qDJR1X0,8708
|
|
@@ -708,10 +717,10 @@ tapps_agents/workflow/recommender.py,sha256=i4i_qKxYvADBVuXil53WmJp-bRNCwTjh2S_l
|
|
|
708
717
|
tapps_agents/workflow/remediation_loop.py,sha256=DoLsfE5ncxuBXvieYaCFAYbFx1grdkNuxPxzWXY_wb0,5522
|
|
709
718
|
tapps_agents/workflow/result_aggregator.py,sha256=R-ZDVT0XPfqJP4Qyt8Y12MpG3U9419YONxWADm6_IS4,11208
|
|
710
719
|
tapps_agents/workflow/review_artifact.py,sha256=eU8udcTP4aFYXEYxFXsp-Z3YmPBwK981GSNe2Sd2LUY,6786
|
|
711
|
-
tapps_agents/workflow/rules_generator.py,sha256=
|
|
720
|
+
tapps_agents/workflow/rules_generator.py,sha256=aYfG8PMf56CIlm5uPk47A05vuB59X-eLGPeg0J9_ptg,13366
|
|
712
721
|
tapps_agents/workflow/schema_validator.py,sha256=RLQLg1JEYjjIaY5vZWMLwNXJm-dsPMadPYMqdzaN-lw,18870
|
|
713
722
|
tapps_agents/workflow/session_handoff.py,sha256=mPQPxVAgyjdgok0RZvasR147jFRciV2vAHZ4DBwNFk8,5546
|
|
714
|
-
tapps_agents/workflow/skill_invoker.py,sha256=
|
|
723
|
+
tapps_agents/workflow/skill_invoker.py,sha256=cBOHHA8NfVLuTmYla5jLZFTvwJRFxH4u4ZwsnJAdlLM,24766
|
|
715
724
|
tapps_agents/workflow/state_manager.py,sha256=ErIMcHABDmQTm6bSbLjotjV6FHx4kON6eudXWJfV_MI,30367
|
|
716
725
|
tapps_agents/workflow/state_persistence_config.py,sha256=6flU4p61PIIOIkmEHqY1rCfqsXD1P8siUzItKhtPRRA,12701
|
|
717
726
|
tapps_agents/workflow/status_monitor.py,sha256=xA_p3RblPQfhQbWWobrPRjjsd0ccwKYP-cH9XBws7XA,18256
|
|
@@ -736,16 +745,16 @@ tapps_agents/workflow/agent_handlers/debugger_handler.py,sha256=CUPjYAO6Xb78LcI2
|
|
|
736
745
|
tapps_agents/workflow/agent_handlers/designer_handler.py,sha256=6dEwyn1GZty-kAGgSC0XSnjJZc0VEoKnTfTTh08zl8U,3954
|
|
737
746
|
tapps_agents/workflow/agent_handlers/documenter_handler.py,sha256=AC4r6gdahCrLZOYtf59l9VsXVe_TLC_C6YtNifL0kqw,3293
|
|
738
747
|
tapps_agents/workflow/agent_handlers/enhancer_handler.py,sha256=FYny7CpHZ4ERxFmomsTZg_Jj3k-mtjmQOXhlRiWiARU,4775
|
|
739
|
-
tapps_agents/workflow/agent_handlers/implementer_handler.py,sha256=
|
|
748
|
+
tapps_agents/workflow/agent_handlers/implementer_handler.py,sha256=kiX7Jd-zZMfskw20ND9w6DMhtTDv8fjCfbOoBGmerP4,9686
|
|
740
749
|
tapps_agents/workflow/agent_handlers/ops_handler.py,sha256=gQpN9qSN6HA-evAhFv87RYC6FD0UERkuvQA0A5EL1Aw,1821
|
|
741
750
|
tapps_agents/workflow/agent_handlers/orchestrator_handler.py,sha256=AWV3Khqlp41teNo6HjJSLnn21zm1EkJSzM7sQ0ZgFgA,1280
|
|
742
751
|
tapps_agents/workflow/agent_handlers/planner_handler.py,sha256=9oVSsA6Lso5NncYPS4Yn-iEhc5QBGlo7uL89JrmAgls,3449
|
|
743
752
|
tapps_agents/workflow/agent_handlers/registry.py,sha256=aYMU59da4SBgDgqMy4Basu1yL8CvDvdi929n6XM50ro,3613
|
|
744
753
|
tapps_agents/workflow/agent_handlers/reviewer_handler.py,sha256=D4spVUk4l9mJsSsDIKC88EL-2k43YObNz5v439EtDRc,4285
|
|
745
754
|
tapps_agents/workflow/agent_handlers/tester_handler.py,sha256=e44Eqn1CIpcqYqCrjaTK748yb4k7PlzGdK9zSne-SfY,2249
|
|
746
|
-
tapps_agents-3.5.
|
|
747
|
-
tapps_agents-3.5.
|
|
748
|
-
tapps_agents-3.5.
|
|
749
|
-
tapps_agents-3.5.
|
|
750
|
-
tapps_agents-3.5.
|
|
751
|
-
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
|
-
|