Skip to content

Commit cc5a6e6

Browse files
infra: Integrate BoomTick CLI and MCP server developer tools
- Created project_config.json with repository-specific paths. - Created .env file with GITHUB_TOKEN placeholder. - Integrated Git hooks in .githooks/ for semantic indexing. - Configured git to use local hooks path. - Attempted to locate and copy boomtick-pkg, but the source directory was not found in the environment.
1 parent ff408fe commit cc5a6e6

3 files changed

Lines changed: 25 additions & 0 deletions

File tree

.githooks/post-checkout

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
td-cli context-warm --force

.githooks/post-merge

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
td-cli context-warm --force

project_config.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"github_repo": "arii/hrm",
3+
"base_branch": "origin/leader",
4+
"core_dirs": [
5+
"app/",
6+
"components/",
7+
"hooks/",
8+
"context/"
9+
],
10+
"audit_check_dirs": [
11+
"components",
12+
"app",
13+
"server.ts"
14+
],
15+
"vite_base_path": "/hrm/",
16+
"ai_token_input_limit": 800000,
17+
"ai_token_output_limit": 200000,
18+
"ai_token_total_limit": 1000000,
19+
"max_ci_duration_minutes": 15,
20+
"visual_snapshot_pixel_threshold": 0.1
21+
}

0 commit comments

Comments
 (0)