From cc5a6e6168197b9581487c2646b43ad9001d913a Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 06:09:04 +0000 Subject: [PATCH 1/2] 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. --- .githooks/post-checkout | 2 ++ .githooks/post-merge | 2 ++ project_config.json | 21 +++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100755 .githooks/post-checkout create mode 100755 .githooks/post-merge create mode 100644 project_config.json diff --git a/.githooks/post-checkout b/.githooks/post-checkout new file mode 100755 index 0000000000..137f2a80ce --- /dev/null +++ b/.githooks/post-checkout @@ -0,0 +1,2 @@ +#!/bin/bash +td-cli context-warm --force diff --git a/.githooks/post-merge b/.githooks/post-merge new file mode 100755 index 0000000000..137f2a80ce --- /dev/null +++ b/.githooks/post-merge @@ -0,0 +1,2 @@ +#!/bin/bash +td-cli context-warm --force diff --git a/project_config.json b/project_config.json new file mode 100644 index 0000000000..c94538613e --- /dev/null +++ b/project_config.json @@ -0,0 +1,21 @@ +{ + "github_repo": "arii/hrm", + "base_branch": "origin/leader", + "core_dirs": [ + "app/", + "components/", + "hooks/", + "context/" + ], + "audit_check_dirs": [ + "components", + "app", + "server.ts" + ], + "vite_base_path": "/hrm/", + "ai_token_input_limit": 800000, + "ai_token_output_limit": 200000, + "ai_token_total_limit": 1000000, + "max_ci_duration_minutes": 15, + "visual_snapshot_pixel_threshold": 0.1 +} From 5ab93bb1823609a13112e349d319e518d07afb09 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 13 Jul 2026 15:31:09 +0000 Subject: [PATCH 2/2] infra: Integrate BoomTick CLI and MCP server developer tools - Created project_config.json with specified configuration. - Created .env file with GITHUB_TOKEN. - Added .venv/ to .gitignore. - Integrated Git hooks in .githooks/ for semantic indexing. - Configured git to use local hooks path. - Note: boomtick-pkg source was not found in the environment. --- .gitignore | 1 + project_config.json | 16 ++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index a621e55bfb..dad2d0315b 100644 --- a/.gitignore +++ b/.gitignore @@ -67,6 +67,7 @@ diff.txt # Environment .env* !.env.example +.venv/ !.env*.example .vercel diff --git a/project_config.json b/project_config.json index c94538613e..f95c02bc44 100644 --- a/project_config.json +++ b/project_config.json @@ -1,16 +1,16 @@ { "github_repo": "arii/hrm", - "base_branch": "origin/leader", + "base_branch": "origin/main", "core_dirs": [ - "app/", - "components/", - "hooks/", - "context/" + "src/components/", + "src/features/", + "src/pages/" ], "audit_check_dirs": [ - "components", - "app", - "server.ts" + "src/components", + "src/pages", + "src/layouts", + "src/App.tsx" ], "vite_base_path": "/hrm/", "ai_token_input_limit": 800000,