@mrciphersmith/keryx 0.2.9
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/LICENSE +21 -0
- package/README.md +351 -0
- package/dist/cli.js +48427 -0
- package/dist/proxy-worker.js +381 -0
- package/package.json +63 -0
- package/src/gdgraph/affected.test.ts +100 -0
- package/src/gdgraph/affected.ts +135 -0
- package/src/gdgraph/build-integrity.test.ts +193 -0
- package/src/gdgraph/build-lang.test.ts +399 -0
- package/src/gdgraph/build.test.ts +120 -0
- package/src/gdgraph/build.ts +804 -0
- package/src/gdgraph/config.test.ts +47 -0
- package/src/gdgraph/config.ts +113 -0
- package/src/gdgraph/core-sources.test.ts +99 -0
- package/src/gdgraph/core-sources.ts +20 -0
- package/src/gdgraph/enrich.ts +79 -0
- package/src/gdgraph/fallback.test.ts +153 -0
- package/src/gdgraph/find.test.ts +78 -0
- package/src/gdgraph/find.ts +107 -0
- package/src/gdgraph/pagerank.ts +129 -0
- package/src/gdgraph/path.test.ts +56 -0
- package/src/gdgraph/path.ts +112 -0
- package/src/gdgraph/query.ts +133 -0
- package/src/gdgraph/repomap.test.ts +110 -0
- package/src/gdgraph/repomap.ts +193 -0
- package/src/gdgraph/service.test.ts +59 -0
- package/src/gdgraph/service.ts +51 -0
- package/src/gdgraph/staleness.ts +20 -0
- package/src/gdgraph/symbol.test.ts +89 -0
- package/src/gdgraph/symbol.ts +123 -0
- package/src/gdgraph/symbols-capability.test.ts +41 -0
- package/src/gdgraph/symbols-capability.ts +49 -0
- package/src/gdgraph/target.ts +56 -0
- package/src/gdgraph/treesitter/adapter.test.ts +249 -0
- package/src/gdgraph/treesitter/adapter.ts +213 -0
- package/src/gdgraph/treesitter/extract.test.ts +278 -0
- package/src/gdgraph/treesitter/extract.ts +389 -0
- package/src/gdgraph/treesitter/grammars.ts +110 -0
- package/src/gdgraph/treesitter/no-treesitter-import.test.ts +51 -0
- package/src/gdgraph/treesitter/resolve-calls.test.ts +38 -0
- package/src/gdgraph/types.ts +63 -0
- package/src/gdskills/bundled/rules/core/api-contracts.mdc +148 -0
- package/src/gdskills/bundled/rules/core/async-patterns.mdc +185 -0
- package/src/gdskills/bundled/rules/core/clean-architecture.mdc +163 -0
- package/src/gdskills/bundled/rules/core/code-review-ai-assistant.mdc +49 -0
- package/src/gdskills/bundled/rules/core/code-review-b091-profile.mdc +48 -0
- package/src/gdskills/bundled/rules/core/code-style-patterns.mdc +54 -0
- package/src/gdskills/bundled/rules/core/commit-message-formatting.mdc +25 -0
- package/src/gdskills/bundled/rules/core/database-patterns.mdc +162 -0
- package/src/gdskills/bundled/rules/core/documentation-management.mdc +106 -0
- package/src/gdskills/bundled/rules/core/error-handling.mdc +163 -0
- package/src/gdskills/bundled/rules/core/execution-metrics.md +99 -0
- package/src/gdskills/bundled/rules/core/frontend-assistant.mdc +40 -0
- package/src/gdskills/bundled/rules/core/git-rules.mdc +37 -0
- package/src/gdskills/bundled/rules/core/gproject-contracts.mdc +198 -0
- package/src/gdskills/bundled/rules/core/implementation-doc-mandate.mdc +149 -0
- package/src/gdskills/bundled/rules/core/implementation-plans.mdc +58 -0
- package/src/gdskills/bundled/rules/core/jobs-documentation.mdc +221 -0
- package/src/gdskills/bundled/rules/core/mobx-store-template.mdc +561 -0
- package/src/gdskills/bundled/rules/core/model-selection.mdc +53 -0
- package/src/gdskills/bundled/rules/core/nestjs-dto.mdc +50 -0
- package/src/gdskills/bundled/rules/core/playwright-testing.mdc +321 -0
- package/src/gdskills/bundled/rules/core/requirements-management.mdc +35 -0
- package/src/gdskills/bundled/rules/core/requirements-package-standard.mdc +103 -0
- package/src/gdskills/bundled/rules/core/review-agent-profile.mdc +49 -0
- package/src/gdskills/bundled/rules/core/review-strict-profile.mdc +44 -0
- package/src/gdskills/bundled/rules/core/rule-management-workflow.mdc +62 -0
- package/src/gdskills/bundled/rules/core/security-baseline.mdc +155 -0
- package/src/gdskills/bundled/rules/core/shared-definitions.mdc +79 -0
- package/src/gdskills/bundled/rules/core/skill-lifecycle.mdc +55 -0
- package/src/gdskills/bundled/rules/core/skills-storage-workflow.mdc +88 -0
- package/src/gdskills/bundled/rules/core/solid-principles.mdc +149 -0
- package/src/gdskills/bundled/rules/core/storybook-guidelines.mdc +36 -0
- package/src/gdskills/bundled/rules/core/subagent-context-construction.md +107 -0
- package/src/gdskills/bundled/rules/core/subagent-status-protocol.md +169 -0
- package/src/gdskills/bundled/rules/core/tdd-workflow.mdc +96 -0
- package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.codex.md +47 -0
- package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.cursor.md +55 -0
- package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.md +352 -0
- package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.opencode.md +39 -0
- package/src/gdskills/bundled/skills/orchestration/code-verifier/SKILL.zed.md +29 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.codex.md +567 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.cursor.md +567 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.md +655 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.opencode.md +567 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/SKILL.zed.md +567 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/input-contract.schema.json +134 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/orchestrator-prompt.md +183 -0
- package/src/gdskills/bundled/skills/orchestration/context-collector/output-contract.schema.json +208 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.codex.md +1412 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.cursor.md +1412 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.detail.md +735 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.md +468 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.opencode.md +1412 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/SKILL.zed.md +1412 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/analysis-request.md +62 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/analysis-request.template.md +79 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/input-contract.schema.json +247 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/orchestrator-prompt.md +362 -0
- package/src/gdskills/bundled/skills/orchestration/feature-analyzer/output-contract.schema.json +87 -0
- package/src/gdskills/bundled/skills/orchestration/feature-dev/SKILL.codex.md +105 -0
- package/src/gdskills/bundled/skills/orchestration/feature-dev/SKILL.cursor.md +105 -0
- package/src/gdskills/bundled/skills/orchestration/feature-dev/SKILL.md +165 -0
- package/src/gdskills/bundled/skills/orchestration/flow-orchestrator/SKILL.md +379 -0
- package/src/gdskills/bundled/skills/orchestration/flow-orchestrator/input-contract.schema.json +33 -0
- package/src/gdskills/bundled/skills/orchestration/flow-orchestrator/output-contract.schema.json +41 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.codex.md +307 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.cursor.md +307 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.md +373 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.opencode.md +307 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/SKILL.zed.md +307 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/input-contract.schema.json +130 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/issue-request.template.md +50 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/orchestrator-prompt.md +155 -0
- package/src/gdskills/bundled/skills/orchestration/issue-analyzer/output-contract.schema.json +61 -0
- package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.codex.md +365 -0
- package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.cursor.md +365 -0
- package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.md +373 -0
- package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.opencode.md +365 -0
- package/src/gdskills/bundled/skills/orchestration/job-documenter/SKILL.zed.md +365 -0
- package/src/gdskills/bundled/skills/orchestration/job-documenter/input-contract.schema.json +55 -0
- package/src/gdskills/bundled/skills/orchestration/job-documenter/output-contract.schema.json +58 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.codex.md +1701 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.cursor.md +1701 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.md +1734 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.opencode.md +1701 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/SKILL.zed.md +1701 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/input-contract.schema.json +188 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/orchestrator-prompt.md +179 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/output-contract.schema.json +103 -0
- package/src/gdskills/bundled/skills/orchestration/job-orchestrator/state.schema.json +164 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.codex.md +395 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.cursor.md +395 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.md +556 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.opencode.md +395 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/SKILL.zed.md +395 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/input-contract.schema.json +204 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/orchestrator-prompt.md +206 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/output-contract.schema.json +51 -0
- package/src/gdskills/bundled/skills/orchestration/task-implementer/task-request.template.md +111 -0
- package/src/gdskills/bundled/skills/planning/autodoc-analyst/SKILL.md +163 -0
- package/src/gdskills/bundled/skills/planning/autodoc-architect/SKILL.md +161 -0
- package/src/gdskills/bundled/skills/planning/autodoc-assembler/SKILL.md +128 -0
- package/src/gdskills/bundled/skills/planning/autodoc-orchestrator/SKILL.md +321 -0
- package/src/gdskills/bundled/skills/planning/autodoc-scanner/SKILL.md +166 -0
- package/src/gdskills/bundled/skills/planning/autodoc-writer/SKILL.md +253 -0
- package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.claude.md +46 -0
- package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.codex.md +90 -0
- package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.cursor.md +90 -0
- package/src/gdskills/bundled/skills/planning/brainstorm/SKILL.md +90 -0
- package/src/gdskills/bundled/skills/planning/consistency-checker/SKILL.codex.md +33 -0
- package/src/gdskills/bundled/skills/planning/consistency-checker/SKILL.cursor.md +33 -0
- package/src/gdskills/bundled/skills/planning/consistency-checker/SKILL.md +190 -0
- package/src/gdskills/bundled/skills/planning/docpack-orchestrator/SKILL.md +142 -0
- package/src/gdskills/bundled/skills/planning/docpack-orchestrator/input-contract.schema.json +31 -0
- package/src/gdskills/bundled/skills/planning/docpack-orchestrator/output-contract.schema.json +31 -0
- package/src/gdskills/bundled/skills/planning/docpack-review/SKILL.md +80 -0
- package/src/gdskills/bundled/skills/planning/docpack-review/input-contract.schema.json +20 -0
- package/src/gdskills/bundled/skills/planning/docpack-review/output-contract.schema.json +36 -0
- package/src/gdskills/bundled/skills/planning/interview/SKILL.codex.md +181 -0
- package/src/gdskills/bundled/skills/planning/interview/SKILL.cursor.md +181 -0
- package/src/gdskills/bundled/skills/planning/interview/SKILL.md +187 -0
- package/src/gdskills/bundled/skills/planning/interviewer/SKILL.claude.md +94 -0
- package/src/gdskills/bundled/skills/planning/interviewer/SKILL.codex.md +99 -0
- package/src/gdskills/bundled/skills/planning/interviewer/SKILL.cursor.md +99 -0
- package/src/gdskills/bundled/skills/planning/interviewer/SKILL.md +105 -0
- package/src/gdskills/bundled/skills/planning/patterns-researcher/SKILL.codex.md +33 -0
- package/src/gdskills/bundled/skills/planning/patterns-researcher/SKILL.cursor.md +33 -0
- package/src/gdskills/bundled/skills/planning/patterns-researcher/SKILL.md +237 -0
- package/src/gdskills/bundled/skills/planning/planner/SKILL.codex.md +33 -0
- package/src/gdskills/bundled/skills/planning/planner/SKILL.cursor.md +33 -0
- package/src/gdskills/bundled/skills/planning/planner/SKILL.md +190 -0
- package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.codex.md +193 -0
- package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.cursor.md +193 -0
- package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.md +193 -0
- package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.opencode.md +193 -0
- package/src/gdskills/bundled/skills/planning/prd-creator/SKILL.zed.md +193 -0
- package/src/gdskills/bundled/skills/planning/prd-creator/input-contract.schema.json +63 -0
- package/src/gdskills/bundled/skills/planning/prd-creator/output-contract.schema.json +175 -0
- package/src/gdskills/bundled/skills/planning/problem-definer/SKILL.codex.md +31 -0
- package/src/gdskills/bundled/skills/planning/problem-definer/SKILL.cursor.md +31 -0
- package/src/gdskills/bundled/skills/planning/problem-definer/SKILL.md +153 -0
- package/src/gdskills/bundled/skills/planning/project-discovery/SKILL.codex.md +32 -0
- package/src/gdskills/bundled/skills/planning/project-discovery/SKILL.cursor.md +32 -0
- package/src/gdskills/bundled/skills/planning/project-discovery/SKILL.md +166 -0
- package/src/gdskills/bundled/skills/planning/spec-writer/SKILL.codex.md +44 -0
- package/src/gdskills/bundled/skills/planning/spec-writer/SKILL.cursor.md +44 -0
- package/src/gdskills/bundled/skills/planning/spec-writer/SKILL.md +243 -0
- package/src/gdskills/bundled/skills/planning/stack-advisor/SKILL.codex.md +43 -0
- package/src/gdskills/bundled/skills/planning/stack-advisor/SKILL.cursor.md +43 -0
- package/src/gdskills/bundled/skills/planning/stack-advisor/SKILL.md +193 -0
- package/src/gdskills/bundled/skills/platform/agent-entrypoint-distiller/SKILL.md +47 -0
- package/src/gdskills/bundled/skills/platform/claude-md-management/SKILL.codex.md +87 -0
- package/src/gdskills/bundled/skills/platform/claude-md-management/SKILL.cursor.md +87 -0
- package/src/gdskills/bundled/skills/platform/claude-md-management/SKILL.md +87 -0
- package/src/gdskills/bundled/skills/platform/hookify/SKILL.codex.md +100 -0
- package/src/gdskills/bundled/skills/platform/hookify/SKILL.cursor.md +100 -0
- package/src/gdskills/bundled/skills/platform/hookify/SKILL.md +100 -0
- package/src/gdskills/bundled/skills/quality/changelog/SKILL.claude.md +45 -0
- package/src/gdskills/bundled/skills/quality/changelog/SKILL.codex.md +84 -0
- package/src/gdskills/bundled/skills/quality/changelog/SKILL.cursor.md +84 -0
- package/src/gdskills/bundled/skills/quality/changelog/SKILL.md +84 -0
- package/src/gdskills/bundled/skills/quality/commit/SKILL.codex.md +66 -0
- package/src/gdskills/bundled/skills/quality/commit/SKILL.cursor.md +66 -0
- package/src/gdskills/bundled/skills/quality/commit/SKILL.md +66 -0
- package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.claude.md +40 -0
- package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.codex.md +66 -0
- package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.cursor.md +66 -0
- package/src/gdskills/bundled/skills/quality/db-migrate/SKILL.md +66 -0
- package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.claude.md +45 -0
- package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.codex.md +81 -0
- package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.cursor.md +81 -0
- package/src/gdskills/bundled/skills/quality/dependency-update/SKILL.md +81 -0
- package/src/gdskills/bundled/skills/quality/deploy/SKILL.claude.md +42 -0
- package/src/gdskills/bundled/skills/quality/deploy/SKILL.codex.md +70 -0
- package/src/gdskills/bundled/skills/quality/deploy/SKILL.cursor.md +70 -0
- package/src/gdskills/bundled/skills/quality/deploy/SKILL.md +70 -0
- package/src/gdskills/bundled/skills/quality/metaproject-security/SKILL.md +103 -0
- package/src/gdskills/bundled/skills/quality/perf-check/SKILL.claude.md +48 -0
- package/src/gdskills/bundled/skills/quality/perf-check/SKILL.codex.md +83 -0
- package/src/gdskills/bundled/skills/quality/perf-check/SKILL.cursor.md +83 -0
- package/src/gdskills/bundled/skills/quality/perf-check/SKILL.md +83 -0
- package/src/gdskills/bundled/skills/quality/pr/SKILL.codex.md +75 -0
- package/src/gdskills/bundled/skills/quality/pr/SKILL.cursor.md +75 -0
- package/src/gdskills/bundled/skills/quality/pr/SKILL.md +75 -0
- package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.codex.md +364 -0
- package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.cursor.md +295 -0
- package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.md +378 -0
- package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.opencode.md +364 -0
- package/src/gdskills/bundled/skills/quality/pr-issue-documenter/SKILL.zed.md +38 -0
- package/src/gdskills/bundled/skills/quality/pr-issue-documenter/input-contract.schema.json +53 -0
- package/src/gdskills/bundled/skills/quality/pr-issue-documenter/output-contract.schema.json +46 -0
- package/src/gdskills/bundled/skills/quality/push/SKILL.codex.md +52 -0
- package/src/gdskills/bundled/skills/quality/push/SKILL.cursor.md +52 -0
- package/src/gdskills/bundled/skills/quality/push/SKILL.md +52 -0
- package/src/gdskills/bundled/skills/quality/security-audit/SKILL.claude.md +40 -0
- package/src/gdskills/bundled/skills/quality/security-audit/SKILL.codex.md +61 -0
- package/src/gdskills/bundled/skills/quality/security-audit/SKILL.cursor.md +61 -0
- package/src/gdskills/bundled/skills/quality/security-audit/SKILL.md +61 -0
- package/src/gdskills/bundled/skills/quality/test-gen/SKILL.claude.md +30 -0
- package/src/gdskills/bundled/skills/quality/test-gen/SKILL.codex.md +75 -0
- package/src/gdskills/bundled/skills/quality/test-gen/SKILL.cursor.md +75 -0
- package/src/gdskills/bundled/skills/quality/test-gen/SKILL.md +75 -0
- package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.codex.md +64 -0
- package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.cursor.md +74 -0
- package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.md +339 -0
- package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.opencode.md +48 -0
- package/src/gdskills/bundled/skills/quality/tests-creator/SKILL.zed.md +44 -0
- package/src/gdskills/bundled/skills/quality/tests-creator/input-contract.schema.json +121 -0
- package/src/gdskills/bundled/skills/quality/tests-creator/output-contract.schema.json +127 -0
- package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.codex.md +204 -0
- package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.cursor.md +204 -0
- package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.md +203 -0
- package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.opencode.md +204 -0
- package/src/gdskills/bundled/skills/review/code-ai-review/SKILL.zed.md +204 -0
- package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.codex.md +209 -0
- package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.cursor.md +209 -0
- package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.md +208 -0
- package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.opencode.md +209 -0
- package/src/gdskills/bundled/skills/review/code-b091-review/SKILL.zed.md +209 -0
- package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.codex.md +263 -0
- package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.cursor.md +263 -0
- package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.md +258 -0
- package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.opencode.md +263 -0
- package/src/gdskills/bundled/skills/review/code-mobx-store-review/SKILL.zed.md +263 -0
- package/src/gdskills/bundled/skills/review/code-style-review/SKILL.codex.md +175 -0
- package/src/gdskills/bundled/skills/review/code-style-review/SKILL.cursor.md +175 -0
- package/src/gdskills/bundled/skills/review/code-style-review/SKILL.md +168 -0
- package/src/gdskills/bundled/skills/review/code-style-review/SKILL.opencode.md +175 -0
- package/src/gdskills/bundled/skills/review/code-style-review/SKILL.zed.md +175 -0
- package/src/gdskills/bundled/skills/review/review-architecture/SKILL.md +360 -0
- package/src/gdskills/bundled/skills/review/review-backend/SKILL.md +337 -0
- package/src/gdskills/bundled/skills/review/review-clean-code/SKILL.md +477 -0
- package/src/gdskills/bundled/skills/review/review-core-boundaries/SKILL.md +93 -0
- package/src/gdskills/bundled/skills/review/review-flow-graph/SKILL.md +119 -0
- package/src/gdskills/bundled/skills/review/review-frontend/SKILL.md +595 -0
- package/src/gdskills/bundled/skills/review/review-frontend-conventions/SKILL.md +144 -0
- package/src/gdskills/bundled/skills/review/review-highload/SKILL.md +519 -0
- package/src/gdskills/bundled/skills/review/review-logic/SKILL.md +323 -0
- package/src/gdskills/bundled/skills/review/review-orchestrator/SKILL.md +927 -0
- package/src/gdskills/bundled/skills/review/review-orchestrator/input-contract.schema.json +153 -0
- package/src/gdskills/bundled/skills/review/review-orchestrator/output-contract.schema.json +77 -0
- package/src/gdskills/bundled/skills/review/review-orchestrator/review-context.schema.json +389 -0
- package/src/gdskills/bundled/skills/review/review-orchestrator/reviewer-finding.schema.json +189 -0
- package/src/gdskills/bundled/skills/review/review-orchestrator/reviewer-input.schema.json +241 -0
- package/src/gdskills/bundled/skills/review/review-performance/SKILL.md +344 -0
- package/src/gdskills/bundled/skills/review/review-pr-feedback/SKILL.md +327 -0
- package/src/gdskills/bundled/skills/review/review-security-code/SKILL.md +348 -0
- package/src/gdskills/bundled/skills/review/review-strict/SKILL.md +328 -0
- package/src/gdskills/bundled/skills/review/review-style/SKILL.md +343 -0
- package/src/gdskills/bundled/skills/review/review-testing-practices/SKILL.md +134 -0
- package/src/gdskills/bundled/skills/shared/git-merge-base.md +33 -0
- package/src/gdskills/contracts/agent-event.schema.json +32 -0
- package/src/gdskills/contracts/orchestrator-state.schema.json +58 -0
- package/src/gdskills/contracts/review-finding.schema.json +59 -0
- package/src/gdskills/contracts/subagent-dispatch.schema.json +123 -0
- package/src/gdskills/contracts/subagent-result.schema.json +136 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Feature Analyzer — Analysis Request: Async Search
|
|
2
|
+
|
|
3
|
+
## Source Repository *
|
|
4
|
+
|
|
5
|
+
| Field | Value |
|
|
6
|
+
|-------|-------|
|
|
7
|
+
| Local Path * | `<SOURCE_PROJECT_DIR>` |
|
|
8
|
+
| GitHub Repo | |
|
|
9
|
+
| Branch * | `develop-2` |
|
|
10
|
+
|
|
11
|
+
## Target Repository *
|
|
12
|
+
|
|
13
|
+
| Field | Value |
|
|
14
|
+
|-------|-------|
|
|
15
|
+
| Local Path * | `<TARGET_PROJECT_DIR>` |
|
|
16
|
+
| GitHub Repo | |
|
|
17
|
+
| Branch | `develop-2` |
|
|
18
|
+
|
|
19
|
+
## Analysis Mode *
|
|
20
|
+
|
|
21
|
+
- **Mode**: `B`
|
|
22
|
+
- `B` = Current State Analysis (explore entire codebase) — no base_branch needed
|
|
23
|
+
|
|
24
|
+
- **Base Branch**: _(not applicable for Mode B)_
|
|
25
|
+
|
|
26
|
+
## Focus (optional)
|
|
27
|
+
|
|
28
|
+
| Field | Value |
|
|
29
|
+
|-------|-------|
|
|
30
|
+
| Description | `async search` |
|
|
31
|
+
| Keywords | `async, search, query, find, filter, lookup` |
|
|
32
|
+
| Directories | `src/search, src/services, src/modules` |
|
|
33
|
+
| Scope | `api_contracts, business_logic, feature_formalization` |
|
|
34
|
+
|
|
35
|
+
## Ticket (optional)
|
|
36
|
+
|
|
37
|
+
| Field | Value |
|
|
38
|
+
|-------|-------|
|
|
39
|
+
| URL | |
|
|
40
|
+
| Title | |
|
|
41
|
+
| Description | |
|
|
42
|
+
|
|
43
|
+
## Automation Settings *
|
|
44
|
+
|
|
45
|
+
| Setting | Value | Description |
|
|
46
|
+
|---------|-------|-------------|
|
|
47
|
+
| skip_confirmation * | `true` | Пропустить Guard Clause |
|
|
48
|
+
| cache_strategy * | `fresh` | Всегда новый анализ |
|
|
49
|
+
| large_changeset_action * | `p0_only` | Только P0 файлы |
|
|
50
|
+
| large_changeset_max_files | `7` | Макс. кол-во файлов |
|
|
51
|
+
| timeout_strategy * | `partial` | Отдать что есть при таймауте |
|
|
52
|
+
| intermediate_review * | `include_in_report` | Включить в отчёт |
|
|
53
|
+
| github_mcp_fallback | `git_only` | Только локальный git |
|
|
54
|
+
|
|
55
|
+
## Output Configuration (optional)
|
|
56
|
+
|
|
57
|
+
| Field | Value |
|
|
58
|
+
|-------|-------|
|
|
59
|
+
| Base Dir | `.metaproject/jobs/<job-name>/ai/analysis` |
|
|
60
|
+
| Folder Name | `async-search-current-state` |
|
|
61
|
+
| Languages | `en, ru, ai` |
|
|
62
|
+
| Include Metrics | `true` |
|
package/src/gdskills/bundled/skills/orchestration/feature-analyzer/analysis-request.template.md
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Feature Analyzer — Analysis Request
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
ШАБЛОН ЗАПРОСА НА АНАЛИЗ
|
|
5
|
+
========================
|
|
6
|
+
Этот файл заполняется оркестратором (или человеком) ПЕРЕД запуском feature-analyzer.
|
|
7
|
+
Все обязательные поля (*) должны быть заполнены, чтобы скилл работал автономно.
|
|
8
|
+
|
|
9
|
+
Валидация: input-contract.schema.json
|
|
10
|
+
Использование: orchestrator-prompt.md читает этот файл и формирует промпт для субагента.
|
|
11
|
+
-->
|
|
12
|
+
|
|
13
|
+
## Source Repository *
|
|
14
|
+
|
|
15
|
+
| Field | Value |
|
|
16
|
+
|-------|-------|
|
|
17
|
+
| Local Path * | `/Users/dev/<PROJECT>` |
|
|
18
|
+
| GitHub Repo | `org/<PROJECT>` |
|
|
19
|
+
| Branch * | `feature/pipeline-variables` |
|
|
20
|
+
|
|
21
|
+
## Target Repository *
|
|
22
|
+
|
|
23
|
+
| Field | Value |
|
|
24
|
+
|-------|-------|
|
|
25
|
+
| Local Path * | `/Users/dev/<PROJECT>` |
|
|
26
|
+
| GitHub Repo | `org/<PROJECT>` |
|
|
27
|
+
| Branch | `main` |
|
|
28
|
+
|
|
29
|
+
## Analysis Mode *
|
|
30
|
+
|
|
31
|
+
<!-- Выбери один: A или B -->
|
|
32
|
+
|
|
33
|
+
- **Mode**: `A`
|
|
34
|
+
- `A` = Changes Analysis (diff base..HEAD) — requires base_branch
|
|
35
|
+
- `B` = Current State Analysis (explore entire codebase) — no base_branch needed
|
|
36
|
+
|
|
37
|
+
- **Base Branch** (only for Mode A): `main`
|
|
38
|
+
|
|
39
|
+
## Focus (optional)
|
|
40
|
+
|
|
41
|
+
| Field | Value |
|
|
42
|
+
|-------|-------|
|
|
43
|
+
| Description | `variables in pipelines` |
|
|
44
|
+
| Keywords | `variable, pipeline, param` |
|
|
45
|
+
| Directories | `src/pipelines, src/models` |
|
|
46
|
+
| Scope | `api_contracts, business_logic` |
|
|
47
|
+
|
|
48
|
+
<!-- Scope options: api_contracts, full_plan, breaking_changes, business_logic, feature_formalization -->
|
|
49
|
+
|
|
50
|
+
## Ticket (optional)
|
|
51
|
+
|
|
52
|
+
| Field | Value |
|
|
53
|
+
|-------|-------|
|
|
54
|
+
| URL | `https://github.com/org/repo/issues/123` |
|
|
55
|
+
| Title | |
|
|
56
|
+
| Description | |
|
|
57
|
+
|
|
58
|
+
## Automation Settings *
|
|
59
|
+
|
|
60
|
+
<!-- Эти настройки УСТРАНЯЮТ все 7 точек интерактивности скилла -->
|
|
61
|
+
|
|
62
|
+
| Setting | Value | Description |
|
|
63
|
+
|---------|-------|-------------|
|
|
64
|
+
| skip_confirmation * | `true` | Пропустить Guard Clause — не спрашивать подтверждение |
|
|
65
|
+
| cache_strategy * | `reuse_if_valid` | `fresh` / `reuse_if_valid` / `refresh` / `compare` |
|
|
66
|
+
| large_changeset_action * | `p0_only` | `directory` / `file_types` / `commits` / `p0_only` / `abort` |
|
|
67
|
+
| large_changeset_max_files | `7` | Макс. кол-во файлов |
|
|
68
|
+
| timeout_strategy * | `partial` | `partial` / `extend` / `prioritize_p0` / `abort` |
|
|
69
|
+
| intermediate_review * | `skip` | `skip` / `log_only` / `include_in_report` |
|
|
70
|
+
| github_mcp_fallback | `git_only` | `git_only` / `abort` |
|
|
71
|
+
|
|
72
|
+
## Output Configuration (optional)
|
|
73
|
+
|
|
74
|
+
| Field | Value |
|
|
75
|
+
|-------|-------|
|
|
76
|
+
| Base Dir | `<DOCS_ROOT>/analysis` |
|
|
77
|
+
| Folder Name | |
|
|
78
|
+
| Languages | `en, ru, ai` |
|
|
79
|
+
| Include Metrics | `true` |
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "feature-analyzer-input-contract",
|
|
4
|
+
"title": "Feature Analyzer Input Contract",
|
|
5
|
+
"description": "Defines all input parameters required to run feature-analyzer skill autonomously without user interaction. This schema eliminates all 7 interactive checkpoints by pre-providing answers.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"required": [
|
|
8
|
+
"source",
|
|
9
|
+
"target",
|
|
10
|
+
"analysis_mode",
|
|
11
|
+
"automation"
|
|
12
|
+
],
|
|
13
|
+
"properties": {
|
|
14
|
+
"source": {
|
|
15
|
+
"type": "object",
|
|
16
|
+
"description": "Source repository — where code to analyze lives",
|
|
17
|
+
"required": ["local_path", "branch"],
|
|
18
|
+
"properties": {
|
|
19
|
+
"local_path": {
|
|
20
|
+
"type": "string",
|
|
21
|
+
"description": "Absolute path to source repository on local filesystem",
|
|
22
|
+
"examples": ["/Users/dev/<PROJECT>"]
|
|
23
|
+
},
|
|
24
|
+
"github_repo": {
|
|
25
|
+
"type": "string",
|
|
26
|
+
"pattern": "^[\\w.-]+/[\\w.-]+$",
|
|
27
|
+
"description": "GitHub owner/repo identifier (optional, for MCP enrichment)",
|
|
28
|
+
"examples": ["<ORG>/<PROJECT>"]
|
|
29
|
+
},
|
|
30
|
+
"branch": {
|
|
31
|
+
"type": "string",
|
|
32
|
+
"description": "Branch to analyze in source repo",
|
|
33
|
+
"examples": ["feature/pipeline-variables"]
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"target": {
|
|
38
|
+
"type": "object",
|
|
39
|
+
"description": "Target repository — where implementation will happen (can be same as source for single-repo analysis)",
|
|
40
|
+
"required": ["local_path"],
|
|
41
|
+
"properties": {
|
|
42
|
+
"local_path": {
|
|
43
|
+
"type": "string",
|
|
44
|
+
"description": "Absolute path to target repository on local filesystem",
|
|
45
|
+
"examples": ["/Users/dev/<PROJECT>"]
|
|
46
|
+
},
|
|
47
|
+
"github_repo": {
|
|
48
|
+
"type": "string",
|
|
49
|
+
"pattern": "^[\\w.-]+/[\\w.-]+$",
|
|
50
|
+
"description": "GitHub owner/repo identifier (optional)",
|
|
51
|
+
"examples": ["<ORG>/<PROJECT>"]
|
|
52
|
+
},
|
|
53
|
+
"branch": {
|
|
54
|
+
"type": "string",
|
|
55
|
+
"description": "Current branch in target repo (optional, defaults to current HEAD)",
|
|
56
|
+
"examples": ["main", "develop"]
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"analysis_mode": {
|
|
61
|
+
"type": "object",
|
|
62
|
+
"description": "Controls which analysis mode to run (eliminates Guard Clause interaction point #2)",
|
|
63
|
+
"required": ["mode"],
|
|
64
|
+
"properties": {
|
|
65
|
+
"mode": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"enum": ["A", "B"],
|
|
68
|
+
"description": "A = Changes Analysis (diff base..HEAD), B = Current State Analysis (explore entire codebase)"
|
|
69
|
+
},
|
|
70
|
+
"base_branch": {
|
|
71
|
+
"type": "string",
|
|
72
|
+
"description": "REQUIRED if mode=A. Branch to diff against. Ignored if mode=B.",
|
|
73
|
+
"examples": ["main", "develop", "master"]
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
"if": {
|
|
77
|
+
"properties": { "mode": { "const": "A" } }
|
|
78
|
+
},
|
|
79
|
+
"then": {
|
|
80
|
+
"required": ["base_branch"]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"focus": {
|
|
84
|
+
"type": "object",
|
|
85
|
+
"description": "Optional focus area to boost priority of matching files",
|
|
86
|
+
"properties": {
|
|
87
|
+
"description": {
|
|
88
|
+
"type": "string",
|
|
89
|
+
"description": "Natural-language description of what to focus on",
|
|
90
|
+
"examples": ["variables in pipelines", "authentication changes", "DTO validations"]
|
|
91
|
+
},
|
|
92
|
+
"keywords": {
|
|
93
|
+
"type": "array",
|
|
94
|
+
"items": { "type": "string" },
|
|
95
|
+
"description": "Search keywords extracted from focus description",
|
|
96
|
+
"examples": [["variable", "pipeline", "param"]]
|
|
97
|
+
},
|
|
98
|
+
"directories": {
|
|
99
|
+
"type": "array",
|
|
100
|
+
"items": { "type": "string" },
|
|
101
|
+
"description": "Directories to prioritize during search",
|
|
102
|
+
"examples": [["src/pipelines", "src/models"]]
|
|
103
|
+
},
|
|
104
|
+
"scope": {
|
|
105
|
+
"type": "array",
|
|
106
|
+
"items": {
|
|
107
|
+
"type": "string",
|
|
108
|
+
"enum": [
|
|
109
|
+
"api_contracts",
|
|
110
|
+
"full_plan",
|
|
111
|
+
"breaking_changes",
|
|
112
|
+
"business_logic",
|
|
113
|
+
"feature_formalization"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"description": "What aspects of analysis to prioritize"
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"ticket": {
|
|
121
|
+
"type": "object",
|
|
122
|
+
"description": "Optional GitHub Issue/PR reference for business context",
|
|
123
|
+
"properties": {
|
|
124
|
+
"url": {
|
|
125
|
+
"type": "string",
|
|
126
|
+
"format": "uri",
|
|
127
|
+
"description": "Full URL to GitHub Issue or PR",
|
|
128
|
+
"examples": ["https://github.com/org/repo/issues/123"]
|
|
129
|
+
},
|
|
130
|
+
"title": {
|
|
131
|
+
"type": "string",
|
|
132
|
+
"description": "Ticket title (fallback if MCP unavailable)"
|
|
133
|
+
},
|
|
134
|
+
"description": {
|
|
135
|
+
"type": "string",
|
|
136
|
+
"description": "Ticket description (fallback if MCP unavailable)"
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"automation": {
|
|
141
|
+
"type": "object",
|
|
142
|
+
"description": "Pre-answers to ALL interactive checkpoints. This is what makes the skill run without user interaction.",
|
|
143
|
+
"required": [
|
|
144
|
+
"skip_confirmation",
|
|
145
|
+
"cache_strategy",
|
|
146
|
+
"large_changeset_strategy",
|
|
147
|
+
"timeout_strategy",
|
|
148
|
+
"intermediate_review"
|
|
149
|
+
],
|
|
150
|
+
"properties": {
|
|
151
|
+
"skip_confirmation": {
|
|
152
|
+
"type": "boolean",
|
|
153
|
+
"const": true,
|
|
154
|
+
"description": "Must be true for autonomous mode. Skips Guard Clause confirmation (interaction point #1)"
|
|
155
|
+
},
|
|
156
|
+
"cache_strategy": {
|
|
157
|
+
"type": "string",
|
|
158
|
+
"enum": ["fresh", "reuse_if_valid", "refresh", "compare"],
|
|
159
|
+
"default": "reuse_if_valid",
|
|
160
|
+
"description": "How to handle existing analysis cache (interaction point #4). fresh = always new, reuse_if_valid = use if <7d and same SHA, refresh = incremental update, compare = diff old vs new"
|
|
161
|
+
},
|
|
162
|
+
"large_changeset_strategy": {
|
|
163
|
+
"type": "object",
|
|
164
|
+
"description": "How to handle 50+ changed files (interaction point #5)",
|
|
165
|
+
"required": ["action"],
|
|
166
|
+
"properties": {
|
|
167
|
+
"action": {
|
|
168
|
+
"type": "string",
|
|
169
|
+
"enum": ["directory", "file_types", "commits", "p0_only", "abort"],
|
|
170
|
+
"default": "p0_only",
|
|
171
|
+
"description": "directory = filter by path, file_types = filter by extension, commits = first N commits, p0_only = analyze only P0 files, abort = stop analysis"
|
|
172
|
+
},
|
|
173
|
+
"filter_paths": {
|
|
174
|
+
"type": "array",
|
|
175
|
+
"items": { "type": "string" },
|
|
176
|
+
"description": "If action=directory, which paths to include"
|
|
177
|
+
},
|
|
178
|
+
"filter_extensions": {
|
|
179
|
+
"type": "array",
|
|
180
|
+
"items": { "type": "string" },
|
|
181
|
+
"description": "If action=file_types, which extensions to include",
|
|
182
|
+
"examples": [[".ts", ".tsx", ".dto.ts"]]
|
|
183
|
+
},
|
|
184
|
+
"max_commits": {
|
|
185
|
+
"type": "integer",
|
|
186
|
+
"minimum": 1,
|
|
187
|
+
"description": "If action=commits, how many commits to analyze"
|
|
188
|
+
},
|
|
189
|
+
"max_files": {
|
|
190
|
+
"type": "integer",
|
|
191
|
+
"minimum": 1,
|
|
192
|
+
"default": 7,
|
|
193
|
+
"description": "Maximum number of files to select regardless of strategy"
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"timeout_strategy": {
|
|
198
|
+
"type": "string",
|
|
199
|
+
"enum": ["partial", "extend", "prioritize_p0", "abort"],
|
|
200
|
+
"default": "partial",
|
|
201
|
+
"description": "What to do when approaching 30-minute limit (interaction point #6). partial = generate report with current findings, extend = continue 15 more min, prioritize_p0 = finish only P0 files, abort = stop"
|
|
202
|
+
},
|
|
203
|
+
"intermediate_review": {
|
|
204
|
+
"type": "string",
|
|
205
|
+
"enum": ["skip", "log_only", "include_in_report"],
|
|
206
|
+
"default": "skip",
|
|
207
|
+
"description": "How to handle intermediate review step (interaction point #7). skip = proceed directly to documentation, log_only = log summary but don't wait, include_in_report = add summary section to final report"
|
|
208
|
+
},
|
|
209
|
+
"github_mcp_fallback": {
|
|
210
|
+
"type": "string",
|
|
211
|
+
"enum": ["git_only", "abort"],
|
|
212
|
+
"default": "git_only",
|
|
213
|
+
"description": "What to do if GitHub MCP is unavailable. git_only = proceed with local git data, abort = stop analysis"
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
"output": {
|
|
218
|
+
"type": "object",
|
|
219
|
+
"description": "Output configuration",
|
|
220
|
+
"properties": {
|
|
221
|
+
"base_dir": {
|
|
222
|
+
"type": "string",
|
|
223
|
+
"description": "Base directory for analysis output. Defaults to <DOCS_ROOT>/analysis/",
|
|
224
|
+
"examples": ["/Users/dev/.<PROJECT>/docs/analysis"]
|
|
225
|
+
},
|
|
226
|
+
"folder_name": {
|
|
227
|
+
"type": "string",
|
|
228
|
+
"description": "Custom folder name. Defaults to <feature>-<date> for Mode A, <feature>-current-state-<date> for Mode B"
|
|
229
|
+
},
|
|
230
|
+
"languages": {
|
|
231
|
+
"type": "array",
|
|
232
|
+
"items": {
|
|
233
|
+
"type": "string",
|
|
234
|
+
"enum": ["en", "ru", "ai"]
|
|
235
|
+
},
|
|
236
|
+
"default": ["en", "ru", "ai"],
|
|
237
|
+
"description": "Which report languages to generate. ai = Gherkin format for AI agents"
|
|
238
|
+
},
|
|
239
|
+
"include_metrics": {
|
|
240
|
+
"type": "boolean",
|
|
241
|
+
"default": true,
|
|
242
|
+
"description": "Include analysis-metrics.md in output"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
}
|