hatch3r 1.0.0 → 1.2.0
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.
- package/README.md +93 -322
- package/agents/hatch3r-a11y-auditor.md +24 -6
- package/agents/hatch3r-architect.md +20 -1
- package/agents/hatch3r-ci-watcher.md +31 -8
- package/agents/hatch3r-context-rules.md +14 -2
- package/agents/hatch3r-dependency-auditor.md +21 -5
- package/agents/hatch3r-devops.md +37 -6
- package/agents/hatch3r-docs-writer.md +19 -3
- package/agents/hatch3r-fixer.md +171 -0
- package/agents/hatch3r-implementer.md +84 -11
- package/agents/hatch3r-learnings-loader.md +69 -13
- package/agents/hatch3r-lint-fixer.md +19 -14
- package/agents/hatch3r-perf-profiler.md +18 -1
- package/agents/hatch3r-researcher.md +440 -5
- package/agents/hatch3r-reviewer.md +97 -5
- package/agents/hatch3r-security-auditor.md +23 -5
- package/agents/hatch3r-test-writer.md +21 -10
- package/checks/README.md +49 -0
- package/checks/code-quality.md +49 -0
- package/checks/performance.md +58 -0
- package/checks/security.md +58 -0
- package/checks/testing.md +53 -0
- package/commands/board/pickup-azure-devops.md +81 -0
- package/commands/board/pickup-delegation-multi.md +197 -0
- package/commands/board/pickup-delegation.md +100 -0
- package/commands/board/pickup-github.md +82 -0
- package/commands/board/pickup-gitlab.md +81 -0
- package/commands/board/pickup-modes.md +143 -0
- package/commands/board/pickup-post-impl.md +120 -0
- package/commands/board/shared-azure-devops.md +149 -0
- package/commands/board/shared-board-overview.md +215 -0
- package/commands/board/shared-github.md +169 -0
- package/commands/board/shared-gitlab.md +142 -0
- package/commands/hatch3r-agent-customize.md +40 -2
- package/commands/hatch3r-api-spec.md +294 -32
- package/commands/hatch3r-benchmark.md +386 -32
- package/commands/hatch3r-board-fill.md +161 -25
- package/commands/hatch3r-board-groom.md +595 -0
- package/commands/hatch3r-board-init.md +203 -46
- package/commands/hatch3r-board-pickup.md +79 -457
- package/commands/hatch3r-board-refresh.md +98 -27
- package/commands/hatch3r-board-shared.md +87 -238
- package/commands/hatch3r-bug-plan.md +16 -3
- package/commands/hatch3r-codebase-map.md +43 -10
- package/commands/hatch3r-command-customize.md +6 -0
- package/commands/hatch3r-context-health.md +5 -0
- package/commands/hatch3r-cost-tracking.md +5 -0
- package/commands/hatch3r-debug.md +426 -0
- package/commands/hatch3r-dep-audit.md +7 -1
- package/commands/hatch3r-feature-plan.md +74 -12
- package/commands/hatch3r-healthcheck.md +17 -1
- package/commands/hatch3r-hooks.md +16 -10
- package/commands/hatch3r-learn.md +15 -9
- package/commands/hatch3r-migration-plan.md +333 -33
- package/commands/hatch3r-onboard.md +327 -38
- package/commands/hatch3r-project-spec.md +46 -10
- package/commands/hatch3r-quick-change.md +336 -0
- package/commands/hatch3r-recipe.md +6 -0
- package/commands/hatch3r-refactor-plan.md +29 -13
- package/commands/hatch3r-release.md +13 -3
- package/commands/hatch3r-revision.md +395 -0
- package/commands/hatch3r-roadmap.md +18 -3
- package/commands/hatch3r-rule-customize.md +6 -0
- package/commands/hatch3r-security-audit.md +17 -1
- package/commands/hatch3r-skill-customize.md +6 -0
- package/commands/hatch3r-test-plan.md +532 -0
- package/commands/hatch3r-workflow.md +113 -38
- package/dist/cli/index.js +5184 -2593
- package/dist/cli/index.js.map +1 -0
- package/github-agents/hatch3r-docs-agent.md +1 -0
- package/github-agents/hatch3r-lint-agent.md +1 -0
- package/github-agents/hatch3r-security-agent.md +1 -0
- package/github-agents/hatch3r-test-agent.md +1 -0
- package/hooks/hatch3r-ci-failure.md +30 -0
- package/hooks/hatch3r-file-save.md +22 -0
- package/hooks/hatch3r-post-merge.md +23 -0
- package/hooks/hatch3r-pre-commit.md +23 -0
- package/hooks/hatch3r-pre-push.md +22 -0
- package/hooks/hatch3r-session-start.md +22 -0
- package/mcp/mcp.json +22 -3
- package/package.json +4 -7
- package/prompts/hatch3r-bug-triage.md +1 -0
- package/prompts/hatch3r-code-review.md +1 -0
- package/prompts/hatch3r-pr-description.md +1 -0
- package/rules/hatch3r-accessibility-standards.md +1 -0
- package/rules/hatch3r-agent-orchestration.md +326 -53
- package/rules/hatch3r-agent-orchestration.mdc +225 -0
- package/rules/hatch3r-api-design.md +4 -1
- package/rules/hatch3r-browser-verification.md +33 -1
- package/rules/hatch3r-browser-verification.mdc +29 -0
- package/rules/hatch3r-ci-cd.md +5 -1
- package/rules/hatch3r-ci-cd.mdc +4 -1
- package/rules/hatch3r-code-standards.md +18 -0
- package/rules/hatch3r-code-standards.mdc +10 -1
- package/rules/hatch3r-component-conventions.md +4 -1
- package/rules/hatch3r-data-classification.md +1 -0
- package/rules/hatch3r-deep-context.md +94 -0
- package/rules/hatch3r-deep-context.mdc +69 -0
- package/rules/hatch3r-dependency-management.md +13 -0
- package/rules/hatch3r-feature-flags.md +4 -1
- package/rules/hatch3r-git-conventions.md +1 -0
- package/rules/hatch3r-i18n.md +4 -1
- package/rules/hatch3r-learning-consult.md +4 -2
- package/rules/hatch3r-learning-consult.mdc +3 -2
- package/rules/hatch3r-migrations.md +12 -0
- package/rules/hatch3r-observability.md +293 -1
- package/rules/hatch3r-performance-budgets.md +5 -2
- package/rules/hatch3r-performance-budgets.mdc +1 -1
- package/rules/hatch3r-secrets-management.md +11 -3
- package/rules/hatch3r-secrets-management.mdc +10 -3
- package/rules/hatch3r-security-patterns.md +23 -3
- package/rules/hatch3r-security-patterns.mdc +8 -2
- package/rules/hatch3r-testing.md +1 -0
- package/rules/hatch3r-theming.md +4 -1
- package/rules/hatch3r-tooling-hierarchy.md +42 -15
- package/rules/hatch3r-tooling-hierarchy.mdc +27 -4
- package/skills/hatch3r-a11y-audit/SKILL.md +1 -0
- package/skills/hatch3r-agent-customize/SKILL.md +3 -0
- package/skills/hatch3r-api-spec/SKILL.md +1 -0
- package/skills/hatch3r-architecture-review/SKILL.md +6 -2
- package/skills/hatch3r-bug-fix/SKILL.md +4 -1
- package/skills/hatch3r-ci-pipeline/SKILL.md +1 -0
- package/skills/hatch3r-command-customize/SKILL.md +1 -0
- package/skills/hatch3r-context-health/SKILL.md +2 -1
- package/skills/hatch3r-cost-tracking/SKILL.md +1 -0
- package/skills/hatch3r-dep-audit/SKILL.md +6 -2
- package/skills/hatch3r-feature/SKILL.md +9 -2
- package/skills/hatch3r-gh-agentic-workflows/SKILL.md +130 -21
- package/skills/hatch3r-incident-response/SKILL.md +11 -5
- package/skills/hatch3r-issue-workflow/SKILL.md +12 -7
- package/skills/hatch3r-logical-refactor/SKILL.md +1 -0
- package/skills/hatch3r-migration/SKILL.md +1 -0
- package/skills/hatch3r-perf-audit/SKILL.md +2 -1
- package/skills/hatch3r-pr-creation/SKILL.md +20 -10
- package/skills/hatch3r-qa-validation/SKILL.md +2 -1
- package/skills/hatch3r-recipe/SKILL.md +1 -0
- package/skills/hatch3r-refactor/SKILL.md +7 -1
- package/skills/hatch3r-release/SKILL.md +15 -11
- package/skills/hatch3r-rule-customize/SKILL.md +1 -0
- package/skills/hatch3r-skill-customize/SKILL.md +1 -0
- package/skills/hatch3r-visual-refactor/SKILL.md +1 -0
- package/dist/cli/hooks-ZOTFDEA3.js +0 -59
- package/rules/hatch3r-error-handling.md +0 -17
- package/rules/hatch3r-error-handling.mdc +0 -15
|
@@ -4,7 +4,37 @@ type: hook
|
|
|
4
4
|
event: ci-failure
|
|
5
5
|
agent: ci-watcher
|
|
6
6
|
description: Diagnose CI pipeline failures
|
|
7
|
+
tags: [core]
|
|
7
8
|
---
|
|
8
9
|
# Hook: ci-failure → ci-watcher
|
|
9
10
|
|
|
10
11
|
Activate the ci-watcher agent when a CI pipeline fails to diagnose the root cause, suggest fixes, and report actionable next steps.
|
|
12
|
+
|
|
13
|
+
## Agent Behavior
|
|
14
|
+
|
|
15
|
+
When this hook fires, the assigned agent should:
|
|
16
|
+
|
|
17
|
+
1. Fetch the full CI run logs for the failed workflow run (using `gh run view {run-id} --log` or equivalent).
|
|
18
|
+
2. Identify the failing job(s) and step(s) — extract the error output, exit code, and stack trace (if present).
|
|
19
|
+
3. Classify the failure type: build error, test failure, lint violation, type error, dependency issue, infrastructure/flaky, timeout, or permission error.
|
|
20
|
+
4. For test failures: identify the specific failing test(s), expected vs. actual values, and the source file(s) involved.
|
|
21
|
+
5. For build/type errors: extract the compiler error message and the source location.
|
|
22
|
+
6. Produce a root-cause hypothesis with a concrete suggested fix (code change, config change, or retry recommendation for flaky failures).
|
|
23
|
+
7. If the failure matches a known pattern from `.agents/learnings/`, reference the relevant learning.
|
|
24
|
+
|
|
25
|
+
## Expected Output
|
|
26
|
+
|
|
27
|
+
A structured diagnostic report containing:
|
|
28
|
+
|
|
29
|
+
- **Failed job**: Name and step of the failing CI job.
|
|
30
|
+
- **Error type**: Classification (build, test, lint, type, dependency, infra, timeout, permission).
|
|
31
|
+
- **Root cause**: Concise explanation of why the failure occurred.
|
|
32
|
+
- **Error excerpt**: The relevant log output (truncated to key lines).
|
|
33
|
+
- **Suggested fix**: Specific, actionable remediation steps.
|
|
34
|
+
- **Related learnings**: Links to any matching entries in `.agents/learnings/` (if applicable).
|
|
35
|
+
|
|
36
|
+
## Configuration
|
|
37
|
+
|
|
38
|
+
- **CI provider**: Auto-detected from repository config. Override with `ciProvider` in hook config if needed.
|
|
39
|
+
- **Log depth**: Default fetches the last 200 lines of the failing step. Adjust via `logLines` for more verbose failures.
|
|
40
|
+
- **Auto-retry**: Set `autoRetryFlaky: true` to automatically re-run the workflow when the failure is classified as infrastructure/flaky (max 1 retry).
|
|
@@ -5,7 +5,29 @@ event: file-save
|
|
|
5
5
|
agent: context-rules
|
|
6
6
|
description: Activate context-specific rules on file save
|
|
7
7
|
globs: "**/*.ts, **/*.tsx, **/*.js, **/*.jsx"
|
|
8
|
+
tags: [core]
|
|
8
9
|
---
|
|
9
10
|
# Hook: file-save → context-rules
|
|
10
11
|
|
|
11
12
|
Activate context-specific rules when a file is saved, applying relevant coding standards and patterns based on the file's location and type.
|
|
13
|
+
|
|
14
|
+
## Agent Behavior
|
|
15
|
+
|
|
16
|
+
When this hook fires, the assigned agent should:
|
|
17
|
+
|
|
18
|
+
1. Determine the saved file's path and match it against the project's rule definitions in `.agents/rules/`.
|
|
19
|
+
2. Load all rules where `scope: always` applies, plus any rules with glob patterns matching the saved file's path.
|
|
20
|
+
3. Evaluate the saved file's contents against the loaded rules — check for convention violations, pattern mismatches, or missing required elements (e.g., missing error handling in API routes, missing accessibility attributes in components).
|
|
21
|
+
4. If violations are found, surface them as inline warnings or suggestions (not blocking — file-save hooks should be non-disruptive).
|
|
22
|
+
5. Cache loaded rules for the session to avoid re-reading on every save.
|
|
23
|
+
|
|
24
|
+
## Expected Output
|
|
25
|
+
|
|
26
|
+
- **If violations found**: Non-blocking inline suggestions with rule ID, description, and the specific line(s) that violate the rule.
|
|
27
|
+
- **If clean**: No output (silent pass — do not emit noise on every save).
|
|
28
|
+
|
|
29
|
+
## Configuration
|
|
30
|
+
|
|
31
|
+
- **Globs**: Controlled by the `globs` frontmatter field. Adjust to match your project's source file extensions.
|
|
32
|
+
- **Rule sources**: Reads from `.agents/rules/`. Rules with matching `globs` or `scope: always` are activated.
|
|
33
|
+
- **Debounce**: To avoid excessive processing during rapid saves, the agent debounces with a 2-second window (configurable via `debounceMs`).
|
|
@@ -4,7 +4,30 @@ type: hook
|
|
|
4
4
|
event: post-merge
|
|
5
5
|
agent: ci-watcher
|
|
6
6
|
description: Check CI pipeline status after merge
|
|
7
|
+
tags: [core]
|
|
7
8
|
---
|
|
8
9
|
# Hook: post-merge → ci-watcher
|
|
9
10
|
|
|
10
11
|
Activate the ci-watcher agent after a merge completes to verify the CI pipeline passes on the updated branch.
|
|
12
|
+
|
|
13
|
+
## Agent Behavior
|
|
14
|
+
|
|
15
|
+
When this hook fires, the assigned agent should:
|
|
16
|
+
|
|
17
|
+
1. Detect the branch that was just merged into and the merge commit SHA.
|
|
18
|
+
2. Poll the CI pipeline (GitHub Actions, CircleCI, etc.) for the status of the merge commit.
|
|
19
|
+
3. Wait for pipeline completion with exponential backoff (initial: 30s, max: 5min, timeout: 15min).
|
|
20
|
+
4. If the pipeline fails, fetch the failure logs, identify the failing step(s), and produce a root-cause summary.
|
|
21
|
+
5. If new dependencies were added or lockfiles changed during the merge, flag this for the developer's awareness.
|
|
22
|
+
|
|
23
|
+
## Expected Output
|
|
24
|
+
|
|
25
|
+
- **On success**: "CI passed for merge commit `{sha}` on `{branch}` — all checks green."
|
|
26
|
+
- **On failure**: A structured diagnostic including the failing job name, step, error excerpt, and suggested fix. If the failure appears related to the merge (e.g., test conflict), flag it explicitly.
|
|
27
|
+
- **On timeout**: "CI pipeline for `{sha}` has not completed after 15 minutes. Check manually: {link}."
|
|
28
|
+
|
|
29
|
+
## Configuration
|
|
30
|
+
|
|
31
|
+
- **CI provider**: Auto-detected from repository config (`.github/workflows/`, `.circleci/`, etc.). Override with `ciProvider` in hook config.
|
|
32
|
+
- **Timeout**: Default 15 minutes. Adjust via `timeoutMinutes` in hook config.
|
|
33
|
+
- **Notifications**: Set `notifyOnFailure: true` to post a comment on the merge PR when CI fails.
|
|
@@ -5,7 +5,30 @@ event: pre-commit
|
|
|
5
5
|
agent: lint-fixer
|
|
6
6
|
description: Auto-fix lint and formatting issues before commit
|
|
7
7
|
globs: "**/*.ts, **/*.tsx, **/*.js, **/*.jsx"
|
|
8
|
+
tags: [core]
|
|
8
9
|
---
|
|
9
10
|
# Hook: pre-commit → lint-fixer
|
|
10
11
|
|
|
11
12
|
Activate the lint-fixer agent before each commit to automatically detect and fix lint errors, formatting issues, and style violations in staged files.
|
|
13
|
+
|
|
14
|
+
## Agent Behavior
|
|
15
|
+
|
|
16
|
+
When this hook fires, the assigned agent should:
|
|
17
|
+
|
|
18
|
+
1. Identify all staged files matching the configured globs.
|
|
19
|
+
2. Run the project's configured linter (ESLint, Biome, etc.) and formatter (Prettier, dprint, etc.) against only the staged files.
|
|
20
|
+
3. Auto-fix any fixable violations (formatting, import ordering, unused imports, trailing whitespace).
|
|
21
|
+
4. If unfixable violations remain, report them clearly with file paths and line numbers so the developer can address them before committing.
|
|
22
|
+
5. Re-stage any auto-fixed files so the commit includes the corrections.
|
|
23
|
+
|
|
24
|
+
## Expected Output
|
|
25
|
+
|
|
26
|
+
- A summary of fixes applied (e.g., "Fixed 3 formatting issues in 2 files").
|
|
27
|
+
- If unfixable issues remain: a list of violations with file, line, rule ID, and message.
|
|
28
|
+
- If all files pass: a short confirmation ("All staged files pass lint and formatting checks").
|
|
29
|
+
|
|
30
|
+
## Configuration
|
|
31
|
+
|
|
32
|
+
- **Globs**: Controlled by the `globs` frontmatter field. Adjust to match your project's source file extensions.
|
|
33
|
+
- **Tooling**: The agent auto-detects the project's lint/format stack from config files (`eslint.config.*`, `.prettierrc`, `biome.json`, etc.).
|
|
34
|
+
- **Severity**: By default, only errors block the commit. Set `blockOnWarnings: true` in the hook config to also block on warnings.
|
|
@@ -4,7 +4,29 @@ type: hook
|
|
|
4
4
|
event: pre-push
|
|
5
5
|
agent: security-auditor
|
|
6
6
|
description: Scan for secrets and security issues before push
|
|
7
|
+
tags: [core]
|
|
7
8
|
---
|
|
8
9
|
# Hook: pre-push → security-auditor
|
|
9
10
|
|
|
10
11
|
Activate the security-auditor agent before pushing to scan for accidentally committed secrets, API keys, credentials, and other security-sensitive content.
|
|
12
|
+
|
|
13
|
+
## Agent Behavior
|
|
14
|
+
|
|
15
|
+
When this hook fires, the assigned agent should:
|
|
16
|
+
|
|
17
|
+
1. Identify all commits being pushed that are not yet on the remote.
|
|
18
|
+
2. Scan the diff of those commits for high-entropy strings, known secret patterns (API keys, tokens, passwords, private keys, connection strings), and files that commonly contain secrets (`.env`, `credentials.json`, `*.pem`).
|
|
19
|
+
3. Cross-reference findings against an allowlist (if configured) to suppress known false positives.
|
|
20
|
+
4. If secrets are detected, block the push and report the findings with file paths, line numbers, and the type of secret detected.
|
|
21
|
+
5. If no secrets are found, allow the push to proceed.
|
|
22
|
+
|
|
23
|
+
## Expected Output
|
|
24
|
+
|
|
25
|
+
- If secrets are found: a blocking report listing each finding with file, line, secret type, and remediation advice (e.g., "Rotate this key and move it to environment variables").
|
|
26
|
+
- If clean: a short confirmation ("No secrets detected in outgoing commits").
|
|
27
|
+
|
|
28
|
+
## Configuration
|
|
29
|
+
|
|
30
|
+
- **Allowlist**: Add known false positives to `.agents/security/secret-allowlist.json` (patterns or file paths to ignore).
|
|
31
|
+
- **Pattern extensions**: The agent uses built-in patterns for common secret types. Add project-specific patterns via `.agents/security/custom-patterns.json`.
|
|
32
|
+
- **Scope**: By default, scans only the diff of outgoing commits. Set `scanFullHistory: true` to scan all files (slower, useful for initial audits).
|
|
@@ -4,7 +4,29 @@ type: hook
|
|
|
4
4
|
event: session-start
|
|
5
5
|
agent: learnings-loader
|
|
6
6
|
description: Load relevant learnings at session start
|
|
7
|
+
tags: [core]
|
|
7
8
|
---
|
|
8
9
|
# Hook: session-start → learnings-loader
|
|
9
10
|
|
|
10
11
|
Activate the learnings-loader agent when a new coding session starts to surface relevant project learnings, recent decisions, and context from previous sessions.
|
|
12
|
+
|
|
13
|
+
## Agent Behavior
|
|
14
|
+
|
|
15
|
+
When this hook fires, the assigned agent should:
|
|
16
|
+
|
|
17
|
+
1. Read the `.agents/learnings/` directory and index all available learning files by area, tags, and recency.
|
|
18
|
+
2. Identify the most relevant learnings based on recently modified files in the working tree (using `git diff` and `git log` to infer the active work area).
|
|
19
|
+
3. Surface the top 3-5 most relevant learnings as a brief summary, prioritizing: (a) learnings from the last 7 days, (b) learnings matching the current branch's area labels, (c) learnings tagged as high-impact or cross-cutting.
|
|
20
|
+
4. If there are recent architectural decisions or convention changes, highlight them prominently.
|
|
21
|
+
5. If `.agents/learnings/` does not exist or is empty, skip silently.
|
|
22
|
+
|
|
23
|
+
## Expected Output
|
|
24
|
+
|
|
25
|
+
- A concise summary block (max 10 lines) showing relevant learnings, each with: title, area, one-line takeaway, and file path for deeper reading.
|
|
26
|
+
- If no relevant learnings are found: skip output entirely (do not emit "no learnings found" noise).
|
|
27
|
+
|
|
28
|
+
## Configuration
|
|
29
|
+
|
|
30
|
+
- **Max learnings**: Default 5. Adjust via `maxLearnings` in hook config.
|
|
31
|
+
- **Recency window**: Default 7 days. Adjust via `recencyDays` to widen or narrow the time window.
|
|
32
|
+
- **Area filter**: If set, only surface learnings matching the specified areas. By default, infers areas from the working tree.
|
package/mcp/mcp.json
CHANGED
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"_disabled": true,
|
|
36
36
|
"_description": "Error tracking and performance monitoring (enable and configure with your Sentry auth token)",
|
|
37
37
|
"command": "npx",
|
|
38
|
-
"args": ["-y", "@sentry/mcp-server@
|
|
38
|
+
"args": ["-y", "@sentry/mcp-server@0.29.0"],
|
|
39
39
|
"env": {
|
|
40
40
|
"SENTRY_AUTH_TOKEN": "${env:SENTRY_AUTH_TOKEN}"
|
|
41
41
|
}
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"_disabled": true,
|
|
45
45
|
"_description": "PostgreSQL database queries and schema inspection (enable and configure with your connection string)",
|
|
46
46
|
"command": "npx",
|
|
47
|
-
"args": ["-y", "@modelcontextprotocol/server-postgres"],
|
|
47
|
+
"args": ["-y", "@modelcontextprotocol/server-postgres@0.6.2"],
|
|
48
48
|
"env": {
|
|
49
49
|
"POSTGRES_URL": "${env:POSTGRES_URL}"
|
|
50
50
|
}
|
|
@@ -53,10 +53,29 @@
|
|
|
53
53
|
"_disabled": true,
|
|
54
54
|
"_description": "Linear issue tracking and project management (enable and configure with your Linear API key)",
|
|
55
55
|
"command": "npx",
|
|
56
|
-
"args": ["-y", "@mkusaka/mcp-server-linear"],
|
|
56
|
+
"args": ["-y", "@mkusaka/mcp-server-linear@1.0.15"],
|
|
57
57
|
"env": {
|
|
58
58
|
"LINEAR_API_KEY": "${env:LINEAR_API_KEY}"
|
|
59
59
|
}
|
|
60
|
+
},
|
|
61
|
+
"azure-devops": {
|
|
62
|
+
"_disabled": true,
|
|
63
|
+
"_description": "Azure DevOps work items, repos, pipelines, and boards",
|
|
64
|
+
"command": "npx",
|
|
65
|
+
"args": ["-y", "@tiberriver256/mcp-server-azure-devops@0.1.45"],
|
|
66
|
+
"env": {
|
|
67
|
+
"AZURE_DEVOPS_PAT": "${env:AZURE_DEVOPS_PAT}",
|
|
68
|
+
"AZURE_DEVOPS_ORG": "${env:AZURE_DEVOPS_ORG}"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"gitlab": {
|
|
72
|
+
"_disabled": true,
|
|
73
|
+
"_description": "GitLab issues, merge requests, pipelines, and project management",
|
|
74
|
+
"command": "npx",
|
|
75
|
+
"args": ["-y", "glab", "mcp"],
|
|
76
|
+
"env": {
|
|
77
|
+
"GITLAB_TOKEN": "${env:GITLAB_TOKEN}"
|
|
78
|
+
}
|
|
60
79
|
}
|
|
61
80
|
}
|
|
62
81
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hatch3r",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Battle-tested agentic coding setup framework. One command to hatch your agent stack -- agents, skills, rules, commands, and MCP for every major AI coding tool.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -40,16 +40,17 @@
|
|
|
40
40
|
"type": "git",
|
|
41
41
|
"url": "https://github.com/hatch3r/hatch3r.git"
|
|
42
42
|
},
|
|
43
|
-
"homepage": "https://
|
|
43
|
+
"homepage": "https://docs.hatch3r.com",
|
|
44
44
|
"bugs": {
|
|
45
45
|
"url": "https://github.com/hatch3r/hatch3r/issues"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
|
-
"node": ">=
|
|
48
|
+
"node": ">=22.0.0"
|
|
49
49
|
},
|
|
50
50
|
"files": [
|
|
51
51
|
"dist/",
|
|
52
52
|
"agents/",
|
|
53
|
+
"checks/",
|
|
53
54
|
"commands/",
|
|
54
55
|
"rules/",
|
|
55
56
|
"skills/",
|
|
@@ -64,14 +65,10 @@
|
|
|
64
65
|
"boxen": "^8.0.1",
|
|
65
66
|
"chalk": "^5.4.0",
|
|
66
67
|
"commander": "^13.0.0",
|
|
67
|
-
"glob": "^11.0.0",
|
|
68
68
|
"inquirer": "^12.0.0",
|
|
69
69
|
"ora": "^9.3.0",
|
|
70
70
|
"yaml": "^2.7.0"
|
|
71
71
|
},
|
|
72
|
-
"overrides": {
|
|
73
|
-
"minimatch": ">=10.2.1"
|
|
74
|
-
},
|
|
75
72
|
"devDependencies": {
|
|
76
73
|
"@types/node": "^25.3.0",
|
|
77
74
|
"@vitest/coverage-v8": "^3.2.4",
|