boomtick-cli 0.2.1__tar.gz

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.
Files changed (126) hide show
  1. boomtick_cli-0.2.1/PKG-INFO +20 -0
  2. boomtick_cli-0.2.1/README.md +198 -0
  3. boomtick_cli-0.2.1/boomtick_cli.egg-info/PKG-INFO +20 -0
  4. boomtick_cli-0.2.1/boomtick_cli.egg-info/SOURCES.txt +124 -0
  5. boomtick_cli-0.2.1/boomtick_cli.egg-info/dependency_links.txt +1 -0
  6. boomtick_cli-0.2.1/boomtick_cli.egg-info/entry_points.txt +3 -0
  7. boomtick_cli-0.2.1/boomtick_cli.egg-info/requires.txt +15 -0
  8. boomtick_cli-0.2.1/boomtick_cli.egg-info/top_level.txt +1 -0
  9. boomtick_cli-0.2.1/dev_tools/__init__.py +1 -0
  10. boomtick_cli-0.2.1/dev_tools/cli-schema.json +2028 -0
  11. boomtick_cli-0.2.1/dev_tools/cli.py +1542 -0
  12. boomtick_cli-0.2.1/dev_tools/config.py +235 -0
  13. boomtick_cli-0.2.1/dev_tools/constants.py +14 -0
  14. boomtick_cli-0.2.1/dev_tools/daemon.py +146 -0
  15. boomtick_cli-0.2.1/dev_tools/dist/config.js +108 -0
  16. boomtick_cli-0.2.1/dev_tools/dist/index.js +10 -0
  17. boomtick_cli-0.2.1/dev_tools/dist/lib/error_utils.js +8 -0
  18. boomtick_cli-0.2.1/dev_tools/dist/lib/git.js +31 -0
  19. boomtick_cli-0.2.1/dev_tools/dist/lib/result.js +21 -0
  20. boomtick_cli-0.2.1/dev_tools/dist/lib/shell.js +91 -0
  21. boomtick_cli-0.2.1/dev_tools/dist/lib/shell.test.js +10 -0
  22. boomtick_cli-0.2.1/dev_tools/dist/lib/td-cli.js +27 -0
  23. boomtick_cli-0.2.1/dev_tools/dist/lib/test-utils.js +20 -0
  24. boomtick_cli-0.2.1/dev_tools/dist/mcp/definitions.js +242 -0
  25. boomtick_cli-0.2.1/dev_tools/dist/mcp/server.js +317 -0
  26. boomtick_cli-0.2.1/dev_tools/dist/mcp/tools.js +18 -0
  27. boomtick_cli-0.2.1/dev_tools/dist/tools/contract.js +2069 -0
  28. boomtick_cli-0.2.1/dev_tools/dist/tools/ddgs.search.js +50 -0
  29. boomtick_cli-0.2.1/dev_tools/dist/tools/ddgs.search.test.js +67 -0
  30. boomtick_cli-0.2.1/dev_tools/dist/tools/ddgs_search.py +23 -0
  31. boomtick_cli-0.2.1/dev_tools/dist/tools/github.checkout_branch.js +20 -0
  32. boomtick_cli-0.2.1/dev_tools/dist/tools/github.comment_triage_summary.js +25 -0
  33. boomtick_cli-0.2.1/dev_tools/dist/tools/github.create_issue.js +28 -0
  34. boomtick_cli-0.2.1/dev_tools/dist/tools/github.create_issue.test.js +54 -0
  35. boomtick_cli-0.2.1/dev_tools/dist/tools/github.create_pull_request.js +44 -0
  36. boomtick_cli-0.2.1/dev_tools/dist/tools/github.get_merge_conflict_files.js +26 -0
  37. boomtick_cli-0.2.1/dev_tools/dist/tools/github.get_pr.js +18 -0
  38. boomtick_cli-0.2.1/dev_tools/dist/tools/github.get_pr_diff.js +24 -0
  39. boomtick_cli-0.2.1/dev_tools/dist/tools/github.issue_comment.js +24 -0
  40. boomtick_cli-0.2.1/dev_tools/dist/tools/github.issue_update.js +29 -0
  41. boomtick_cli-0.2.1/dev_tools/dist/tools/github.issue_view.js +28 -0
  42. boomtick_cli-0.2.1/dev_tools/dist/tools/github.open_replacement_pr.js +41 -0
  43. boomtick_cli-0.2.1/dev_tools/dist/tools/github.search_open_prs.js +31 -0
  44. boomtick_cli-0.2.1/dev_tools/dist/tools/github.search_open_prs.test.js +51 -0
  45. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/cancel-session.js +20 -0
  46. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/create-session.js +20 -0
  47. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/create-session.test.js +99 -0
  48. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/get-messages.js +19 -0
  49. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/get-messages.test.js +45 -0
  50. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/get-pr.js +14 -0
  51. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/get-pr.test.js +37 -0
  52. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/get-session.js +10 -0
  53. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/list-sessions.js +43 -0
  54. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/send-message.js +22 -0
  55. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/send-message.test.js +56 -0
  56. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/shared.js +26 -0
  57. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/trigger-feedback.js +16 -0
  58. boomtick_cli-0.2.1/dev_tools/dist/tools/jules/trigger-feedback.test.js +42 -0
  59. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.commit_patch.js +33 -0
  60. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.create_branch.js +21 -0
  61. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.create_branch.test.js +42 -0
  62. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.create_repair_branch.js +38 -0
  63. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.get_changed_files.js +21 -0
  64. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.get_command_schema.js +27 -0
  65. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.get_package_scripts.js +35 -0
  66. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.get_package_scripts.test.js +39 -0
  67. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.get_route_map.js +37 -0
  68. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.logs.js +16 -0
  69. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.read_agent_context.js +20 -0
  70. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.read_ci_logs.js +18 -0
  71. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.run_lighthouse.js +37 -0
  72. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.run_playwright.js +29 -0
  73. boomtick_cli-0.2.1/dev_tools/dist/tools/repo.run_tests.js +43 -0
  74. boomtick_cli-0.2.1/dev_tools/dist/tools/types.js +1 -0
  75. boomtick_cli-0.2.1/dev_tools/get_ai_context.py +63 -0
  76. boomtick_cli-0.2.1/dev_tools/handlers/__init__.py +1 -0
  77. boomtick_cli-0.2.1/dev_tools/handlers/command_handler.py +69 -0
  78. boomtick_cli-0.2.1/dev_tools/mcp_server.py +36 -0
  79. boomtick_cli-0.2.1/dev_tools/models.py +354 -0
  80. boomtick_cli-0.2.1/dev_tools/orchestrator.py +2841 -0
  81. boomtick_cli-0.2.1/dev_tools/pr_overlap.py +139 -0
  82. boomtick_cli-0.2.1/dev_tools/resources/__init__.py +1 -0
  83. boomtick_cli-0.2.1/dev_tools/resources/build-repo-context.py +182 -0
  84. boomtick_cli-0.2.1/dev_tools/resources/prompt_constants.json +5 -0
  85. boomtick_cli-0.2.1/dev_tools/resources/review_template.md +41 -0
  86. boomtick_cli-0.2.1/dev_tools/resources/ux-audit.config.json +15 -0
  87. boomtick_cli-0.2.1/dev_tools/resources/visual_guidelines.json +3 -0
  88. boomtick_cli-0.2.1/dev_tools/review_read_pass.py +232 -0
  89. boomtick_cli-0.2.1/dev_tools/schema_gen.py +55 -0
  90. boomtick_cli-0.2.1/dev_tools/schema_utils.py +125 -0
  91. boomtick_cli-0.2.1/dev_tools/scope_check.py +85 -0
  92. boomtick_cli-0.2.1/dev_tools/services/__init__.py +1 -0
  93. boomtick_cli-0.2.1/dev_tools/services/ai_service.py +816 -0
  94. boomtick_cli-0.2.1/dev_tools/services/dependency_graph.py +123 -0
  95. boomtick_cli-0.2.1/dev_tools/services/github.py +783 -0
  96. boomtick_cli-0.2.1/dev_tools/services/jules.py +181 -0
  97. boomtick_cli-0.2.1/dev_tools/services/repair_service.py +199 -0
  98. boomtick_cli-0.2.1/dev_tools/services/vector_store.py +82 -0
  99. boomtick_cli-0.2.1/dev_tools/services/vision_service.py +91 -0
  100. boomtick_cli-0.2.1/dev_tools/td_cli.py +28 -0
  101. boomtick_cli-0.2.1/dev_tools/utils/__init__.py +1035 -0
  102. boomtick_cli-0.2.1/dev_tools/utils/git.py +68 -0
  103. boomtick_cli-0.2.1/dev_tools/ux_report.py +213 -0
  104. boomtick_cli-0.2.1/dev_tools/verify_infra.py +91 -0
  105. boomtick_cli-0.2.1/dev_tools/verify_versions.py +191 -0
  106. boomtick_cli-0.2.1/dev_tools/version_utils.py +175 -0
  107. boomtick_cli-0.2.1/pyproject.toml +51 -0
  108. boomtick_cli-0.2.1/setup.cfg +4 -0
  109. boomtick_cli-0.2.1/tests/test_config.py +60 -0
  110. boomtick_cli-0.2.1/tests/test_dependency_graph.py +32 -0
  111. boomtick_cli-0.2.1/tests/test_fail_fast.py +37 -0
  112. boomtick_cli-0.2.1/tests/test_github_diff_parser.py +161 -0
  113. boomtick_cli-0.2.1/tests/test_github_no_gh.py +113 -0
  114. boomtick_cli-0.2.1/tests/test_github_parser.py +101 -0
  115. boomtick_cli-0.2.1/tests/test_jules_batch_send.py +122 -0
  116. boomtick_cli-0.2.1/tests/test_labels.py +121 -0
  117. boomtick_cli-0.2.1/tests/test_latency_mitigation.py +45 -0
  118. boomtick_cli-0.2.1/tests/test_orchestrator_aggregation.py +63 -0
  119. boomtick_cli-0.2.1/tests/test_orchestrator_heuristics.py +56 -0
  120. boomtick_cli-0.2.1/tests/test_parse_comment.py +95 -0
  121. boomtick_cli-0.2.1/tests/test_plan_issue_audit.py +117 -0
  122. boomtick_cli-0.2.1/tests/test_pr_overlap.py +65 -0
  123. boomtick_cli-0.2.1/tests/test_review_template_validation.py +61 -0
  124. boomtick_cli-0.2.1/tests/test_schema_utils.py +92 -0
  125. boomtick_cli-0.2.1/tests/test_verify_ci_metrics.py +82 -0
  126. boomtick_cli-0.2.1/tests/test_workflow_audit.py +131 -0
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: boomtick-cli
3
+ Version: 0.2.1
4
+ Summary: BoomTick CLI — agentic dev-tools for GitHub + AI workflows
5
+ Requires-Python: >=3.8
6
+ Requires-Dist: requests>=2.0.0
7
+ Requires-Dist: packaging>=21.3
8
+ Requires-Dist: google-genai
9
+ Requires-Dist: python-dotenv
10
+ Requires-Dist: pydantic
11
+ Requires-Dist: click
12
+ Requires-Dist: PyGithub
13
+ Requires-Dist: semgrep
14
+ Requires-Dist: chromadb>=1.5.9
15
+ Requires-Dist: sentence-transformers>=5.6.0
16
+ Requires-Dist: duckduckgo-search>=6.0.0
17
+ Requires-Dist: setuptools<81.0.0
18
+ Requires-Dist: importlib-resources
19
+ Requires-Dist: langchain-google-genai
20
+ Requires-Dist: langchain-openai
@@ -0,0 +1,198 @@
1
+ # dev-tools
2
+
3
+ Developer tooling for the BoomTick repository. The primary entry point is
4
+ `td-cli`, but agents should always call `boomtick-mcp` Tier 1 tools first —
5
+ `td-cli` is the Tier 2 fallback. See `.agents/AGENTS.md` for the full
6
+ tool hierarchy.
7
+
8
+ ---
9
+
10
+ ## 🚀 One-Step Setup
11
+
12
+ ```bash
13
+ ./setup-agent.sh
14
+ ```
15
+
16
+ This script (symlinked to `dev-tools/setup-agent.sh`) handles system tools,
17
+ Node.js, pnpm, Python dependencies, Playwright, remote origin configuration,
18
+ and git hook registration.
19
+
20
+ ---
21
+
22
+ ## 🔑 Environment Variables
23
+
24
+ | Variable | Required | Purpose |
25
+ | :--- | :--- | :--- |
26
+ | `GITHUB_TOKEN` (string) | **Required** | Auth for `gh` and `td-cli gh ...` commands (PR audits, comments, variables, status checks). Standard for GH Actions. |
27
+ | `GH_TOKEN` (string) | Optional fallback | Legacy authentication variable, deprecated in favor of `GITHUB_TOKEN`. |
28
+ | `GITHUB_REPOSITORY` (`owner/repo`) | Recommended | Ensures deterministic `origin` remote auto-configuration. |
29
+ | `JULES_API_KEY` | Optional | Enables `td-cli agent ...` / `td-cli jules ...` cloud workflows. |
30
+ | `GEMINI_API_KEY` | Optional | Enables Gemini-backed review/audit workflows. |
31
+
32
+ **Secret handling guidance**
33
+
34
+ - GitHub Actions / agent runners: store `GITHUB_TOKEN`, `JULES_API_KEY`, and
35
+ `GEMINI_API_KEY` in repository or org Secrets.
36
+ - Dev containers / local shells: export secrets before running setup/CLI:
37
+
38
+ ```bash
39
+ export GITHUB_TOKEN="<token>"
40
+ export GITHUB_REPOSITORY="owner/repo"
41
+ # optional
42
+ export JULES_API_KEY="<key>"
43
+ export GEMINI_API_KEY="<key>"
44
+ ```
45
+
46
+ **Optional tuning variables**
47
+
48
+ - `SKIP_GIT_HOOKS=1` — skip git hook execution (e.g. in CI).
49
+ - `SKIP_VALIDATION=1` — skip post-setup runtime validation.
50
+ - `NODE_MAJOR` — override Node major used for apt installation (defaults to `24`).
51
+
52
+ ---
53
+
54
+ ## 🧩 Workflow-Specific Setup
55
+
56
+ After `./dev-tools/setup-agent.sh`, use the following workflow-specific setup:
57
+
58
+ #### 1) Standard PR / Review Workflows
59
+
60
+ - Plan a review (fetches context and audits):
61
+ - `td-cli agent plan-review --pr <PR_NUMBER>`
62
+ - Submit audit results (after authoring the review in `pr-review-<PR>.md`):
63
+ - `td-cli gh audit-pr <PR_NUMBER> --submit --execute`
64
+ - Pre-submit quality gate before push/merge:
65
+ - `td-cli gh pre-submit`
66
+
67
+ #### 2) Jules Workflows
68
+
69
+ - Required secret: `JULES_API_KEY`.
70
+ - Optional context env var: `JULES_SOURCE_ID` (if your environment already
71
+ knows the source mapping).
72
+ - Typical commands:
73
+ - `td-cli agent dispatch <BRANCH> "<TASK>"`
74
+ - `td-cli agent fix-ci --pr-number <PR> --execute`
75
+ - `td-cli agent sync`
76
+
77
+ #### 3) Headless / Bot Auditing
78
+
79
+ - For batch auditing open PRs:
80
+ - `td-cli gh audit-pr <PR_NUMBER> --fetch --audit --submit --execute`
81
+ - Ensure `jq`, `gh`, Python deps, and pnpm deps are installed (handled by
82
+ setup script).
83
+
84
+ ---
85
+
86
+ ## 🗂️ Agent Context Index
87
+
88
+ `.agent-context.json` (repository root) is the pre-built index that
89
+ `boomtick-mcp` reads on every tool call. It contains `file_tree`, `cli_schema`,
90
+ and `package_json` metadata — built by `boomtick-pkg/scripts/build-repo-context.py`.
91
+
92
+ **The index is kept fresh automatically** by the git hooks registered during
93
+ `./setup-agent.sh`:
94
+
95
+ - `.githooks/post-checkout` — refreshes on branch switch
96
+ - `.githooks/post-merge` — refreshes on pull/merge
97
+
98
+ To manually refresh:
99
+
100
+ ```bash
101
+ pnpm run agent:prime
102
+ ```
103
+
104
+ If the index is stale, MCP tools fall back to raw filesystem calls, bypassing
105
+ the index and increasing token usage. Always refresh before running reviews or
106
+ dispatching Jules sessions.
107
+
108
+ ---
109
+
110
+ ## 🤖 Agent / Jules GitHub Command Pattern
111
+
112
+ Always use `boomtick-mcp` Tier 1 tools first. `td-cli` is the fallback
113
+ when MCP is unavailable — not the default. See `.agents/AGENTS.md` for the
114
+ full tool mapping table.
115
+
116
+ When `td-cli` must be called directly, read the CLI schema from
117
+ `.agent-context.json` rather than guessing flags or running `--help`:
118
+
119
+ ```bash
120
+ # Extract schema for a specific subcommand before calling it
121
+ cat .agent-context.json | python3 -c "
122
+ import json, sys
123
+ schema = json.load(sys.stdin)
124
+ print(json.dumps(schema['cli_schema']['subcommands']['gh pr-diff'], indent=2))
125
+ "
126
+ ```
127
+
128
+ Prefer repository CLI commands over raw `gh`:
129
+
130
+ ```bash
131
+ # ✅ Preferred
132
+ td-cli gh <repo-command>
133
+
134
+ # ⚠️ Only if td-cli does not expose the operation
135
+ gh <command>
136
+ ```
137
+
138
+ If auth fails, do not run `gh auth login`. Instead, set an environment secret
139
+ named `GITHUB_TOKEN`.
140
+
141
+ ---
142
+
143
+ ## ✅ Verification Commands (Post-Setup)
144
+
145
+ ```bash
146
+ node --version # should match .node-version
147
+ pnpm --version # should be 10.28.2
148
+ td-cli doctor
149
+ pnpm run check:runtime-files
150
+ gh auth status
151
+ ```
152
+
153
+ ---
154
+
155
+ ## 🆘 Troubleshooting
156
+
157
+ ### GitHub CLI not authenticated
158
+
159
+ ```bash
160
+ gh issue create --title "<title>" --body "<details>"
161
+ ```
162
+
163
+ If auth fails, report this exact issue (do not run interactive auth):
164
+
165
+ > GitHub CLI is not authenticated. Please add an environment secret named
166
+ > `GITHUB_TOKEN` with a repo-scoped GitHub token.
167
+
168
+ ### `.agent-context.json` stale or missing
169
+
170
+ ```bash
171
+ pnpm run agent:prime
172
+ ```
173
+
174
+ Then re-read before proceeding with any agent operation.
175
+
176
+ ### pnpm / Node mismatch
177
+
178
+ Stop and report the mismatch. Do not attempt to change runtime versions unless
179
+ explicitly instructed to update the runtime contract.
180
+
181
+ ---
182
+
183
+ ## 🚀 Repository CLI (`td-cli`)
184
+
185
+ `dev-tools/td-cli` is the Tier 2 unified entry point for local repository
186
+ automation. All available subcommands and flags are defined in
187
+ `dev-tools/cli-schema.json` (also embedded in `.agent-context.json` under
188
+ `cli_schema`). That file is the single source of truth — never use `--help`
189
+ to discover flags.
190
+
191
+ Key subcommand groups:
192
+
193
+ | Group | Description |
194
+ | :--- | :--- |
195
+ | `doctor` | Runtime consistency check |
196
+ | `gh` | GitHub operations (PRs, issues, audits, conflicts) |
197
+ | `repo` | Repository operations (CI logs, Playwright) |
198
+ | `agent` / `jules` | Jules agent session management |
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: boomtick-cli
3
+ Version: 0.2.1
4
+ Summary: BoomTick CLI — agentic dev-tools for GitHub + AI workflows
5
+ Requires-Python: >=3.8
6
+ Requires-Dist: requests>=2.0.0
7
+ Requires-Dist: packaging>=21.3
8
+ Requires-Dist: google-genai
9
+ Requires-Dist: python-dotenv
10
+ Requires-Dist: pydantic
11
+ Requires-Dist: click
12
+ Requires-Dist: PyGithub
13
+ Requires-Dist: semgrep
14
+ Requires-Dist: chromadb>=1.5.9
15
+ Requires-Dist: sentence-transformers>=5.6.0
16
+ Requires-Dist: duckduckgo-search>=6.0.0
17
+ Requires-Dist: setuptools<81.0.0
18
+ Requires-Dist: importlib-resources
19
+ Requires-Dist: langchain-google-genai
20
+ Requires-Dist: langchain-openai
@@ -0,0 +1,124 @@
1
+ README.md
2
+ pyproject.toml
3
+ boomtick_cli.egg-info/PKG-INFO
4
+ boomtick_cli.egg-info/SOURCES.txt
5
+ boomtick_cli.egg-info/dependency_links.txt
6
+ boomtick_cli.egg-info/entry_points.txt
7
+ boomtick_cli.egg-info/requires.txt
8
+ boomtick_cli.egg-info/top_level.txt
9
+ dev_tools/__init__.py
10
+ dev_tools/cli-schema.json
11
+ dev_tools/cli.py
12
+ dev_tools/config.py
13
+ dev_tools/constants.py
14
+ dev_tools/daemon.py
15
+ dev_tools/get_ai_context.py
16
+ dev_tools/mcp_server.py
17
+ dev_tools/models.py
18
+ dev_tools/orchestrator.py
19
+ dev_tools/pr_overlap.py
20
+ dev_tools/review_read_pass.py
21
+ dev_tools/schema_gen.py
22
+ dev_tools/schema_utils.py
23
+ dev_tools/scope_check.py
24
+ dev_tools/td_cli.py
25
+ dev_tools/ux_report.py
26
+ dev_tools/verify_infra.py
27
+ dev_tools/verify_versions.py
28
+ dev_tools/version_utils.py
29
+ dev_tools/dist/config.js
30
+ dev_tools/dist/index.js
31
+ dev_tools/dist/lib/error_utils.js
32
+ dev_tools/dist/lib/git.js
33
+ dev_tools/dist/lib/result.js
34
+ dev_tools/dist/lib/shell.js
35
+ dev_tools/dist/lib/shell.test.js
36
+ dev_tools/dist/lib/td-cli.js
37
+ dev_tools/dist/lib/test-utils.js
38
+ dev_tools/dist/mcp/definitions.js
39
+ dev_tools/dist/mcp/server.js
40
+ dev_tools/dist/mcp/tools.js
41
+ dev_tools/dist/tools/contract.js
42
+ dev_tools/dist/tools/ddgs.search.js
43
+ dev_tools/dist/tools/ddgs.search.test.js
44
+ dev_tools/dist/tools/ddgs_search.py
45
+ dev_tools/dist/tools/github.checkout_branch.js
46
+ dev_tools/dist/tools/github.comment_triage_summary.js
47
+ dev_tools/dist/tools/github.create_issue.js
48
+ dev_tools/dist/tools/github.create_issue.test.js
49
+ dev_tools/dist/tools/github.create_pull_request.js
50
+ dev_tools/dist/tools/github.get_merge_conflict_files.js
51
+ dev_tools/dist/tools/github.get_pr.js
52
+ dev_tools/dist/tools/github.get_pr_diff.js
53
+ dev_tools/dist/tools/github.issue_comment.js
54
+ dev_tools/dist/tools/github.issue_update.js
55
+ dev_tools/dist/tools/github.issue_view.js
56
+ dev_tools/dist/tools/github.open_replacement_pr.js
57
+ dev_tools/dist/tools/github.search_open_prs.js
58
+ dev_tools/dist/tools/github.search_open_prs.test.js
59
+ dev_tools/dist/tools/repo.commit_patch.js
60
+ dev_tools/dist/tools/repo.create_branch.js
61
+ dev_tools/dist/tools/repo.create_branch.test.js
62
+ dev_tools/dist/tools/repo.create_repair_branch.js
63
+ dev_tools/dist/tools/repo.get_changed_files.js
64
+ dev_tools/dist/tools/repo.get_command_schema.js
65
+ dev_tools/dist/tools/repo.get_package_scripts.js
66
+ dev_tools/dist/tools/repo.get_package_scripts.test.js
67
+ dev_tools/dist/tools/repo.get_route_map.js
68
+ dev_tools/dist/tools/repo.logs.js
69
+ dev_tools/dist/tools/repo.read_agent_context.js
70
+ dev_tools/dist/tools/repo.read_ci_logs.js
71
+ dev_tools/dist/tools/repo.run_lighthouse.js
72
+ dev_tools/dist/tools/repo.run_playwright.js
73
+ dev_tools/dist/tools/repo.run_tests.js
74
+ dev_tools/dist/tools/types.js
75
+ dev_tools/dist/tools/jules/cancel-session.js
76
+ dev_tools/dist/tools/jules/create-session.js
77
+ dev_tools/dist/tools/jules/create-session.test.js
78
+ dev_tools/dist/tools/jules/get-messages.js
79
+ dev_tools/dist/tools/jules/get-messages.test.js
80
+ dev_tools/dist/tools/jules/get-pr.js
81
+ dev_tools/dist/tools/jules/get-pr.test.js
82
+ dev_tools/dist/tools/jules/get-session.js
83
+ dev_tools/dist/tools/jules/list-sessions.js
84
+ dev_tools/dist/tools/jules/send-message.js
85
+ dev_tools/dist/tools/jules/send-message.test.js
86
+ dev_tools/dist/tools/jules/shared.js
87
+ dev_tools/dist/tools/jules/trigger-feedback.js
88
+ dev_tools/dist/tools/jules/trigger-feedback.test.js
89
+ dev_tools/handlers/__init__.py
90
+ dev_tools/handlers/command_handler.py
91
+ dev_tools/resources/__init__.py
92
+ dev_tools/resources/build-repo-context.py
93
+ dev_tools/resources/prompt_constants.json
94
+ dev_tools/resources/review_template.md
95
+ dev_tools/resources/ux-audit.config.json
96
+ dev_tools/resources/visual_guidelines.json
97
+ dev_tools/services/__init__.py
98
+ dev_tools/services/ai_service.py
99
+ dev_tools/services/dependency_graph.py
100
+ dev_tools/services/github.py
101
+ dev_tools/services/jules.py
102
+ dev_tools/services/repair_service.py
103
+ dev_tools/services/vector_store.py
104
+ dev_tools/services/vision_service.py
105
+ dev_tools/utils/__init__.py
106
+ dev_tools/utils/git.py
107
+ tests/test_config.py
108
+ tests/test_dependency_graph.py
109
+ tests/test_fail_fast.py
110
+ tests/test_github_diff_parser.py
111
+ tests/test_github_no_gh.py
112
+ tests/test_github_parser.py
113
+ tests/test_jules_batch_send.py
114
+ tests/test_labels.py
115
+ tests/test_latency_mitigation.py
116
+ tests/test_orchestrator_aggregation.py
117
+ tests/test_orchestrator_heuristics.py
118
+ tests/test_parse_comment.py
119
+ tests/test_plan_issue_audit.py
120
+ tests/test_pr_overlap.py
121
+ tests/test_review_template_validation.py
122
+ tests/test_schema_utils.py
123
+ tests/test_verify_ci_metrics.py
124
+ tests/test_workflow_audit.py
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ td = dev_tools.cli:main
3
+ td-cli = dev_tools.cli:main
@@ -0,0 +1,15 @@
1
+ requests>=2.0.0
2
+ packaging>=21.3
3
+ google-genai
4
+ python-dotenv
5
+ pydantic
6
+ click
7
+ PyGithub
8
+ semgrep
9
+ chromadb>=1.5.9
10
+ sentence-transformers>=5.6.0
11
+ duckduckgo-search>=6.0.0
12
+ setuptools<81.0.0
13
+ importlib-resources
14
+ langchain-google-genai
15
+ langchain-openai
@@ -0,0 +1 @@
1
+ dev_tools
@@ -0,0 +1 @@
1
+ # pylint: disable=missing-docstring