@codyswann/lisa 2.189.6 → 2.189.8
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/dist/codex/agent-transformer.js +5 -1
- package/dist/codex/agent-transformer.js.map +1 -1
- package/dist/codex/skills-installer.d.ts.map +1 -1
- package/dist/codex/skills-installer.js +5 -2
- package/dist/codex/skills-installer.js.map +1 -1
- package/dist/core/lisa-skill-sources.d.ts +9 -0
- package/dist/core/lisa-skill-sources.d.ts.map +1 -1
- package/dist/core/lisa-skill-sources.js +17 -2
- package/dist/core/lisa-skill-sources.js.map +1 -1
- package/dist/opencode/skills-installer.d.ts.map +1 -1
- package/dist/opencode/skills-installer.js +4 -2
- package/dist/opencode/skills-installer.js.map +1 -1
- package/eslint-plugin-code-organization/__tests__/enforce-statement-order.test.js +20 -0
- package/eslint-plugin-code-organization/rules/enforce-statement-order.js +32 -7
- package/eslint-plugin-component-structure/__tests__/enforce-component-structure.test.js +61 -0
- package/eslint-plugin-component-structure/rules/enforce-component-structure.js +37 -31
- package/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa/agents/learnings-synthesizer.md +2 -2
- package/plugins/lisa/agents/linear-agent.md +3 -3
- package/plugins/lisa/commands/lisa/analyze-claude-remote.md +6 -0
- package/plugins/lisa/commands/lisa/automation-status.md +12 -0
- package/plugins/lisa/commands/lisa/codify-verification.md +6 -0
- package/plugins/lisa/commands/lisa/cross-pollinate.md +15 -0
- package/plugins/lisa/commands/lisa/debrief/apply.md +6 -0
- package/plugins/lisa/commands/lisa/debrief.md +6 -0
- package/plugins/lisa/commands/lisa/doctor.md +6 -0
- package/plugins/lisa/commands/lisa/exploratory-qa.md +7 -0
- package/plugins/lisa/commands/lisa/fix/linter-error.md +7 -0
- package/plugins/lisa/commands/lisa/generate-claude-remote-build-script.md +6 -0
- package/plugins/lisa/commands/lisa/git/commit.md +7 -0
- package/plugins/lisa/commands/lisa/git/prune.md +6 -0
- package/plugins/lisa/commands/lisa/git/submit-pr.md +7 -0
- package/plugins/lisa/commands/lisa/implement.md +6 -0
- package/plugins/lisa/commands/lisa/improve/code-complexity.md +6 -0
- package/plugins/lisa/commands/lisa/improve/max-lines-per-function.md +7 -0
- package/plugins/lisa/commands/lisa/improve/max-lines.md +7 -0
- package/plugins/lisa/commands/lisa/improve/test-coverage.md +7 -0
- package/plugins/lisa/commands/lisa/improve/tests.md +7 -0
- package/plugins/lisa/commands/lisa/intake-explain.md +31 -0
- package/plugins/lisa/commands/lisa/intake.md +6 -0
- package/plugins/lisa/commands/lisa/monitor.md +6 -0
- package/plugins/lisa/commands/lisa/parity-code-review.md +6 -0
- package/plugins/lisa/commands/lisa/parity-code-simplifier.md +6 -0
- package/plugins/lisa/commands/lisa/parity-coderabbit.md +6 -0
- package/plugins/lisa/commands/lisa/parity-safety-net-rules.md +6 -0
- package/plugins/lisa/commands/lisa/parity-sentry-sdk-setup.md +6 -0
- package/plugins/lisa/commands/lisa/parity-sentry-seer.md +6 -0
- package/plugins/lisa/commands/lisa/parity-skill-creator.md +6 -0
- package/plugins/lisa/commands/lisa/plan.md +6 -0
- package/plugins/lisa/commands/lisa/plugin-sync-explain.md +8 -0
- package/plugins/lisa/commands/lisa/product-walkthrough.md +7 -0
- package/plugins/lisa/commands/lisa/project-ideation.md +6 -0
- package/plugins/lisa/commands/lisa/pull-request/review.md +7 -0
- package/plugins/lisa/commands/lisa/queue-status.md +34 -0
- package/plugins/lisa/commands/lisa/repair-intake.md +6 -0
- package/plugins/lisa/commands/lisa/research.md +6 -0
- package/plugins/lisa/commands/lisa/review/local.md +6 -0
- package/plugins/lisa/commands/lisa/security/zap-scan.md +6 -0
- package/plugins/lisa/commands/lisa/setup/atlassian.md +7 -0
- package/plugins/lisa/commands/lisa/setup/confluence.md +7 -0
- package/plugins/lisa/commands/lisa/setup/github.md +7 -0
- package/plugins/lisa/commands/lisa/setup/jira.md +7 -0
- package/plugins/lisa/commands/lisa/setup/linear.md +7 -0
- package/plugins/lisa/commands/lisa/setup/notion.md +7 -0
- package/plugins/lisa/commands/lisa/setup-automations.md +6 -0
- package/plugins/lisa/commands/lisa/sync-down.md +7 -0
- package/plugins/lisa/commands/lisa/tear-down-automations.md +6 -0
- package/plugins/lisa/commands/lisa/validate-tracker-mapping.md +15 -0
- package/plugins/lisa/commands/lisa/verify-prd.md +6 -0
- package/plugins/lisa/commands/lisa/verify.md +6 -0
- package/plugins/lisa/commands/lisa/wiki/install.md +7 -0
- package/plugins/lisa/hooks/enforce-team-first.sh +1 -1
- package/plugins/lisa/hooks/enforce-verification-gate.sh +4 -4
- package/plugins/lisa/rules/eager/observability-audit.md +4 -4
- package/plugins/lisa/rules/eager/upstream-to-lisa.md +1 -1
- package/plugins/lisa/rules/reference/config-resolution.md +16 -16
- package/plugins/lisa/rules/reference/integration-access-layer.md +7 -7
- package/plugins/lisa/rules/reference/intent-routing.md +14 -14
- package/plugins/lisa/rules/reference/observability-audit.md +4 -4
- package/plugins/lisa/rules/reference/prd-lifecycle-rollup.md +5 -5
- package/plugins/lisa/rules/reference/repo-scope-split.md +3 -3
- package/plugins/lisa/rules/reference/upstream-to-lisa.md +1 -1
- package/plugins/lisa/rules/reference/usage-accounting.md +1 -1
- package/plugins/lisa/skills/lisa-acceptance-criteria/SKILL.md +71 -0
- package/plugins/lisa/skills/lisa-acceptance-criteria/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-agent-design-best-practices/SKILL.md +219 -0
- package/plugins/lisa/skills/lisa-agent-design-best-practices/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-analyze-claude-remote/SKILL.md +421 -0
- package/plugins/lisa/skills/lisa-analyze-claude-remote/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-atlassian-access/SKILL.md +361 -0
- package/plugins/lisa/skills/lisa-atlassian-access/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-automation-status/SKILL.md +111 -0
- package/plugins/lisa/skills/lisa-automation-status/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-bug-triage/SKILL.md +23 -0
- package/plugins/lisa/skills/lisa-bug-triage/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-codebase-research/SKILL.md +87 -0
- package/plugins/lisa/skills/lisa-codebase-research/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-codify-verification/SKILL.md +162 -0
- package/plugins/lisa/skills/lisa-codify-verification/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-confluence-prd-intake/SKILL.md +417 -0
- package/plugins/lisa/skills/lisa-confluence-prd-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-confluence-to-tracker/SKILL.md +362 -0
- package/plugins/lisa/skills/lisa-confluence-to-tracker/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-confluence-write-prd/SKILL.md +109 -0
- package/plugins/lisa/skills/lisa-confluence-write-prd/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-cross-pollinate/SKILL.md +175 -0
- package/plugins/lisa/skills/lisa-cross-pollinate/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-debrief/SKILL.md +94 -0
- package/plugins/lisa/skills/lisa-debrief/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-debrief-apply/SKILL.md +63 -0
- package/plugins/lisa/skills/lisa-debrief-apply/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-doctor/SKILL.md +336 -0
- package/plugins/lisa/skills/lisa-doctor/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-drive-pr-to-merge/SKILL.md +152 -0
- package/plugins/lisa/skills/lisa-drive-pr-to-merge/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-epic-triage/SKILL.md +28 -0
- package/plugins/lisa/skills/lisa-epic-triage/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-exploratory-qa/SKILL.md +91 -0
- package/plugins/lisa/skills/lisa-exploratory-qa/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-fix-linter-error/SKILL.md +45 -0
- package/plugins/lisa/skills/lisa-fix-linter-error/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-generate-claude-remote-build-script/SKILL.md +224 -0
- package/plugins/lisa/skills/lisa-generate-claude-remote-build-script/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-git-commit/SKILL.md +48 -0
- package/plugins/lisa/skills/lisa-git-commit/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-git-prune/SKILL.md +35 -0
- package/plugins/lisa/skills/lisa-git-prune/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-git-submit-pr/SKILL.md +113 -0
- package/plugins/lisa/skills/lisa-git-submit-pr/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-add-journey/SKILL.md +115 -0
- package/plugins/lisa/skills/lisa-github-add-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-build-intake/SKILL.md +446 -0
- package/plugins/lisa/skills/lisa-github-build-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-create/SKILL.md +101 -0
- package/plugins/lisa/skills/lisa-github-create/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-evidence/SKILL.md +110 -0
- package/plugins/lisa/skills/lisa-github-evidence/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-journey/SKILL.md +121 -0
- package/plugins/lisa/skills/lisa-github-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-prd-intake/SKILL.md +432 -0
- package/plugins/lisa/skills/lisa-github-prd-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-project-v2/SKILL.md +227 -0
- package/plugins/lisa/skills/lisa-github-project-v2/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-read-issue/SKILL.md +248 -0
- package/plugins/lisa/skills/lisa-github-read-issue/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-sync/SKILL.md +132 -0
- package/plugins/lisa/skills/lisa-github-sync/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-to-tracker/SKILL.md +347 -0
- package/plugins/lisa/skills/lisa-github-to-tracker/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-validate-issue/SKILL.md +330 -0
- package/plugins/lisa/skills/lisa-github-validate-issue/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-verify/SKILL.md +29 -0
- package/plugins/lisa/skills/lisa-github-verify/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-write-issue/SKILL.md +339 -0
- package/plugins/lisa/skills/lisa-github-write-issue/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-github-write-prd/SKILL.md +157 -0
- package/plugins/lisa/skills/lisa-github-write-prd/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-implement/SKILL.md +202 -0
- package/plugins/lisa/skills/lisa-implement/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-improve-code-complexity/SKILL.md +44 -0
- package/plugins/lisa/skills/lisa-improve-code-complexity/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-improve-max-lines/SKILL.md +45 -0
- package/plugins/lisa/skills/lisa-improve-max-lines/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-improve-max-lines-per-function/SKILL.md +46 -0
- package/plugins/lisa/skills/lisa-improve-max-lines-per-function/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-improve-test-coverage/SKILL.md +44 -0
- package/plugins/lisa/skills/lisa-improve-test-coverage/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-improve-tests/SKILL.md +47 -0
- package/plugins/lisa/skills/lisa-improve-tests/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-intake/SKILL.md +133 -0
- package/plugins/lisa/skills/lisa-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-intake-explain/SKILL.md +279 -0
- package/plugins/lisa/skills/lisa-intake-explain/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jam-access/SKILL.md +52 -0
- package/plugins/lisa/skills/lisa-jam-access/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-add-journey/SKILL.md +121 -0
- package/plugins/lisa/skills/lisa-jira-add-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-build-intake/SKILL.md +368 -0
- package/plugins/lisa/skills/lisa-jira-build-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-create/SKILL.md +154 -0
- package/plugins/lisa/skills/lisa-jira-create/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-evidence/SKILL.md +90 -0
- package/plugins/lisa/skills/lisa-jira-evidence/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-journey/SKILL.md +127 -0
- package/plugins/lisa/skills/lisa-jira-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-read-ticket/SKILL.md +198 -0
- package/plugins/lisa/skills/lisa-jira-read-ticket/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-sync/SKILL.md +108 -0
- package/plugins/lisa/skills/lisa-jira-sync/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-validate-ticket/SKILL.md +317 -0
- package/plugins/lisa/skills/lisa-jira-validate-ticket/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-verify/SKILL.md +30 -0
- package/plugins/lisa/skills/lisa-jira-verify/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jira-write-ticket/SKILL.md +267 -0
- package/plugins/lisa/skills/lisa-jira-write-ticket/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-jsdoc-best-practices/SKILL.md +432 -0
- package/plugins/lisa/skills/lisa-jsdoc-best-practices/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-access/SKILL.md +90 -0
- package/plugins/lisa/skills/lisa-linear-access/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-add-journey/SKILL.md +105 -0
- package/plugins/lisa/skills/lisa-linear-add-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-build-intake/SKILL.md +346 -0
- package/plugins/lisa/skills/lisa-linear-build-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-create/SKILL.md +146 -0
- package/plugins/lisa/skills/lisa-linear-create/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-evidence/SKILL.md +103 -0
- package/plugins/lisa/skills/lisa-linear-evidence/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-journey/SKILL.md +134 -0
- package/plugins/lisa/skills/lisa-linear-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-prd-intake/SKILL.md +383 -0
- package/plugins/lisa/skills/lisa-linear-prd-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-read-issue/SKILL.md +200 -0
- package/plugins/lisa/skills/lisa-linear-read-issue/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-sync/SKILL.md +127 -0
- package/plugins/lisa/skills/lisa-linear-sync/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-to-tracker/SKILL.md +344 -0
- package/plugins/lisa/skills/lisa-linear-to-tracker/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-validate-issue/SKILL.md +314 -0
- package/plugins/lisa/skills/lisa-linear-validate-issue/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-verify/SKILL.md +51 -0
- package/plugins/lisa/skills/lisa-linear-verify/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-write-issue/SKILL.md +292 -0
- package/plugins/lisa/skills/lisa-linear-write-issue/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-linear-write-prd/SKILL.md +96 -0
- package/plugins/lisa/skills/lisa-linear-write-prd/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-monitor/SKILL.md +69 -0
- package/plugins/lisa/skills/lisa-monitor/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-nightly-add-test-coverage/SKILL.md +40 -0
- package/plugins/lisa/skills/lisa-nightly-add-test-coverage/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-nightly-improve-tests/SKILL.md +29 -0
- package/plugins/lisa/skills/lisa-nightly-improve-tests/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-nightly-lower-code-complexity/SKILL.md +28 -0
- package/plugins/lisa/skills/lisa-nightly-lower-code-complexity/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-notion-access/SKILL.md +226 -0
- package/plugins/lisa/skills/lisa-notion-access/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-notion-prd-intake/SKILL.md +360 -0
- package/plugins/lisa/skills/lisa-notion-prd-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-notion-to-tracker/SKILL.md +359 -0
- package/plugins/lisa/skills/lisa-notion-to-tracker/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-notion-write-prd/SKILL.md +109 -0
- package/plugins/lisa/skills/lisa-notion-write-prd/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-parity-code-review/SKILL.md +83 -0
- package/plugins/lisa/skills/lisa-parity-code-review/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-parity-code-simplifier/SKILL.md +76 -0
- package/plugins/lisa/skills/lisa-parity-code-simplifier/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-parity-coderabbit/SKILL.md +77 -0
- package/plugins/lisa/skills/lisa-parity-coderabbit/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-parity-safety-net-rules/SKILL.md +144 -0
- package/plugins/lisa/skills/lisa-parity-safety-net-rules/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-parity-sentry-sdk-setup/SKILL.md +211 -0
- package/plugins/lisa/skills/lisa-parity-sentry-sdk-setup/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-parity-sentry-seer/SKILL.md +135 -0
- package/plugins/lisa/skills/lisa-parity-sentry-seer/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-parity-skill-creator/SKILL.md +151 -0
- package/plugins/lisa/skills/lisa-parity-skill-creator/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-performance-review/SKILL.md +94 -0
- package/plugins/lisa/skills/lisa-performance-review/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-plan/SKILL.md +60 -0
- package/plugins/lisa/skills/lisa-plan/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-plugin-sync-explain/SKILL.md +53 -0
- package/plugins/lisa/skills/lisa-plugin-sync-explain/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-posthog-access/SKILL.md +60 -0
- package/plugins/lisa/skills/lisa-posthog-access/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-prd-backlink/SKILL.md +265 -0
- package/plugins/lisa/skills/lisa-prd-backlink/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-prd-source-write/SKILL.md +101 -0
- package/plugins/lisa/skills/lisa-prd-source-write/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-prd-ticket-coverage/SKILL.md +170 -0
- package/plugins/lisa/skills/lisa-prd-ticket-coverage/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-product-walkthrough/SKILL.md +104 -0
- package/plugins/lisa/skills/lisa-product-walkthrough/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-project-ideation/SKILL.md +315 -0
- package/plugins/lisa/skills/lisa-project-ideation/agents/openai.yaml +6 -0
- package/plugins/lisa/skills/lisa-pull-request-review/SKILL.md +84 -0
- package/plugins/lisa/skills/lisa-pull-request-review/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-quality-review/SKILL.md +54 -0
- package/plugins/lisa/skills/lisa-quality-review/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-queue-status/SKILL.md +133 -0
- package/plugins/lisa/skills/lisa-queue-status/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-repair-intake/SKILL.md +1026 -0
- package/plugins/lisa/skills/lisa-repair-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-reproduce-bug/SKILL.md +96 -0
- package/plugins/lisa/skills/lisa-reproduce-bug/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-research/SKILL.md +68 -0
- package/plugins/lisa/skills/lisa-research/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-review-implementation/agents/openai.yaml +1 -1
- package/plugins/lisa/skills/lisa-review-local/SKILL.md +88 -0
- package/plugins/lisa/skills/lisa-review-local/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-root-cause-analysis/SKILL.md +155 -0
- package/plugins/lisa/skills/lisa-root-cause-analysis/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-security-review/SKILL.md +57 -0
- package/plugins/lisa/skills/lisa-security-review/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-security-zap-scan/SKILL.md +33 -0
- package/plugins/lisa/skills/lisa-security-zap-scan/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-sentry-access/SKILL.md +56 -0
- package/plugins/lisa/skills/lisa-sentry-access/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-setup-atlassian/SKILL.md +347 -0
- package/plugins/lisa/skills/lisa-setup-atlassian/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-setup-automations/SKILL.md +103 -0
- package/plugins/lisa/skills/lisa-setup-automations/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-setup-confluence/SKILL.md +254 -0
- package/plugins/lisa/skills/lisa-setup-confluence/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-setup-github/SKILL.md +268 -0
- package/plugins/lisa/skills/lisa-setup-github/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-setup-jira/SKILL.md +198 -0
- package/plugins/lisa/skills/lisa-setup-jira/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-setup-linear/SKILL.md +251 -0
- package/plugins/lisa/skills/lisa-setup-linear/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-setup-notion/SKILL.md +316 -0
- package/plugins/lisa/skills/lisa-setup-notion/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-sonarcloud-access/SKILL.md +71 -0
- package/plugins/lisa/skills/lisa-sonarcloud-access/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-spec-conformance/SKILL.md +159 -0
- package/plugins/lisa/skills/lisa-spec-conformance/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-sync-down/SKILL.md +171 -0
- package/plugins/lisa/skills/lisa-sync-down/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-task-decomposition/SKILL.md +127 -0
- package/plugins/lisa/skills/lisa-task-decomposition/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-task-triage/SKILL.md +23 -0
- package/plugins/lisa/skills/lisa-task-triage/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tdd-implementation/SKILL.md +86 -0
- package/plugins/lisa/skills/lisa-tdd-implementation/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tear-down-automations/SKILL.md +34 -0
- package/plugins/lisa/skills/lisa-tear-down-automations/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-test-strategy/SKILL.md +63 -0
- package/plugins/lisa/skills/lisa-test-strategy/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-ticket-triage/SKILL.md +186 -0
- package/plugins/lisa/skills/lisa-ticket-triage/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-add-journey/SKILL.md +26 -0
- package/plugins/lisa/skills/lisa-tracker-add-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-build-intake/SKILL.md +85 -0
- package/plugins/lisa/skills/lisa-tracker-build-intake/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-create/SKILL.md +26 -0
- package/plugins/lisa/skills/lisa-tracker-create/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-evidence/SKILL.md +52 -0
- package/plugins/lisa/skills/lisa-tracker-evidence/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-journey/SKILL.md +26 -0
- package/plugins/lisa/skills/lisa-tracker-journey/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-read/SKILL.md +27 -0
- package/plugins/lisa/skills/lisa-tracker-read/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-source-artifacts/SKILL.md +107 -0
- package/plugins/lisa/skills/lisa-tracker-source-artifacts/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-sync/SKILL.md +64 -0
- package/plugins/lisa/skills/lisa-tracker-sync/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-validate/SKILL.md +36 -0
- package/plugins/lisa/skills/lisa-tracker-validate/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-verify/SKILL.md +28 -0
- package/plugins/lisa/skills/lisa-tracker-verify/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-tracker-write/SKILL.md +53 -0
- package/plugins/lisa/skills/lisa-tracker-write/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-usage-accounting/SKILL.md +170 -0
- package/plugins/lisa/skills/lisa-usage-accounting/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-use-the-product/SKILL.md +86 -0
- package/plugins/lisa/skills/lisa-use-the-product/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-validate-tracker-mapping/SKILL.md +188 -0
- package/plugins/lisa/skills/lisa-validate-tracker-mapping/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-verification-lifecycle/SKILL.md +365 -0
- package/plugins/lisa/skills/lisa-verification-lifecycle/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-verify/SKILL.md +52 -0
- package/plugins/lisa/skills/lisa-verify/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-verify-prd/SKILL.md +392 -0
- package/plugins/lisa/skills/lisa-verify-prd/agents/openai.yaml +4 -0
- package/plugins/lisa/skills/lisa-wiki-install/SKILL.md +101 -0
- package/plugins/lisa/skills/lisa-wiki-install/agents/openai.yaml +4 -0
- package/plugins/lisa-agy/agents/learnings-synthesizer.md +2 -2
- package/plugins/lisa-agy/agents/linear-agent.md +3 -3
- package/plugins/lisa-agy/commands/lisa/analyze-claude-remote.md +6 -0
- package/plugins/lisa-agy/commands/lisa/automation-status.md +12 -0
- package/plugins/lisa-agy/commands/lisa/codify-verification.md +6 -0
- package/plugins/lisa-agy/commands/lisa/cross-pollinate.md +15 -0
- package/plugins/lisa-agy/commands/lisa/debrief/apply.md +6 -0
- package/plugins/lisa-agy/commands/lisa/debrief.md +6 -0
- package/plugins/lisa-agy/commands/lisa/doctor.md +6 -0
- package/plugins/lisa-agy/commands/lisa/exploratory-qa.md +7 -0
- package/plugins/lisa-agy/commands/lisa/fix/linter-error.md +7 -0
- package/plugins/lisa-agy/commands/lisa/generate-claude-remote-build-script.md +6 -0
- package/plugins/lisa-agy/commands/lisa/git/commit.md +7 -0
- package/plugins/lisa-agy/commands/lisa/git/prune.md +6 -0
- package/plugins/lisa-agy/commands/lisa/git/submit-pr.md +7 -0
- package/plugins/lisa-agy/commands/lisa/implement.md +6 -0
- package/plugins/lisa-agy/commands/lisa/improve/code-complexity.md +6 -0
- package/plugins/lisa-agy/commands/lisa/improve/max-lines-per-function.md +7 -0
- package/plugins/lisa-agy/commands/lisa/improve/max-lines.md +7 -0
- package/plugins/lisa-agy/commands/lisa/improve/test-coverage.md +7 -0
- package/plugins/lisa-agy/commands/lisa/improve/tests.md +7 -0
- package/plugins/lisa-agy/commands/lisa/intake-explain.md +31 -0
- package/plugins/lisa-agy/commands/lisa/intake.md +6 -0
- package/plugins/lisa-agy/commands/lisa/monitor.md +6 -0
- package/plugins/lisa-agy/commands/lisa/parity-code-review.md +6 -0
- package/plugins/lisa-agy/commands/lisa/parity-code-simplifier.md +6 -0
- package/plugins/lisa-agy/commands/lisa/parity-coderabbit.md +6 -0
- package/plugins/lisa-agy/commands/lisa/parity-safety-net-rules.md +6 -0
- package/plugins/lisa-agy/commands/lisa/parity-sentry-sdk-setup.md +6 -0
- package/plugins/lisa-agy/commands/lisa/parity-sentry-seer.md +6 -0
- package/plugins/lisa-agy/commands/lisa/parity-skill-creator.md +6 -0
- package/plugins/lisa-agy/commands/lisa/plan.md +6 -0
- package/plugins/lisa-agy/commands/lisa/plugin-sync-explain.md +8 -0
- package/plugins/lisa-agy/commands/lisa/product-walkthrough.md +7 -0
- package/plugins/lisa-agy/commands/lisa/project-ideation.md +6 -0
- package/plugins/lisa-agy/commands/lisa/pull-request/review.md +7 -0
- package/plugins/lisa-agy/commands/lisa/queue-status.md +34 -0
- package/plugins/lisa-agy/commands/lisa/repair-intake.md +6 -0
- package/plugins/lisa-agy/commands/lisa/research.md +6 -0
- package/plugins/lisa-agy/commands/lisa/review/local.md +6 -0
- package/plugins/lisa-agy/commands/lisa/security/zap-scan.md +6 -0
- package/plugins/lisa-agy/commands/lisa/setup/atlassian.md +7 -0
- package/plugins/lisa-agy/commands/lisa/setup/confluence.md +7 -0
- package/plugins/lisa-agy/commands/lisa/setup/github.md +7 -0
- package/plugins/lisa-agy/commands/lisa/setup/jira.md +7 -0
- package/plugins/lisa-agy/commands/lisa/setup/linear.md +7 -0
- package/plugins/lisa-agy/commands/lisa/setup/notion.md +7 -0
- package/plugins/lisa-agy/commands/lisa/setup-automations.md +6 -0
- package/plugins/lisa-agy/commands/lisa/sync-down.md +7 -0
- package/plugins/lisa-agy/commands/lisa/tear-down-automations.md +6 -0
- package/plugins/lisa-agy/commands/lisa/validate-tracker-mapping.md +15 -0
- package/plugins/lisa-agy/commands/lisa/verify-prd.md +6 -0
- package/plugins/lisa-agy/commands/lisa/verify.md +6 -0
- package/plugins/lisa-agy/commands/lisa/wiki/install.md +7 -0
- package/plugins/lisa-agy/plugin.json +1 -1
- package/plugins/lisa-agy/skills/lisa-acceptance-criteria/SKILL.md +71 -0
- package/plugins/lisa-agy/skills/lisa-agent-design-best-practices/SKILL.md +219 -0
- package/plugins/lisa-agy/skills/lisa-analyze-claude-remote/SKILL.md +421 -0
- package/plugins/lisa-agy/skills/lisa-atlassian-access/SKILL.md +361 -0
- package/plugins/lisa-agy/skills/lisa-automation-status/SKILL.md +111 -0
- package/plugins/lisa-agy/skills/lisa-bug-triage/SKILL.md +23 -0
- package/plugins/lisa-agy/skills/lisa-codebase-research/SKILL.md +87 -0
- package/plugins/lisa-agy/skills/lisa-codify-verification/SKILL.md +162 -0
- package/plugins/lisa-agy/skills/lisa-confluence-prd-intake/SKILL.md +417 -0
- package/plugins/lisa-agy/skills/lisa-confluence-to-tracker/SKILL.md +362 -0
- package/plugins/lisa-agy/skills/lisa-confluence-write-prd/SKILL.md +109 -0
- package/plugins/lisa-agy/skills/lisa-cross-pollinate/SKILL.md +175 -0
- package/plugins/lisa-agy/skills/lisa-debrief/SKILL.md +94 -0
- package/plugins/lisa-agy/skills/lisa-debrief-apply/SKILL.md +63 -0
- package/plugins/lisa-agy/skills/lisa-doctor/SKILL.md +336 -0
- package/plugins/lisa-agy/skills/lisa-drive-pr-to-merge/SKILL.md +152 -0
- package/plugins/lisa-agy/skills/lisa-epic-triage/SKILL.md +28 -0
- package/plugins/lisa-agy/skills/lisa-exploratory-qa/SKILL.md +91 -0
- package/plugins/lisa-agy/skills/lisa-fix-linter-error/SKILL.md +45 -0
- package/plugins/lisa-agy/skills/lisa-generate-claude-remote-build-script/SKILL.md +224 -0
- package/plugins/lisa-agy/skills/lisa-git-commit/SKILL.md +48 -0
- package/plugins/lisa-agy/skills/lisa-git-prune/SKILL.md +35 -0
- package/plugins/lisa-agy/skills/lisa-git-submit-pr/SKILL.md +113 -0
- package/plugins/lisa-agy/skills/lisa-github-add-journey/SKILL.md +115 -0
- package/plugins/lisa-agy/skills/lisa-github-build-intake/SKILL.md +446 -0
- package/plugins/lisa-agy/skills/lisa-github-create/SKILL.md +101 -0
- package/plugins/lisa-agy/skills/lisa-github-evidence/SKILL.md +110 -0
- package/plugins/lisa-agy/skills/lisa-github-journey/SKILL.md +121 -0
- package/plugins/lisa-agy/skills/lisa-github-prd-intake/SKILL.md +432 -0
- package/plugins/lisa-agy/skills/lisa-github-project-v2/SKILL.md +227 -0
- package/plugins/lisa-agy/skills/lisa-github-read-issue/SKILL.md +248 -0
- package/plugins/lisa-agy/skills/lisa-github-sync/SKILL.md +132 -0
- package/plugins/lisa-agy/skills/lisa-github-to-tracker/SKILL.md +347 -0
- package/plugins/lisa-agy/skills/lisa-github-validate-issue/SKILL.md +330 -0
- package/plugins/lisa-agy/skills/lisa-github-verify/SKILL.md +29 -0
- package/plugins/lisa-agy/skills/lisa-github-write-issue/SKILL.md +339 -0
- package/plugins/lisa-agy/skills/lisa-github-write-prd/SKILL.md +157 -0
- package/plugins/lisa-agy/skills/lisa-implement/SKILL.md +202 -0
- package/plugins/lisa-agy/skills/lisa-improve-code-complexity/SKILL.md +44 -0
- package/plugins/lisa-agy/skills/lisa-improve-max-lines/SKILL.md +45 -0
- package/plugins/lisa-agy/skills/lisa-improve-max-lines-per-function/SKILL.md +46 -0
- package/plugins/lisa-agy/skills/lisa-improve-test-coverage/SKILL.md +44 -0
- package/plugins/lisa-agy/skills/lisa-improve-tests/SKILL.md +47 -0
- package/plugins/lisa-agy/skills/lisa-intake/SKILL.md +133 -0
- package/plugins/lisa-agy/skills/lisa-intake-explain/SKILL.md +279 -0
- package/plugins/lisa-agy/skills/lisa-jam-access/SKILL.md +52 -0
- package/plugins/lisa-agy/skills/lisa-jira-add-journey/SKILL.md +121 -0
- package/plugins/lisa-agy/skills/lisa-jira-build-intake/SKILL.md +368 -0
- package/plugins/lisa-agy/skills/lisa-jira-create/SKILL.md +154 -0
- package/plugins/lisa-agy/skills/lisa-jira-evidence/SKILL.md +90 -0
- package/plugins/lisa-agy/skills/lisa-jira-journey/SKILL.md +127 -0
- package/plugins/lisa-agy/skills/lisa-jira-read-ticket/SKILL.md +198 -0
- package/plugins/lisa-agy/skills/lisa-jira-sync/SKILL.md +108 -0
- package/plugins/lisa-agy/skills/lisa-jira-validate-ticket/SKILL.md +317 -0
- package/plugins/lisa-agy/skills/lisa-jira-verify/SKILL.md +30 -0
- package/plugins/lisa-agy/skills/lisa-jira-write-ticket/SKILL.md +267 -0
- package/plugins/lisa-agy/skills/lisa-jsdoc-best-practices/SKILL.md +432 -0
- package/plugins/lisa-agy/skills/lisa-linear-access/SKILL.md +90 -0
- package/plugins/lisa-agy/skills/lisa-linear-add-journey/SKILL.md +105 -0
- package/plugins/lisa-agy/skills/lisa-linear-build-intake/SKILL.md +346 -0
- package/plugins/lisa-agy/skills/lisa-linear-create/SKILL.md +146 -0
- package/plugins/lisa-agy/skills/lisa-linear-evidence/SKILL.md +103 -0
- package/plugins/lisa-agy/skills/lisa-linear-journey/SKILL.md +134 -0
- package/plugins/lisa-agy/skills/lisa-linear-prd-intake/SKILL.md +383 -0
- package/plugins/lisa-agy/skills/lisa-linear-read-issue/SKILL.md +200 -0
- package/plugins/lisa-agy/skills/lisa-linear-sync/SKILL.md +127 -0
- package/plugins/lisa-agy/skills/lisa-linear-to-tracker/SKILL.md +344 -0
- package/plugins/lisa-agy/skills/lisa-linear-validate-issue/SKILL.md +314 -0
- package/plugins/lisa-agy/skills/lisa-linear-verify/SKILL.md +51 -0
- package/plugins/lisa-agy/skills/lisa-linear-write-issue/SKILL.md +292 -0
- package/plugins/lisa-agy/skills/lisa-linear-write-prd/SKILL.md +96 -0
- package/plugins/lisa-agy/skills/lisa-monitor/SKILL.md +69 -0
- package/plugins/lisa-agy/skills/lisa-nightly-add-test-coverage/SKILL.md +40 -0
- package/plugins/lisa-agy/skills/lisa-nightly-improve-tests/SKILL.md +29 -0
- package/plugins/lisa-agy/skills/lisa-nightly-lower-code-complexity/SKILL.md +28 -0
- package/plugins/lisa-agy/skills/lisa-notion-access/SKILL.md +226 -0
- package/plugins/lisa-agy/skills/lisa-notion-prd-intake/SKILL.md +360 -0
- package/plugins/lisa-agy/skills/lisa-notion-to-tracker/SKILL.md +359 -0
- package/plugins/lisa-agy/skills/lisa-notion-write-prd/SKILL.md +109 -0
- package/plugins/lisa-agy/skills/lisa-parity-code-review/SKILL.md +83 -0
- package/plugins/lisa-agy/skills/lisa-parity-code-simplifier/SKILL.md +76 -0
- package/plugins/lisa-agy/skills/lisa-parity-coderabbit/SKILL.md +77 -0
- package/plugins/lisa-agy/skills/lisa-parity-safety-net-rules/SKILL.md +144 -0
- package/plugins/lisa-agy/skills/lisa-parity-sentry-sdk-setup/SKILL.md +211 -0
- package/plugins/lisa-agy/skills/lisa-parity-sentry-seer/SKILL.md +135 -0
- package/plugins/lisa-agy/skills/lisa-parity-skill-creator/SKILL.md +151 -0
- package/plugins/lisa-agy/skills/lisa-performance-review/SKILL.md +94 -0
- package/plugins/lisa-agy/skills/lisa-plan/SKILL.md +60 -0
- package/plugins/lisa-agy/skills/lisa-plugin-sync-explain/SKILL.md +53 -0
- package/plugins/lisa-agy/skills/lisa-posthog-access/SKILL.md +60 -0
- package/plugins/lisa-agy/skills/lisa-prd-backlink/SKILL.md +265 -0
- package/plugins/lisa-agy/skills/lisa-prd-source-write/SKILL.md +101 -0
- package/plugins/lisa-agy/skills/lisa-prd-ticket-coverage/SKILL.md +170 -0
- package/plugins/lisa-agy/skills/lisa-product-walkthrough/SKILL.md +104 -0
- package/plugins/lisa-agy/skills/lisa-project-ideation/SKILL.md +315 -0
- package/plugins/lisa-agy/skills/lisa-pull-request-review/SKILL.md +84 -0
- package/plugins/lisa-agy/skills/lisa-quality-review/SKILL.md +54 -0
- package/plugins/lisa-agy/skills/lisa-queue-status/SKILL.md +133 -0
- package/plugins/lisa-agy/skills/lisa-repair-intake/SKILL.md +1026 -0
- package/plugins/lisa-agy/skills/lisa-reproduce-bug/SKILL.md +96 -0
- package/plugins/lisa-agy/skills/lisa-research/SKILL.md +68 -0
- package/plugins/lisa-agy/skills/lisa-review-local/SKILL.md +88 -0
- package/plugins/lisa-agy/skills/lisa-root-cause-analysis/SKILL.md +155 -0
- package/plugins/lisa-agy/skills/lisa-security-review/SKILL.md +57 -0
- package/plugins/lisa-agy/skills/lisa-security-zap-scan/SKILL.md +33 -0
- package/plugins/lisa-agy/skills/lisa-sentry-access/SKILL.md +56 -0
- package/plugins/lisa-agy/skills/lisa-setup-atlassian/SKILL.md +347 -0
- package/plugins/lisa-agy/skills/lisa-setup-automations/SKILL.md +103 -0
- package/plugins/lisa-agy/skills/lisa-setup-confluence/SKILL.md +254 -0
- package/plugins/lisa-agy/skills/lisa-setup-github/SKILL.md +268 -0
- package/plugins/lisa-agy/skills/lisa-setup-jira/SKILL.md +198 -0
- package/plugins/lisa-agy/skills/lisa-setup-linear/SKILL.md +251 -0
- package/plugins/lisa-agy/skills/lisa-setup-notion/SKILL.md +316 -0
- package/plugins/lisa-agy/skills/lisa-sonarcloud-access/SKILL.md +71 -0
- package/plugins/lisa-agy/skills/lisa-spec-conformance/SKILL.md +159 -0
- package/plugins/lisa-agy/skills/lisa-sync-down/SKILL.md +171 -0
- package/plugins/lisa-agy/skills/lisa-task-decomposition/SKILL.md +127 -0
- package/plugins/lisa-agy/skills/lisa-task-triage/SKILL.md +23 -0
- package/plugins/lisa-agy/skills/lisa-tdd-implementation/SKILL.md +86 -0
- package/plugins/lisa-agy/skills/lisa-tear-down-automations/SKILL.md +34 -0
- package/plugins/lisa-agy/skills/lisa-test-strategy/SKILL.md +63 -0
- package/plugins/lisa-agy/skills/lisa-ticket-triage/SKILL.md +186 -0
- package/plugins/lisa-agy/skills/lisa-tracker-add-journey/SKILL.md +26 -0
- package/plugins/lisa-agy/skills/lisa-tracker-build-intake/SKILL.md +85 -0
- package/plugins/lisa-agy/skills/lisa-tracker-create/SKILL.md +26 -0
- package/plugins/lisa-agy/skills/lisa-tracker-evidence/SKILL.md +52 -0
- package/plugins/lisa-agy/skills/lisa-tracker-journey/SKILL.md +26 -0
- package/plugins/lisa-agy/skills/lisa-tracker-read/SKILL.md +27 -0
- package/plugins/lisa-agy/skills/lisa-tracker-source-artifacts/SKILL.md +107 -0
- package/plugins/lisa-agy/skills/lisa-tracker-sync/SKILL.md +64 -0
- package/plugins/lisa-agy/skills/lisa-tracker-validate/SKILL.md +36 -0
- package/plugins/lisa-agy/skills/lisa-tracker-verify/SKILL.md +28 -0
- package/plugins/lisa-agy/skills/lisa-tracker-write/SKILL.md +53 -0
- package/plugins/lisa-agy/skills/lisa-usage-accounting/SKILL.md +170 -0
- package/plugins/lisa-agy/skills/lisa-use-the-product/SKILL.md +86 -0
- package/plugins/lisa-agy/skills/lisa-validate-tracker-mapping/SKILL.md +188 -0
- package/plugins/lisa-agy/skills/lisa-verification-lifecycle/SKILL.md +365 -0
- package/plugins/lisa-agy/skills/lisa-verify/SKILL.md +52 -0
- package/plugins/lisa-agy/skills/lisa-verify-prd/SKILL.md +392 -0
- package/plugins/lisa-agy/skills/lisa-wiki-install/SKILL.md +101 -0
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-agy/plugin.json +1 -1
- package/plugins/lisa-cdk-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cdk-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-copilot/agents/learnings-synthesizer.agent.md +2 -2
- package/plugins/lisa-copilot/agents/linear-agent.agent.md +3 -3
- package/plugins/lisa-copilot/commands/lisa/analyze-claude-remote.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/automation-status.md +12 -0
- package/plugins/lisa-copilot/commands/lisa/codify-verification.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/cross-pollinate.md +15 -0
- package/plugins/lisa-copilot/commands/lisa/debrief/apply.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/debrief.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/doctor.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/exploratory-qa.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/fix/linter-error.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/generate-claude-remote-build-script.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/git/commit.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/git/prune.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/git/submit-pr.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/implement.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/improve/code-complexity.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/improve/max-lines-per-function.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/improve/max-lines.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/improve/test-coverage.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/improve/tests.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/intake-explain.md +31 -0
- package/plugins/lisa-copilot/commands/lisa/intake.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/monitor.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/parity-code-review.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/parity-code-simplifier.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/parity-coderabbit.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/parity-safety-net-rules.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/parity-sentry-sdk-setup.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/parity-sentry-seer.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/parity-skill-creator.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/plan.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/plugin-sync-explain.md +8 -0
- package/plugins/lisa-copilot/commands/lisa/product-walkthrough.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/project-ideation.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/pull-request/review.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/queue-status.md +34 -0
- package/plugins/lisa-copilot/commands/lisa/repair-intake.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/research.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/review/local.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/security/zap-scan.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/setup/atlassian.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/setup/confluence.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/setup/github.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/setup/jira.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/setup/linear.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/setup/notion.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/setup-automations.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/sync-down.md +7 -0
- package/plugins/lisa-copilot/commands/lisa/tear-down-automations.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/validate-tracker-mapping.md +15 -0
- package/plugins/lisa-copilot/commands/lisa/verify-prd.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/verify.md +6 -0
- package/plugins/lisa-copilot/commands/lisa/wiki/install.md +7 -0
- package/plugins/lisa-copilot/hooks/enforce-verification-gate.sh +4 -4
- package/plugins/lisa-copilot/rules/eager/observability-audit.md +4 -4
- package/plugins/lisa-copilot/rules/eager/upstream-to-lisa.md +1 -1
- package/plugins/lisa-copilot/rules/reference/config-resolution.md +16 -16
- package/plugins/lisa-copilot/rules/reference/integration-access-layer.md +7 -7
- package/plugins/lisa-copilot/rules/reference/intent-routing.md +14 -14
- package/plugins/lisa-copilot/rules/reference/observability-audit.md +4 -4
- package/plugins/lisa-copilot/rules/reference/prd-lifecycle-rollup.md +5 -5
- package/plugins/lisa-copilot/rules/reference/repo-scope-split.md +3 -3
- package/plugins/lisa-copilot/rules/reference/upstream-to-lisa.md +1 -1
- package/plugins/lisa-copilot/rules/reference/usage-accounting.md +1 -1
- package/plugins/lisa-copilot/skills/lisa-acceptance-criteria/SKILL.md +71 -0
- package/plugins/lisa-copilot/skills/lisa-agent-design-best-practices/SKILL.md +219 -0
- package/plugins/lisa-copilot/skills/lisa-analyze-claude-remote/SKILL.md +421 -0
- package/plugins/lisa-copilot/skills/lisa-atlassian-access/SKILL.md +361 -0
- package/plugins/lisa-copilot/skills/lisa-automation-status/SKILL.md +111 -0
- package/plugins/lisa-copilot/skills/lisa-bug-triage/SKILL.md +23 -0
- package/plugins/lisa-copilot/skills/lisa-codebase-research/SKILL.md +87 -0
- package/plugins/lisa-copilot/skills/lisa-codify-verification/SKILL.md +162 -0
- package/plugins/lisa-copilot/skills/lisa-confluence-prd-intake/SKILL.md +417 -0
- package/plugins/lisa-copilot/skills/lisa-confluence-to-tracker/SKILL.md +362 -0
- package/plugins/lisa-copilot/skills/lisa-confluence-write-prd/SKILL.md +109 -0
- package/plugins/lisa-copilot/skills/lisa-cross-pollinate/SKILL.md +175 -0
- package/plugins/lisa-copilot/skills/lisa-debrief/SKILL.md +94 -0
- package/plugins/lisa-copilot/skills/lisa-debrief-apply/SKILL.md +63 -0
- package/plugins/lisa-copilot/skills/lisa-doctor/SKILL.md +336 -0
- package/plugins/lisa-copilot/skills/lisa-drive-pr-to-merge/SKILL.md +152 -0
- package/plugins/lisa-copilot/skills/lisa-epic-triage/SKILL.md +28 -0
- package/plugins/lisa-copilot/skills/lisa-exploratory-qa/SKILL.md +91 -0
- package/plugins/lisa-copilot/skills/lisa-fix-linter-error/SKILL.md +45 -0
- package/plugins/lisa-copilot/skills/lisa-generate-claude-remote-build-script/SKILL.md +224 -0
- package/plugins/lisa-copilot/skills/lisa-git-commit/SKILL.md +48 -0
- package/plugins/lisa-copilot/skills/lisa-git-prune/SKILL.md +35 -0
- package/plugins/lisa-copilot/skills/lisa-git-submit-pr/SKILL.md +113 -0
- package/plugins/lisa-copilot/skills/lisa-github-add-journey/SKILL.md +115 -0
- package/plugins/lisa-copilot/skills/lisa-github-build-intake/SKILL.md +446 -0
- package/plugins/lisa-copilot/skills/lisa-github-create/SKILL.md +101 -0
- package/plugins/lisa-copilot/skills/lisa-github-evidence/SKILL.md +110 -0
- package/plugins/lisa-copilot/skills/lisa-github-journey/SKILL.md +121 -0
- package/plugins/lisa-copilot/skills/lisa-github-prd-intake/SKILL.md +432 -0
- package/plugins/lisa-copilot/skills/lisa-github-project-v2/SKILL.md +227 -0
- package/plugins/lisa-copilot/skills/lisa-github-read-issue/SKILL.md +248 -0
- package/plugins/lisa-copilot/skills/lisa-github-sync/SKILL.md +132 -0
- package/plugins/lisa-copilot/skills/lisa-github-to-tracker/SKILL.md +347 -0
- package/plugins/lisa-copilot/skills/lisa-github-validate-issue/SKILL.md +330 -0
- package/plugins/lisa-copilot/skills/lisa-github-verify/SKILL.md +29 -0
- package/plugins/lisa-copilot/skills/lisa-github-write-issue/SKILL.md +339 -0
- package/plugins/lisa-copilot/skills/lisa-github-write-prd/SKILL.md +157 -0
- package/plugins/lisa-copilot/skills/lisa-implement/SKILL.md +202 -0
- package/plugins/lisa-copilot/skills/lisa-improve-code-complexity/SKILL.md +44 -0
- package/plugins/lisa-copilot/skills/lisa-improve-max-lines/SKILL.md +45 -0
- package/plugins/lisa-copilot/skills/lisa-improve-max-lines-per-function/SKILL.md +46 -0
- package/plugins/lisa-copilot/skills/lisa-improve-test-coverage/SKILL.md +44 -0
- package/plugins/lisa-copilot/skills/lisa-improve-tests/SKILL.md +47 -0
- package/plugins/lisa-copilot/skills/lisa-intake/SKILL.md +133 -0
- package/plugins/lisa-copilot/skills/lisa-intake-explain/SKILL.md +279 -0
- package/plugins/lisa-copilot/skills/lisa-jam-access/SKILL.md +52 -0
- package/plugins/lisa-copilot/skills/lisa-jira-add-journey/SKILL.md +121 -0
- package/plugins/lisa-copilot/skills/lisa-jira-build-intake/SKILL.md +368 -0
- package/plugins/lisa-copilot/skills/lisa-jira-create/SKILL.md +154 -0
- package/plugins/lisa-copilot/skills/lisa-jira-evidence/SKILL.md +90 -0
- package/plugins/lisa-copilot/skills/lisa-jira-journey/SKILL.md +127 -0
- package/plugins/lisa-copilot/skills/lisa-jira-read-ticket/SKILL.md +198 -0
- package/plugins/lisa-copilot/skills/lisa-jira-sync/SKILL.md +108 -0
- package/plugins/lisa-copilot/skills/lisa-jira-validate-ticket/SKILL.md +317 -0
- package/plugins/lisa-copilot/skills/lisa-jira-verify/SKILL.md +30 -0
- package/plugins/lisa-copilot/skills/lisa-jira-write-ticket/SKILL.md +267 -0
- package/plugins/lisa-copilot/skills/lisa-jsdoc-best-practices/SKILL.md +432 -0
- package/plugins/lisa-copilot/skills/lisa-linear-access/SKILL.md +90 -0
- package/plugins/lisa-copilot/skills/lisa-linear-add-journey/SKILL.md +105 -0
- package/plugins/lisa-copilot/skills/lisa-linear-build-intake/SKILL.md +346 -0
- package/plugins/lisa-copilot/skills/lisa-linear-create/SKILL.md +146 -0
- package/plugins/lisa-copilot/skills/lisa-linear-evidence/SKILL.md +103 -0
- package/plugins/lisa-copilot/skills/lisa-linear-journey/SKILL.md +134 -0
- package/plugins/lisa-copilot/skills/lisa-linear-prd-intake/SKILL.md +383 -0
- package/plugins/lisa-copilot/skills/lisa-linear-read-issue/SKILL.md +200 -0
- package/plugins/lisa-copilot/skills/lisa-linear-sync/SKILL.md +127 -0
- package/plugins/lisa-copilot/skills/lisa-linear-to-tracker/SKILL.md +344 -0
- package/plugins/lisa-copilot/skills/lisa-linear-validate-issue/SKILL.md +314 -0
- package/plugins/lisa-copilot/skills/lisa-linear-verify/SKILL.md +51 -0
- package/plugins/lisa-copilot/skills/lisa-linear-write-issue/SKILL.md +292 -0
- package/plugins/lisa-copilot/skills/lisa-linear-write-prd/SKILL.md +96 -0
- package/plugins/lisa-copilot/skills/lisa-monitor/SKILL.md +69 -0
- package/plugins/lisa-copilot/skills/lisa-nightly-add-test-coverage/SKILL.md +40 -0
- package/plugins/lisa-copilot/skills/lisa-nightly-improve-tests/SKILL.md +29 -0
- package/plugins/lisa-copilot/skills/lisa-nightly-lower-code-complexity/SKILL.md +28 -0
- package/plugins/lisa-copilot/skills/lisa-notion-access/SKILL.md +226 -0
- package/plugins/lisa-copilot/skills/lisa-notion-prd-intake/SKILL.md +360 -0
- package/plugins/lisa-copilot/skills/lisa-notion-to-tracker/SKILL.md +359 -0
- package/plugins/lisa-copilot/skills/lisa-notion-write-prd/SKILL.md +109 -0
- package/plugins/lisa-copilot/skills/lisa-parity-code-review/SKILL.md +83 -0
- package/plugins/lisa-copilot/skills/lisa-parity-code-simplifier/SKILL.md +76 -0
- package/plugins/lisa-copilot/skills/lisa-parity-coderabbit/SKILL.md +77 -0
- package/plugins/lisa-copilot/skills/lisa-parity-safety-net-rules/SKILL.md +144 -0
- package/plugins/lisa-copilot/skills/lisa-parity-sentry-sdk-setup/SKILL.md +211 -0
- package/plugins/lisa-copilot/skills/lisa-parity-sentry-seer/SKILL.md +135 -0
- package/plugins/lisa-copilot/skills/lisa-parity-skill-creator/SKILL.md +151 -0
- package/plugins/lisa-copilot/skills/lisa-performance-review/SKILL.md +94 -0
- package/plugins/lisa-copilot/skills/lisa-plan/SKILL.md +60 -0
- package/plugins/lisa-copilot/skills/lisa-plugin-sync-explain/SKILL.md +53 -0
- package/plugins/lisa-copilot/skills/lisa-posthog-access/SKILL.md +60 -0
- package/plugins/lisa-copilot/skills/lisa-prd-backlink/SKILL.md +265 -0
- package/plugins/lisa-copilot/skills/lisa-prd-source-write/SKILL.md +101 -0
- package/plugins/lisa-copilot/skills/lisa-prd-ticket-coverage/SKILL.md +170 -0
- package/plugins/lisa-copilot/skills/lisa-product-walkthrough/SKILL.md +104 -0
- package/plugins/lisa-copilot/skills/lisa-project-ideation/SKILL.md +315 -0
- package/plugins/lisa-copilot/skills/lisa-pull-request-review/SKILL.md +84 -0
- package/plugins/lisa-copilot/skills/lisa-quality-review/SKILL.md +54 -0
- package/plugins/lisa-copilot/skills/lisa-queue-status/SKILL.md +133 -0
- package/plugins/lisa-copilot/skills/lisa-repair-intake/SKILL.md +1026 -0
- package/plugins/lisa-copilot/skills/lisa-reproduce-bug/SKILL.md +96 -0
- package/plugins/lisa-copilot/skills/lisa-research/SKILL.md +68 -0
- package/plugins/lisa-copilot/skills/lisa-review-local/SKILL.md +88 -0
- package/plugins/lisa-copilot/skills/lisa-root-cause-analysis/SKILL.md +155 -0
- package/plugins/lisa-copilot/skills/lisa-security-review/SKILL.md +57 -0
- package/plugins/lisa-copilot/skills/lisa-security-zap-scan/SKILL.md +33 -0
- package/plugins/lisa-copilot/skills/lisa-sentry-access/SKILL.md +56 -0
- package/plugins/lisa-copilot/skills/lisa-setup-atlassian/SKILL.md +347 -0
- package/plugins/lisa-copilot/skills/lisa-setup-automations/SKILL.md +103 -0
- package/plugins/lisa-copilot/skills/lisa-setup-confluence/SKILL.md +254 -0
- package/plugins/lisa-copilot/skills/lisa-setup-github/SKILL.md +268 -0
- package/plugins/lisa-copilot/skills/lisa-setup-jira/SKILL.md +198 -0
- package/plugins/lisa-copilot/skills/lisa-setup-linear/SKILL.md +251 -0
- package/plugins/lisa-copilot/skills/lisa-setup-notion/SKILL.md +316 -0
- package/plugins/lisa-copilot/skills/lisa-sonarcloud-access/SKILL.md +71 -0
- package/plugins/lisa-copilot/skills/lisa-spec-conformance/SKILL.md +159 -0
- package/plugins/lisa-copilot/skills/lisa-sync-down/SKILL.md +171 -0
- package/plugins/lisa-copilot/skills/lisa-task-decomposition/SKILL.md +127 -0
- package/plugins/lisa-copilot/skills/lisa-task-triage/SKILL.md +23 -0
- package/plugins/lisa-copilot/skills/lisa-tdd-implementation/SKILL.md +86 -0
- package/plugins/lisa-copilot/skills/lisa-tear-down-automations/SKILL.md +34 -0
- package/plugins/lisa-copilot/skills/lisa-test-strategy/SKILL.md +63 -0
- package/plugins/lisa-copilot/skills/lisa-ticket-triage/SKILL.md +186 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-add-journey/SKILL.md +26 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-build-intake/SKILL.md +85 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-create/SKILL.md +26 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-evidence/SKILL.md +52 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-journey/SKILL.md +26 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-read/SKILL.md +27 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-source-artifacts/SKILL.md +107 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-sync/SKILL.md +64 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-validate/SKILL.md +36 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-verify/SKILL.md +28 -0
- package/plugins/lisa-copilot/skills/lisa-tracker-write/SKILL.md +53 -0
- package/plugins/lisa-copilot/skills/lisa-usage-accounting/SKILL.md +170 -0
- package/plugins/lisa-copilot/skills/lisa-use-the-product/SKILL.md +86 -0
- package/plugins/lisa-copilot/skills/lisa-validate-tracker-mapping/SKILL.md +188 -0
- package/plugins/lisa-copilot/skills/lisa-verification-lifecycle/SKILL.md +365 -0
- package/plugins/lisa-copilot/skills/lisa-verify/SKILL.md +52 -0
- package/plugins/lisa-copilot/skills/lisa-verify-prd/SKILL.md +392 -0
- package/plugins/lisa-copilot/skills/lisa-wiki-install/SKILL.md +101 -0
- package/plugins/lisa-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-cursor/agents/learnings-synthesizer.md +2 -2
- package/plugins/lisa-cursor/agents/linear-agent.md +3 -3
- package/plugins/lisa-cursor/commands/lisa/analyze-claude-remote.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/automation-status.md +12 -0
- package/plugins/lisa-cursor/commands/lisa/codify-verification.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/cross-pollinate.md +15 -0
- package/plugins/lisa-cursor/commands/lisa/debrief/apply.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/debrief.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/doctor.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/exploratory-qa.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/fix/linter-error.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/generate-claude-remote-build-script.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/git/commit.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/git/prune.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/git/submit-pr.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/implement.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/improve/code-complexity.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/improve/max-lines-per-function.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/improve/max-lines.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/improve/test-coverage.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/improve/tests.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/intake-explain.md +31 -0
- package/plugins/lisa-cursor/commands/lisa/intake.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/monitor.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/parity-code-review.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/parity-code-simplifier.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/parity-coderabbit.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/parity-safety-net-rules.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/parity-sentry-sdk-setup.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/parity-sentry-seer.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/parity-skill-creator.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/plan.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/plugin-sync-explain.md +8 -0
- package/plugins/lisa-cursor/commands/lisa/product-walkthrough.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/project-ideation.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/pull-request/review.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/queue-status.md +34 -0
- package/plugins/lisa-cursor/commands/lisa/repair-intake.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/research.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/review/local.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/security/zap-scan.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/setup/atlassian.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/setup/confluence.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/setup/github.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/setup/jira.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/setup/linear.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/setup/notion.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/setup-automations.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/sync-down.md +7 -0
- package/plugins/lisa-cursor/commands/lisa/tear-down-automations.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/validate-tracker-mapping.md +15 -0
- package/plugins/lisa-cursor/commands/lisa/verify-prd.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/verify.md +6 -0
- package/plugins/lisa-cursor/commands/lisa/wiki/install.md +7 -0
- package/plugins/lisa-cursor/hooks/enforce-verification-gate.sh +4 -4
- package/plugins/lisa-cursor/rules/config-resolution-reference.mdc +16 -16
- package/plugins/lisa-cursor/rules/integration-access-layer-reference.mdc +7 -7
- package/plugins/lisa-cursor/rules/intent-routing-reference.mdc +14 -14
- package/plugins/lisa-cursor/rules/observability-audit-reference.mdc +4 -4
- package/plugins/lisa-cursor/rules/observability-audit.mdc +4 -4
- package/plugins/lisa-cursor/rules/prd-lifecycle-rollup-reference.mdc +5 -5
- package/plugins/lisa-cursor/rules/repo-scope-split-reference.mdc +3 -3
- package/plugins/lisa-cursor/rules/upstream-to-lisa-reference.mdc +1 -1
- package/plugins/lisa-cursor/rules/upstream-to-lisa.mdc +1 -1
- package/plugins/lisa-cursor/rules/usage-accounting-reference.mdc +1 -1
- package/plugins/lisa-cursor/skills/lisa-acceptance-criteria/SKILL.md +71 -0
- package/plugins/lisa-cursor/skills/lisa-agent-design-best-practices/SKILL.md +219 -0
- package/plugins/lisa-cursor/skills/lisa-analyze-claude-remote/SKILL.md +421 -0
- package/plugins/lisa-cursor/skills/lisa-atlassian-access/SKILL.md +361 -0
- package/plugins/lisa-cursor/skills/lisa-automation-status/SKILL.md +111 -0
- package/plugins/lisa-cursor/skills/lisa-bug-triage/SKILL.md +23 -0
- package/plugins/lisa-cursor/skills/lisa-codebase-research/SKILL.md +87 -0
- package/plugins/lisa-cursor/skills/lisa-codify-verification/SKILL.md +162 -0
- package/plugins/lisa-cursor/skills/lisa-confluence-prd-intake/SKILL.md +417 -0
- package/plugins/lisa-cursor/skills/lisa-confluence-to-tracker/SKILL.md +362 -0
- package/plugins/lisa-cursor/skills/lisa-confluence-write-prd/SKILL.md +109 -0
- package/plugins/lisa-cursor/skills/lisa-cross-pollinate/SKILL.md +175 -0
- package/plugins/lisa-cursor/skills/lisa-debrief/SKILL.md +94 -0
- package/plugins/lisa-cursor/skills/lisa-debrief-apply/SKILL.md +63 -0
- package/plugins/lisa-cursor/skills/lisa-doctor/SKILL.md +336 -0
- package/plugins/lisa-cursor/skills/lisa-drive-pr-to-merge/SKILL.md +152 -0
- package/plugins/lisa-cursor/skills/lisa-epic-triage/SKILL.md +28 -0
- package/plugins/lisa-cursor/skills/lisa-exploratory-qa/SKILL.md +91 -0
- package/plugins/lisa-cursor/skills/lisa-fix-linter-error/SKILL.md +45 -0
- package/plugins/lisa-cursor/skills/lisa-generate-claude-remote-build-script/SKILL.md +224 -0
- package/plugins/lisa-cursor/skills/lisa-git-commit/SKILL.md +48 -0
- package/plugins/lisa-cursor/skills/lisa-git-prune/SKILL.md +35 -0
- package/plugins/lisa-cursor/skills/lisa-git-submit-pr/SKILL.md +113 -0
- package/plugins/lisa-cursor/skills/lisa-github-add-journey/SKILL.md +115 -0
- package/plugins/lisa-cursor/skills/lisa-github-build-intake/SKILL.md +446 -0
- package/plugins/lisa-cursor/skills/lisa-github-create/SKILL.md +101 -0
- package/plugins/lisa-cursor/skills/lisa-github-evidence/SKILL.md +110 -0
- package/plugins/lisa-cursor/skills/lisa-github-journey/SKILL.md +121 -0
- package/plugins/lisa-cursor/skills/lisa-github-prd-intake/SKILL.md +432 -0
- package/plugins/lisa-cursor/skills/lisa-github-project-v2/SKILL.md +227 -0
- package/plugins/lisa-cursor/skills/lisa-github-read-issue/SKILL.md +248 -0
- package/plugins/lisa-cursor/skills/lisa-github-sync/SKILL.md +132 -0
- package/plugins/lisa-cursor/skills/lisa-github-to-tracker/SKILL.md +347 -0
- package/plugins/lisa-cursor/skills/lisa-github-validate-issue/SKILL.md +330 -0
- package/plugins/lisa-cursor/skills/lisa-github-verify/SKILL.md +29 -0
- package/plugins/lisa-cursor/skills/lisa-github-write-issue/SKILL.md +339 -0
- package/plugins/lisa-cursor/skills/lisa-github-write-prd/SKILL.md +157 -0
- package/plugins/lisa-cursor/skills/lisa-implement/SKILL.md +202 -0
- package/plugins/lisa-cursor/skills/lisa-improve-code-complexity/SKILL.md +44 -0
- package/plugins/lisa-cursor/skills/lisa-improve-max-lines/SKILL.md +45 -0
- package/plugins/lisa-cursor/skills/lisa-improve-max-lines-per-function/SKILL.md +46 -0
- package/plugins/lisa-cursor/skills/lisa-improve-test-coverage/SKILL.md +44 -0
- package/plugins/lisa-cursor/skills/lisa-improve-tests/SKILL.md +47 -0
- package/plugins/lisa-cursor/skills/lisa-intake/SKILL.md +133 -0
- package/plugins/lisa-cursor/skills/lisa-intake-explain/SKILL.md +279 -0
- package/plugins/lisa-cursor/skills/lisa-jam-access/SKILL.md +52 -0
- package/plugins/lisa-cursor/skills/lisa-jira-add-journey/SKILL.md +121 -0
- package/plugins/lisa-cursor/skills/lisa-jira-build-intake/SKILL.md +368 -0
- package/plugins/lisa-cursor/skills/lisa-jira-create/SKILL.md +154 -0
- package/plugins/lisa-cursor/skills/lisa-jira-evidence/SKILL.md +90 -0
- package/plugins/lisa-cursor/skills/lisa-jira-journey/SKILL.md +127 -0
- package/plugins/lisa-cursor/skills/lisa-jira-read-ticket/SKILL.md +198 -0
- package/plugins/lisa-cursor/skills/lisa-jira-sync/SKILL.md +108 -0
- package/plugins/lisa-cursor/skills/lisa-jira-validate-ticket/SKILL.md +317 -0
- package/plugins/lisa-cursor/skills/lisa-jira-verify/SKILL.md +30 -0
- package/plugins/lisa-cursor/skills/lisa-jira-write-ticket/SKILL.md +267 -0
- package/plugins/lisa-cursor/skills/lisa-jsdoc-best-practices/SKILL.md +432 -0
- package/plugins/lisa-cursor/skills/lisa-linear-access/SKILL.md +90 -0
- package/plugins/lisa-cursor/skills/lisa-linear-add-journey/SKILL.md +105 -0
- package/plugins/lisa-cursor/skills/lisa-linear-build-intake/SKILL.md +346 -0
- package/plugins/lisa-cursor/skills/lisa-linear-create/SKILL.md +146 -0
- package/plugins/lisa-cursor/skills/lisa-linear-evidence/SKILL.md +103 -0
- package/plugins/lisa-cursor/skills/lisa-linear-journey/SKILL.md +134 -0
- package/plugins/lisa-cursor/skills/lisa-linear-prd-intake/SKILL.md +383 -0
- package/plugins/lisa-cursor/skills/lisa-linear-read-issue/SKILL.md +200 -0
- package/plugins/lisa-cursor/skills/lisa-linear-sync/SKILL.md +127 -0
- package/plugins/lisa-cursor/skills/lisa-linear-to-tracker/SKILL.md +344 -0
- package/plugins/lisa-cursor/skills/lisa-linear-validate-issue/SKILL.md +314 -0
- package/plugins/lisa-cursor/skills/lisa-linear-verify/SKILL.md +51 -0
- package/plugins/lisa-cursor/skills/lisa-linear-write-issue/SKILL.md +292 -0
- package/plugins/lisa-cursor/skills/lisa-linear-write-prd/SKILL.md +96 -0
- package/plugins/lisa-cursor/skills/lisa-monitor/SKILL.md +69 -0
- package/plugins/lisa-cursor/skills/lisa-nightly-add-test-coverage/SKILL.md +40 -0
- package/plugins/lisa-cursor/skills/lisa-nightly-improve-tests/SKILL.md +29 -0
- package/plugins/lisa-cursor/skills/lisa-nightly-lower-code-complexity/SKILL.md +28 -0
- package/plugins/lisa-cursor/skills/lisa-notion-access/SKILL.md +226 -0
- package/plugins/lisa-cursor/skills/lisa-notion-prd-intake/SKILL.md +360 -0
- package/plugins/lisa-cursor/skills/lisa-notion-to-tracker/SKILL.md +359 -0
- package/plugins/lisa-cursor/skills/lisa-notion-write-prd/SKILL.md +109 -0
- package/plugins/lisa-cursor/skills/lisa-parity-code-review/SKILL.md +83 -0
- package/plugins/lisa-cursor/skills/lisa-parity-code-simplifier/SKILL.md +76 -0
- package/plugins/lisa-cursor/skills/lisa-parity-coderabbit/SKILL.md +77 -0
- package/plugins/lisa-cursor/skills/lisa-parity-safety-net-rules/SKILL.md +144 -0
- package/plugins/lisa-cursor/skills/lisa-parity-sentry-sdk-setup/SKILL.md +211 -0
- package/plugins/lisa-cursor/skills/lisa-parity-sentry-seer/SKILL.md +135 -0
- package/plugins/lisa-cursor/skills/lisa-parity-skill-creator/SKILL.md +151 -0
- package/plugins/lisa-cursor/skills/lisa-performance-review/SKILL.md +94 -0
- package/plugins/lisa-cursor/skills/lisa-plan/SKILL.md +60 -0
- package/plugins/lisa-cursor/skills/lisa-plugin-sync-explain/SKILL.md +53 -0
- package/plugins/lisa-cursor/skills/lisa-posthog-access/SKILL.md +60 -0
- package/plugins/lisa-cursor/skills/lisa-prd-backlink/SKILL.md +265 -0
- package/plugins/lisa-cursor/skills/lisa-prd-source-write/SKILL.md +101 -0
- package/plugins/lisa-cursor/skills/lisa-prd-ticket-coverage/SKILL.md +170 -0
- package/plugins/lisa-cursor/skills/lisa-product-walkthrough/SKILL.md +104 -0
- package/plugins/lisa-cursor/skills/lisa-project-ideation/SKILL.md +315 -0
- package/plugins/lisa-cursor/skills/lisa-pull-request-review/SKILL.md +84 -0
- package/plugins/lisa-cursor/skills/lisa-quality-review/SKILL.md +54 -0
- package/plugins/lisa-cursor/skills/lisa-queue-status/SKILL.md +133 -0
- package/plugins/lisa-cursor/skills/lisa-repair-intake/SKILL.md +1026 -0
- package/plugins/lisa-cursor/skills/lisa-reproduce-bug/SKILL.md +96 -0
- package/plugins/lisa-cursor/skills/lisa-research/SKILL.md +68 -0
- package/plugins/lisa-cursor/skills/lisa-review-local/SKILL.md +88 -0
- package/plugins/lisa-cursor/skills/lisa-root-cause-analysis/SKILL.md +155 -0
- package/plugins/lisa-cursor/skills/lisa-security-review/SKILL.md +57 -0
- package/plugins/lisa-cursor/skills/lisa-security-zap-scan/SKILL.md +33 -0
- package/plugins/lisa-cursor/skills/lisa-sentry-access/SKILL.md +56 -0
- package/plugins/lisa-cursor/skills/lisa-setup-atlassian/SKILL.md +347 -0
- package/plugins/lisa-cursor/skills/lisa-setup-automations/SKILL.md +103 -0
- package/plugins/lisa-cursor/skills/lisa-setup-confluence/SKILL.md +254 -0
- package/plugins/lisa-cursor/skills/lisa-setup-github/SKILL.md +268 -0
- package/plugins/lisa-cursor/skills/lisa-setup-jira/SKILL.md +198 -0
- package/plugins/lisa-cursor/skills/lisa-setup-linear/SKILL.md +251 -0
- package/plugins/lisa-cursor/skills/lisa-setup-notion/SKILL.md +316 -0
- package/plugins/lisa-cursor/skills/lisa-sonarcloud-access/SKILL.md +71 -0
- package/plugins/lisa-cursor/skills/lisa-spec-conformance/SKILL.md +159 -0
- package/plugins/lisa-cursor/skills/lisa-sync-down/SKILL.md +171 -0
- package/plugins/lisa-cursor/skills/lisa-task-decomposition/SKILL.md +127 -0
- package/plugins/lisa-cursor/skills/lisa-task-triage/SKILL.md +23 -0
- package/plugins/lisa-cursor/skills/lisa-tdd-implementation/SKILL.md +86 -0
- package/plugins/lisa-cursor/skills/lisa-tear-down-automations/SKILL.md +34 -0
- package/plugins/lisa-cursor/skills/lisa-test-strategy/SKILL.md +63 -0
- package/plugins/lisa-cursor/skills/lisa-ticket-triage/SKILL.md +186 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-add-journey/SKILL.md +26 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-build-intake/SKILL.md +85 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-create/SKILL.md +26 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-evidence/SKILL.md +52 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-journey/SKILL.md +26 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-read/SKILL.md +27 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-source-artifacts/SKILL.md +107 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-sync/SKILL.md +64 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-validate/SKILL.md +36 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-verify/SKILL.md +28 -0
- package/plugins/lisa-cursor/skills/lisa-tracker-write/SKILL.md +53 -0
- package/plugins/lisa-cursor/skills/lisa-usage-accounting/SKILL.md +170 -0
- package/plugins/lisa-cursor/skills/lisa-use-the-product/SKILL.md +86 -0
- package/plugins/lisa-cursor/skills/lisa-validate-tracker-mapping/SKILL.md +188 -0
- package/plugins/lisa-cursor/skills/lisa-verification-lifecycle/SKILL.md +365 -0
- package/plugins/lisa-cursor/skills/lisa-verify/SKILL.md +52 -0
- package/plugins/lisa-cursor/skills/lisa-verify-prd/SKILL.md +392 -0
- package/plugins/lisa-cursor/skills/lisa-wiki-install/SKILL.md +101 -0
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-expo-agy/plugin.json +1 -1
- package/plugins/lisa-expo-agy/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-expo-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-copilot/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-expo-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo-cursor/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-harper-fabric/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-harper-fabric-agy/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-agy/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-harper-fabric-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-copilot/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-harper-fabric-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-harper-fabric-cursor/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-agy/plugin.json +1 -1
- package/plugins/lisa-nestjs-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw/skills/lisa-openclaw-connect-repo-topic/agents/openai.yaml +1 -1
- package/plugins/lisa-openclaw/skills/lisa-openclaw-connect-staff/agents/openai.yaml +1 -1
- package/plugins/lisa-openclaw/skills/lisa-openclaw-setup/agents/openai.yaml +1 -1
- package/plugins/lisa-openclaw-agy/plugin.json +1 -1
- package/plugins/lisa-openclaw-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-openclaw-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-agy/plugin.json +1 -1
- package/plugins/lisa-phaser-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-phaser-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-rails-agy/plugin.json +1 -1
- package/plugins/lisa-rails-agy/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-rails-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-copilot/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-rails-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails-cursor/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-agy/plugin.json +1 -1
- package/plugins/lisa-typescript-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/.codex-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-add-ingest/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-add-role/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-confluence/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-docs/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-git/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-jira/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-memory/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-notion/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-roles/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-slack/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-connector-web/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-doctor/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-ingest/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-lint/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-migrate/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-onboard-me/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-query/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-setup/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-setup-automations/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-status/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-tear-down-automations/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki/skills/lisa-wiki-usage/agents/openai.yaml +1 -1
- package/plugins/lisa-wiki-agy/plugin.json +1 -1
- package/plugins/lisa-wiki-copilot/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-wiki-cursor/.claude-plugin/plugin.json +1 -1
- package/plugins/src/base/agents/learnings-synthesizer.md +2 -2
- package/plugins/src/base/agents/linear-agent.md +3 -3
- package/plugins/src/base/commands/lisa/analyze-claude-remote.md +6 -0
- package/plugins/src/base/commands/lisa/automation-status.md +12 -0
- package/plugins/src/base/commands/lisa/codify-verification.md +6 -0
- package/plugins/src/base/commands/lisa/cross-pollinate.md +15 -0
- package/plugins/src/base/commands/lisa/debrief/apply.md +6 -0
- package/plugins/src/base/commands/lisa/debrief.md +6 -0
- package/plugins/src/base/commands/lisa/doctor.md +6 -0
- package/plugins/src/base/commands/lisa/exploratory-qa.md +7 -0
- package/plugins/src/base/commands/lisa/fix/linter-error.md +7 -0
- package/plugins/src/base/commands/lisa/generate-claude-remote-build-script.md +6 -0
- package/plugins/src/base/commands/lisa/git/commit.md +7 -0
- package/plugins/src/base/commands/lisa/git/prune.md +6 -0
- package/plugins/src/base/commands/lisa/git/submit-pr.md +7 -0
- package/plugins/src/base/commands/lisa/implement.md +6 -0
- package/plugins/src/base/commands/lisa/improve/code-complexity.md +6 -0
- package/plugins/src/base/commands/lisa/improve/max-lines-per-function.md +7 -0
- package/plugins/src/base/commands/lisa/improve/max-lines.md +7 -0
- package/plugins/src/base/commands/lisa/improve/test-coverage.md +7 -0
- package/plugins/src/base/commands/lisa/improve/tests.md +7 -0
- package/plugins/src/base/commands/lisa/intake-explain.md +31 -0
- package/plugins/src/base/commands/lisa/intake.md +6 -0
- package/plugins/src/base/commands/lisa/monitor.md +6 -0
- package/plugins/src/base/commands/lisa/parity-code-review.md +6 -0
- package/plugins/src/base/commands/lisa/parity-code-simplifier.md +6 -0
- package/plugins/src/base/commands/lisa/parity-coderabbit.md +6 -0
- package/plugins/src/base/commands/lisa/parity-safety-net-rules.md +6 -0
- package/plugins/src/base/commands/lisa/parity-sentry-sdk-setup.md +6 -0
- package/plugins/src/base/commands/lisa/parity-sentry-seer.md +6 -0
- package/plugins/src/base/commands/lisa/parity-skill-creator.md +6 -0
- package/plugins/src/base/commands/lisa/plan.md +6 -0
- package/plugins/src/base/commands/lisa/plugin-sync-explain.md +8 -0
- package/plugins/src/base/commands/lisa/product-walkthrough.md +7 -0
- package/plugins/src/base/commands/lisa/project-ideation.md +6 -0
- package/plugins/src/base/commands/lisa/pull-request/review.md +7 -0
- package/plugins/src/base/commands/lisa/queue-status.md +34 -0
- package/plugins/src/base/commands/lisa/repair-intake.md +6 -0
- package/plugins/src/base/commands/lisa/research.md +6 -0
- package/plugins/src/base/commands/lisa/review/local.md +6 -0
- package/plugins/src/base/commands/lisa/security/zap-scan.md +6 -0
- package/plugins/src/base/commands/lisa/setup/atlassian.md +7 -0
- package/plugins/src/base/commands/lisa/setup/confluence.md +7 -0
- package/plugins/src/base/commands/lisa/setup/github.md +7 -0
- package/plugins/src/base/commands/lisa/setup/jira.md +7 -0
- package/plugins/src/base/commands/lisa/setup/linear.md +7 -0
- package/plugins/src/base/commands/lisa/setup/notion.md +7 -0
- package/plugins/src/base/commands/lisa/setup-automations.md +6 -0
- package/plugins/src/base/commands/lisa/sync-down.md +7 -0
- package/plugins/src/base/commands/lisa/tear-down-automations.md +6 -0
- package/plugins/src/base/commands/lisa/validate-tracker-mapping.md +15 -0
- package/plugins/src/base/commands/lisa/verify-prd.md +6 -0
- package/plugins/src/base/commands/lisa/verify.md +6 -0
- package/plugins/src/base/commands/lisa/wiki/install.md +7 -0
- package/plugins/src/base/hooks/enforce-team-first.sh +1 -1
- package/plugins/src/base/hooks/enforce-verification-gate.sh +4 -4
- package/plugins/src/base/rules/eager/observability-audit.md +4 -4
- package/plugins/src/base/rules/eager/upstream-to-lisa.md +1 -1
- package/plugins/src/base/rules/reference/config-resolution.md +16 -16
- package/plugins/src/base/rules/reference/integration-access-layer.md +7 -7
- package/plugins/src/base/rules/reference/intent-routing.md +14 -14
- package/plugins/src/base/rules/reference/observability-audit.md +4 -4
- package/plugins/src/base/rules/reference/prd-lifecycle-rollup.md +5 -5
- package/plugins/src/base/rules/reference/repo-scope-split.md +3 -3
- package/plugins/src/base/rules/reference/upstream-to-lisa.md +1 -1
- package/plugins/src/base/rules/reference/usage-accounting.md +1 -1
- package/plugins/src/base/skills/lisa-acceptance-criteria/SKILL.md +71 -0
- package/plugins/src/base/skills/lisa-agent-design-best-practices/SKILL.md +219 -0
- package/plugins/src/base/skills/lisa-analyze-claude-remote/SKILL.md +421 -0
- package/plugins/src/base/skills/lisa-atlassian-access/SKILL.md +361 -0
- package/plugins/src/base/skills/lisa-automation-status/SKILL.md +111 -0
- package/plugins/src/base/skills/lisa-bug-triage/SKILL.md +23 -0
- package/plugins/src/base/skills/lisa-codebase-research/SKILL.md +87 -0
- package/plugins/src/base/skills/lisa-codify-verification/SKILL.md +162 -0
- package/plugins/src/base/skills/lisa-confluence-prd-intake/SKILL.md +417 -0
- package/plugins/src/base/skills/lisa-confluence-to-tracker/SKILL.md +362 -0
- package/plugins/src/base/skills/lisa-confluence-write-prd/SKILL.md +109 -0
- package/plugins/src/base/skills/lisa-cross-pollinate/SKILL.md +175 -0
- package/plugins/src/base/skills/lisa-debrief/SKILL.md +94 -0
- package/plugins/src/base/skills/lisa-debrief-apply/SKILL.md +63 -0
- package/plugins/src/base/skills/lisa-doctor/SKILL.md +336 -0
- package/plugins/src/base/skills/lisa-drive-pr-to-merge/SKILL.md +152 -0
- package/plugins/src/base/skills/lisa-epic-triage/SKILL.md +28 -0
- package/plugins/src/base/skills/lisa-exploratory-qa/SKILL.md +91 -0
- package/plugins/src/base/skills/lisa-fix-linter-error/SKILL.md +45 -0
- package/plugins/src/base/skills/lisa-generate-claude-remote-build-script/SKILL.md +224 -0
- package/plugins/src/base/skills/lisa-git-commit/SKILL.md +48 -0
- package/plugins/src/base/skills/lisa-git-prune/SKILL.md +35 -0
- package/plugins/src/base/skills/lisa-git-submit-pr/SKILL.md +113 -0
- package/plugins/src/base/skills/lisa-github-add-journey/SKILL.md +115 -0
- package/plugins/src/base/skills/lisa-github-build-intake/SKILL.md +446 -0
- package/plugins/src/base/skills/lisa-github-create/SKILL.md +101 -0
- package/plugins/src/base/skills/lisa-github-evidence/SKILL.md +110 -0
- package/plugins/src/base/skills/lisa-github-journey/SKILL.md +121 -0
- package/plugins/src/base/skills/lisa-github-prd-intake/SKILL.md +432 -0
- package/plugins/src/base/skills/lisa-github-project-v2/SKILL.md +227 -0
- package/plugins/src/base/skills/lisa-github-read-issue/SKILL.md +248 -0
- package/plugins/src/base/skills/lisa-github-sync/SKILL.md +132 -0
- package/plugins/src/base/skills/lisa-github-to-tracker/SKILL.md +347 -0
- package/plugins/src/base/skills/lisa-github-validate-issue/SKILL.md +330 -0
- package/plugins/src/base/skills/lisa-github-verify/SKILL.md +29 -0
- package/plugins/src/base/skills/lisa-github-write-issue/SKILL.md +339 -0
- package/plugins/src/base/skills/lisa-github-write-prd/SKILL.md +157 -0
- package/plugins/src/base/skills/lisa-implement/SKILL.md +202 -0
- package/plugins/src/base/skills/lisa-improve-code-complexity/SKILL.md +44 -0
- package/plugins/src/base/skills/lisa-improve-max-lines/SKILL.md +45 -0
- package/plugins/src/base/skills/lisa-improve-max-lines-per-function/SKILL.md +46 -0
- package/plugins/src/base/skills/lisa-improve-test-coverage/SKILL.md +44 -0
- package/plugins/src/base/skills/lisa-improve-tests/SKILL.md +47 -0
- package/plugins/src/base/skills/lisa-intake/SKILL.md +133 -0
- package/plugins/src/base/skills/lisa-intake-explain/SKILL.md +279 -0
- package/plugins/src/base/skills/lisa-jam-access/SKILL.md +52 -0
- package/plugins/src/base/skills/lisa-jira-add-journey/SKILL.md +121 -0
- package/plugins/src/base/skills/lisa-jira-build-intake/SKILL.md +368 -0
- package/plugins/src/base/skills/lisa-jira-create/SKILL.md +154 -0
- package/plugins/src/base/skills/lisa-jira-evidence/SKILL.md +90 -0
- package/plugins/src/base/skills/lisa-jira-journey/SKILL.md +127 -0
- package/plugins/src/base/skills/lisa-jira-read-ticket/SKILL.md +198 -0
- package/plugins/src/base/skills/lisa-jira-sync/SKILL.md +108 -0
- package/plugins/src/base/skills/lisa-jira-validate-ticket/SKILL.md +317 -0
- package/plugins/src/base/skills/lisa-jira-verify/SKILL.md +30 -0
- package/plugins/src/base/skills/lisa-jira-write-ticket/SKILL.md +267 -0
- package/plugins/src/base/skills/lisa-jsdoc-best-practices/SKILL.md +432 -0
- package/plugins/src/base/skills/lisa-linear-access/SKILL.md +90 -0
- package/plugins/src/base/skills/lisa-linear-add-journey/SKILL.md +105 -0
- package/plugins/src/base/skills/lisa-linear-build-intake/SKILL.md +346 -0
- package/plugins/src/base/skills/lisa-linear-create/SKILL.md +146 -0
- package/plugins/src/base/skills/lisa-linear-evidence/SKILL.md +103 -0
- package/plugins/src/base/skills/lisa-linear-journey/SKILL.md +134 -0
- package/plugins/src/base/skills/lisa-linear-prd-intake/SKILL.md +383 -0
- package/plugins/src/base/skills/lisa-linear-read-issue/SKILL.md +200 -0
- package/plugins/src/base/skills/lisa-linear-sync/SKILL.md +127 -0
- package/plugins/src/base/skills/lisa-linear-to-tracker/SKILL.md +344 -0
- package/plugins/src/base/skills/lisa-linear-validate-issue/SKILL.md +314 -0
- package/plugins/src/base/skills/lisa-linear-verify/SKILL.md +51 -0
- package/plugins/src/base/skills/lisa-linear-write-issue/SKILL.md +292 -0
- package/plugins/src/base/skills/lisa-linear-write-prd/SKILL.md +96 -0
- package/plugins/src/base/skills/lisa-monitor/SKILL.md +69 -0
- package/plugins/src/base/skills/lisa-nightly-add-test-coverage/SKILL.md +40 -0
- package/plugins/src/base/skills/lisa-nightly-improve-tests/SKILL.md +29 -0
- package/plugins/src/base/skills/lisa-nightly-lower-code-complexity/SKILL.md +28 -0
- package/plugins/src/base/skills/lisa-notion-access/SKILL.md +226 -0
- package/plugins/src/base/skills/lisa-notion-prd-intake/SKILL.md +360 -0
- package/plugins/src/base/skills/lisa-notion-to-tracker/SKILL.md +359 -0
- package/plugins/src/base/skills/lisa-notion-write-prd/SKILL.md +109 -0
- package/plugins/src/base/skills/lisa-parity-code-review/SKILL.md +83 -0
- package/plugins/src/base/skills/lisa-parity-code-simplifier/SKILL.md +76 -0
- package/plugins/src/base/skills/lisa-parity-coderabbit/SKILL.md +77 -0
- package/plugins/src/base/skills/lisa-parity-safety-net-rules/SKILL.md +144 -0
- package/plugins/src/base/skills/lisa-parity-sentry-sdk-setup/SKILL.md +211 -0
- package/plugins/src/base/skills/lisa-parity-sentry-seer/SKILL.md +135 -0
- package/plugins/src/base/skills/lisa-parity-skill-creator/SKILL.md +151 -0
- package/plugins/src/base/skills/lisa-performance-review/SKILL.md +94 -0
- package/plugins/src/base/skills/lisa-plan/SKILL.md +60 -0
- package/plugins/src/base/skills/lisa-plugin-sync-explain/SKILL.md +53 -0
- package/plugins/src/base/skills/lisa-posthog-access/SKILL.md +60 -0
- package/plugins/src/base/skills/lisa-prd-backlink/SKILL.md +265 -0
- package/plugins/src/base/skills/lisa-prd-source-write/SKILL.md +101 -0
- package/plugins/src/base/skills/lisa-prd-ticket-coverage/SKILL.md +170 -0
- package/plugins/src/base/skills/lisa-product-walkthrough/SKILL.md +104 -0
- package/plugins/src/base/skills/lisa-project-ideation/SKILL.md +315 -0
- package/plugins/src/base/skills/lisa-project-ideation/agents/openai.yaml +6 -0
- package/plugins/src/base/skills/lisa-pull-request-review/SKILL.md +84 -0
- package/plugins/src/base/skills/lisa-quality-review/SKILL.md +54 -0
- package/plugins/src/base/skills/lisa-queue-status/SKILL.md +133 -0
- package/plugins/src/base/skills/lisa-repair-intake/SKILL.md +1026 -0
- package/plugins/src/base/skills/lisa-reproduce-bug/SKILL.md +96 -0
- package/plugins/src/base/skills/lisa-research/SKILL.md +68 -0
- package/plugins/src/base/skills/lisa-review-local/SKILL.md +88 -0
- package/plugins/src/base/skills/lisa-root-cause-analysis/SKILL.md +155 -0
- package/plugins/src/base/skills/lisa-security-review/SKILL.md +57 -0
- package/plugins/src/base/skills/lisa-security-zap-scan/SKILL.md +33 -0
- package/plugins/src/base/skills/lisa-sentry-access/SKILL.md +56 -0
- package/plugins/src/base/skills/lisa-setup-atlassian/SKILL.md +347 -0
- package/plugins/src/base/skills/lisa-setup-automations/SKILL.md +103 -0
- package/plugins/src/base/skills/lisa-setup-confluence/SKILL.md +254 -0
- package/plugins/src/base/skills/lisa-setup-github/SKILL.md +268 -0
- package/plugins/src/base/skills/lisa-setup-jira/SKILL.md +198 -0
- package/plugins/src/base/skills/lisa-setup-linear/SKILL.md +251 -0
- package/plugins/src/base/skills/lisa-setup-notion/SKILL.md +316 -0
- package/plugins/src/base/skills/lisa-sonarcloud-access/SKILL.md +71 -0
- package/plugins/src/base/skills/lisa-spec-conformance/SKILL.md +159 -0
- package/plugins/src/base/skills/lisa-sync-down/SKILL.md +171 -0
- package/plugins/src/base/skills/lisa-task-decomposition/SKILL.md +127 -0
- package/plugins/src/base/skills/lisa-task-triage/SKILL.md +23 -0
- package/plugins/src/base/skills/lisa-tdd-implementation/SKILL.md +86 -0
- package/plugins/src/base/skills/lisa-tear-down-automations/SKILL.md +34 -0
- package/plugins/src/base/skills/lisa-test-strategy/SKILL.md +63 -0
- package/plugins/src/base/skills/lisa-ticket-triage/SKILL.md +186 -0
- package/plugins/src/base/skills/lisa-tracker-add-journey/SKILL.md +26 -0
- package/plugins/src/base/skills/lisa-tracker-build-intake/SKILL.md +85 -0
- package/plugins/src/base/skills/lisa-tracker-create/SKILL.md +26 -0
- package/plugins/src/base/skills/lisa-tracker-evidence/SKILL.md +52 -0
- package/plugins/src/base/skills/lisa-tracker-journey/SKILL.md +26 -0
- package/plugins/src/base/skills/lisa-tracker-read/SKILL.md +27 -0
- package/plugins/src/base/skills/lisa-tracker-source-artifacts/SKILL.md +107 -0
- package/plugins/src/base/skills/lisa-tracker-sync/SKILL.md +64 -0
- package/plugins/src/base/skills/lisa-tracker-validate/SKILL.md +36 -0
- package/plugins/src/base/skills/lisa-tracker-verify/SKILL.md +28 -0
- package/plugins/src/base/skills/lisa-tracker-write/SKILL.md +53 -0
- package/plugins/src/base/skills/lisa-usage-accounting/SKILL.md +170 -0
- package/plugins/src/base/skills/lisa-use-the-product/SKILL.md +86 -0
- package/plugins/src/base/skills/lisa-validate-tracker-mapping/SKILL.md +188 -0
- package/plugins/src/base/skills/lisa-verification-lifecycle/SKILL.md +365 -0
- package/plugins/src/base/skills/lisa-verify/SKILL.md +52 -0
- package/plugins/src/base/skills/lisa-verify-prd/SKILL.md +392 -0
- package/plugins/src/base/skills/lisa-wiki-install/SKILL.md +101 -0
- package/plugins/src/expo/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/src/harper-fabric/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/plugins/src/rails/skills/e2e-coverage-gaps/SKILL.md +4 -4
- package/scripts/fix-namespace-test-assertions.mjs +195 -0
- package/scripts/fix-test-assertions-pass2.mjs +86 -0
- package/scripts/fix-test-assertions.mjs +58 -0
- package/scripts/generate-codex-plugin-artifacts.mjs +2 -1
- package/scripts/migrate-skill-command-namespace.mjs +141 -0
- package/scripts/update-test-command-paths.mjs +87 -0
- package/scripts/update-test-skill-paths.mjs +62 -0
- package/plugins/lisa/commands/analyze-claude-remote.md +0 -6
- package/plugins/lisa/commands/automation-status.md +0 -12
- package/plugins/lisa/commands/codify-verification.md +0 -6
- package/plugins/lisa/commands/cross-pollinate.md +0 -15
- package/plugins/lisa/commands/debrief/apply.md +0 -6
- package/plugins/lisa/commands/debrief.md +0 -6
- package/plugins/lisa/commands/doctor.md +0 -6
- package/plugins/lisa/commands/exploratory-qa.md +0 -7
- package/plugins/lisa/commands/fix/linter-error.md +0 -7
- package/plugins/lisa/commands/generate-claude-remote-build-script.md +0 -6
- package/plugins/lisa/commands/git/commit.md +0 -7
- package/plugins/lisa/commands/git/prune.md +0 -6
- package/plugins/lisa/commands/git/submit-pr.md +0 -7
- package/plugins/lisa/commands/implement.md +0 -6
- package/plugins/lisa/commands/improve/code-complexity.md +0 -6
- package/plugins/lisa/commands/improve/max-lines-per-function.md +0 -7
- package/plugins/lisa/commands/improve/max-lines.md +0 -7
- package/plugins/lisa/commands/improve/test-coverage.md +0 -7
- package/plugins/lisa/commands/improve/tests.md +0 -7
- package/plugins/lisa/commands/intake-explain.md +0 -31
- package/plugins/lisa/commands/intake.md +0 -6
- package/plugins/lisa/commands/monitor.md +0 -6
- package/plugins/lisa/commands/parity-code-review.md +0 -6
- package/plugins/lisa/commands/parity-code-simplifier.md +0 -6
- package/plugins/lisa/commands/parity-coderabbit.md +0 -6
- package/plugins/lisa/commands/parity-safety-net-rules.md +0 -6
- package/plugins/lisa/commands/parity-sentry-sdk-setup.md +0 -6
- package/plugins/lisa/commands/parity-sentry-seer.md +0 -6
- package/plugins/lisa/commands/parity-skill-creator.md +0 -6
- package/plugins/lisa/commands/plan.md +0 -6
- package/plugins/lisa/commands/plugin-sync-explain.md +0 -8
- package/plugins/lisa/commands/product-walkthrough.md +0 -7
- package/plugins/lisa/commands/project-ideation.md +0 -6
- package/plugins/lisa/commands/pull-request/review.md +0 -7
- package/plugins/lisa/commands/queue-status.md +0 -34
- package/plugins/lisa/commands/repair-intake.md +0 -6
- package/plugins/lisa/commands/research.md +0 -6
- package/plugins/lisa/commands/review/local.md +0 -6
- package/plugins/lisa/commands/security/zap-scan.md +0 -6
- package/plugins/lisa/commands/setup/atlassian.md +0 -7
- package/plugins/lisa/commands/setup/confluence.md +0 -7
- package/plugins/lisa/commands/setup/github.md +0 -7
- package/plugins/lisa/commands/setup/jira.md +0 -7
- package/plugins/lisa/commands/setup/linear.md +0 -7
- package/plugins/lisa/commands/setup/notion.md +0 -7
- package/plugins/lisa/commands/setup-automations.md +0 -6
- package/plugins/lisa/commands/sync-down.md +0 -7
- package/plugins/lisa/commands/tear-down-automations.md +0 -6
- package/plugins/lisa/commands/validate-tracker-mapping.md +0 -15
- package/plugins/lisa/commands/verify-prd.md +0 -6
- package/plugins/lisa/commands/verify.md +0 -6
- package/plugins/lisa/commands/wiki/install.md +0 -7
- package/plugins/lisa/skills/acceptance-criteria/SKILL.md +0 -71
- package/plugins/lisa/skills/acceptance-criteria/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/agent-design-best-practices/SKILL.md +0 -219
- package/plugins/lisa/skills/agent-design-best-practices/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/analyze-claude-remote/SKILL.md +0 -421
- package/plugins/lisa/skills/analyze-claude-remote/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/atlassian-access/SKILL.md +0 -361
- package/plugins/lisa/skills/atlassian-access/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/automation-status/SKILL.md +0 -111
- package/plugins/lisa/skills/automation-status/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/bug-triage/SKILL.md +0 -23
- package/plugins/lisa/skills/bug-triage/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/codebase-research/SKILL.md +0 -87
- package/plugins/lisa/skills/codebase-research/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/codify-verification/SKILL.md +0 -162
- package/plugins/lisa/skills/codify-verification/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/confluence-prd-intake/SKILL.md +0 -417
- package/plugins/lisa/skills/confluence-prd-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/confluence-to-tracker/SKILL.md +0 -362
- package/plugins/lisa/skills/confluence-to-tracker/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/confluence-write-prd/SKILL.md +0 -109
- package/plugins/lisa/skills/confluence-write-prd/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/cross-pollinate/SKILL.md +0 -175
- package/plugins/lisa/skills/cross-pollinate/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/debrief/SKILL.md +0 -94
- package/plugins/lisa/skills/debrief/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/debrief-apply/SKILL.md +0 -63
- package/plugins/lisa/skills/debrief-apply/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/doctor/SKILL.md +0 -336
- package/plugins/lisa/skills/doctor/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/drive-pr-to-merge/SKILL.md +0 -152
- package/plugins/lisa/skills/drive-pr-to-merge/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/epic-triage/SKILL.md +0 -28
- package/plugins/lisa/skills/epic-triage/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/exploratory-qa/SKILL.md +0 -91
- package/plugins/lisa/skills/exploratory-qa/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/fix-linter-error/SKILL.md +0 -45
- package/plugins/lisa/skills/fix-linter-error/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/generate-claude-remote-build-script/SKILL.md +0 -224
- package/plugins/lisa/skills/generate-claude-remote-build-script/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/git-commit/SKILL.md +0 -48
- package/plugins/lisa/skills/git-commit/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/git-prune/SKILL.md +0 -35
- package/plugins/lisa/skills/git-prune/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/git-submit-pr/SKILL.md +0 -113
- package/plugins/lisa/skills/git-submit-pr/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-add-journey/SKILL.md +0 -115
- package/plugins/lisa/skills/github-add-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-build-intake/SKILL.md +0 -446
- package/plugins/lisa/skills/github-build-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-create/SKILL.md +0 -101
- package/plugins/lisa/skills/github-create/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-evidence/SKILL.md +0 -110
- package/plugins/lisa/skills/github-evidence/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-journey/SKILL.md +0 -121
- package/plugins/lisa/skills/github-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-prd-intake/SKILL.md +0 -432
- package/plugins/lisa/skills/github-prd-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-project-v2/SKILL.md +0 -227
- package/plugins/lisa/skills/github-project-v2/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-read-issue/SKILL.md +0 -248
- package/plugins/lisa/skills/github-read-issue/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-sync/SKILL.md +0 -132
- package/plugins/lisa/skills/github-sync/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-to-tracker/SKILL.md +0 -347
- package/plugins/lisa/skills/github-to-tracker/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-validate-issue/SKILL.md +0 -330
- package/plugins/lisa/skills/github-validate-issue/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-verify/SKILL.md +0 -29
- package/plugins/lisa/skills/github-verify/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-write-issue/SKILL.md +0 -339
- package/plugins/lisa/skills/github-write-issue/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/github-write-prd/SKILL.md +0 -157
- package/plugins/lisa/skills/github-write-prd/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/implement/SKILL.md +0 -202
- package/plugins/lisa/skills/implement/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/improve-code-complexity/SKILL.md +0 -44
- package/plugins/lisa/skills/improve-code-complexity/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/improve-max-lines/SKILL.md +0 -45
- package/plugins/lisa/skills/improve-max-lines/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/improve-max-lines-per-function/SKILL.md +0 -46
- package/plugins/lisa/skills/improve-max-lines-per-function/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/improve-test-coverage/SKILL.md +0 -44
- package/plugins/lisa/skills/improve-test-coverage/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/improve-tests/SKILL.md +0 -47
- package/plugins/lisa/skills/improve-tests/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/intake/SKILL.md +0 -133
- package/plugins/lisa/skills/intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/intake-explain/SKILL.md +0 -279
- package/plugins/lisa/skills/intake-explain/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jam-access/SKILL.md +0 -52
- package/plugins/lisa/skills/jam-access/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-add-journey/SKILL.md +0 -121
- package/plugins/lisa/skills/jira-add-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-build-intake/SKILL.md +0 -368
- package/plugins/lisa/skills/jira-build-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-create/SKILL.md +0 -154
- package/plugins/lisa/skills/jira-create/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-evidence/SKILL.md +0 -90
- package/plugins/lisa/skills/jira-evidence/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-journey/SKILL.md +0 -127
- package/plugins/lisa/skills/jira-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-read-ticket/SKILL.md +0 -198
- package/plugins/lisa/skills/jira-read-ticket/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-sync/SKILL.md +0 -108
- package/plugins/lisa/skills/jira-sync/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-validate-ticket/SKILL.md +0 -317
- package/plugins/lisa/skills/jira-validate-ticket/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-verify/SKILL.md +0 -30
- package/plugins/lisa/skills/jira-verify/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jira-write-ticket/SKILL.md +0 -267
- package/plugins/lisa/skills/jira-write-ticket/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/jsdoc-best-practices/SKILL.md +0 -432
- package/plugins/lisa/skills/jsdoc-best-practices/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-access/SKILL.md +0 -90
- package/plugins/lisa/skills/linear-access/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-add-journey/SKILL.md +0 -105
- package/plugins/lisa/skills/linear-add-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-build-intake/SKILL.md +0 -346
- package/plugins/lisa/skills/linear-build-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-create/SKILL.md +0 -146
- package/plugins/lisa/skills/linear-create/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-evidence/SKILL.md +0 -103
- package/plugins/lisa/skills/linear-evidence/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-journey/SKILL.md +0 -134
- package/plugins/lisa/skills/linear-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-prd-intake/SKILL.md +0 -383
- package/plugins/lisa/skills/linear-prd-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-read-issue/SKILL.md +0 -200
- package/plugins/lisa/skills/linear-read-issue/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-sync/SKILL.md +0 -127
- package/plugins/lisa/skills/linear-sync/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-to-tracker/SKILL.md +0 -344
- package/plugins/lisa/skills/linear-to-tracker/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-validate-issue/SKILL.md +0 -314
- package/plugins/lisa/skills/linear-validate-issue/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-verify/SKILL.md +0 -51
- package/plugins/lisa/skills/linear-verify/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-write-issue/SKILL.md +0 -292
- package/plugins/lisa/skills/linear-write-issue/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/linear-write-prd/SKILL.md +0 -96
- package/plugins/lisa/skills/linear-write-prd/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/monitor/SKILL.md +0 -69
- package/plugins/lisa/skills/monitor/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/nightly-add-test-coverage/SKILL.md +0 -40
- package/plugins/lisa/skills/nightly-add-test-coverage/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/nightly-improve-tests/SKILL.md +0 -29
- package/plugins/lisa/skills/nightly-improve-tests/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/nightly-lower-code-complexity/SKILL.md +0 -28
- package/plugins/lisa/skills/nightly-lower-code-complexity/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/notion-access/SKILL.md +0 -226
- package/plugins/lisa/skills/notion-access/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/notion-prd-intake/SKILL.md +0 -360
- package/plugins/lisa/skills/notion-prd-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/notion-to-tracker/SKILL.md +0 -359
- package/plugins/lisa/skills/notion-to-tracker/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/notion-write-prd/SKILL.md +0 -109
- package/plugins/lisa/skills/notion-write-prd/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/parity-code-review/SKILL.md +0 -83
- package/plugins/lisa/skills/parity-code-review/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/parity-code-simplifier/SKILL.md +0 -76
- package/plugins/lisa/skills/parity-code-simplifier/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/parity-coderabbit/SKILL.md +0 -77
- package/plugins/lisa/skills/parity-coderabbit/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/parity-safety-net-rules/SKILL.md +0 -144
- package/plugins/lisa/skills/parity-safety-net-rules/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/parity-sentry-sdk-setup/SKILL.md +0 -211
- package/plugins/lisa/skills/parity-sentry-sdk-setup/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/parity-sentry-seer/SKILL.md +0 -135
- package/plugins/lisa/skills/parity-sentry-seer/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/parity-skill-creator/SKILL.md +0 -149
- package/plugins/lisa/skills/parity-skill-creator/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/performance-review/SKILL.md +0 -94
- package/plugins/lisa/skills/performance-review/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/plan/SKILL.md +0 -60
- package/plugins/lisa/skills/plan/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/plugin-sync-explain/SKILL.md +0 -53
- package/plugins/lisa/skills/plugin-sync-explain/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/posthog-access/SKILL.md +0 -60
- package/plugins/lisa/skills/posthog-access/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/prd-backlink/SKILL.md +0 -265
- package/plugins/lisa/skills/prd-backlink/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/prd-source-write/SKILL.md +0 -101
- package/plugins/lisa/skills/prd-source-write/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/prd-ticket-coverage/SKILL.md +0 -170
- package/plugins/lisa/skills/prd-ticket-coverage/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/product-walkthrough/SKILL.md +0 -104
- package/plugins/lisa/skills/product-walkthrough/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/project-ideation/SKILL.md +0 -315
- package/plugins/lisa/skills/project-ideation/agents/openai.yaml +0 -6
- package/plugins/lisa/skills/pull-request-review/SKILL.md +0 -84
- package/plugins/lisa/skills/pull-request-review/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/quality-review/SKILL.md +0 -54
- package/plugins/lisa/skills/quality-review/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/queue-status/SKILL.md +0 -133
- package/plugins/lisa/skills/queue-status/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/repair-intake/SKILL.md +0 -1026
- package/plugins/lisa/skills/repair-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/reproduce-bug/SKILL.md +0 -96
- package/plugins/lisa/skills/reproduce-bug/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/research/SKILL.md +0 -68
- package/plugins/lisa/skills/research/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/review-local/SKILL.md +0 -88
- package/plugins/lisa/skills/review-local/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/root-cause-analysis/SKILL.md +0 -155
- package/plugins/lisa/skills/root-cause-analysis/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/security-review/SKILL.md +0 -57
- package/plugins/lisa/skills/security-review/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/security-zap-scan/SKILL.md +0 -33
- package/plugins/lisa/skills/security-zap-scan/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/sentry-access/SKILL.md +0 -56
- package/plugins/lisa/skills/sentry-access/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/setup-atlassian/SKILL.md +0 -347
- package/plugins/lisa/skills/setup-atlassian/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/setup-automations/SKILL.md +0 -103
- package/plugins/lisa/skills/setup-automations/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/setup-confluence/SKILL.md +0 -254
- package/plugins/lisa/skills/setup-confluence/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/setup-github/SKILL.md +0 -268
- package/plugins/lisa/skills/setup-github/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/setup-jira/SKILL.md +0 -198
- package/plugins/lisa/skills/setup-jira/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/setup-linear/SKILL.md +0 -251
- package/plugins/lisa/skills/setup-linear/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/setup-notion/SKILL.md +0 -316
- package/plugins/lisa/skills/setup-notion/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/sonarcloud-access/SKILL.md +0 -71
- package/plugins/lisa/skills/sonarcloud-access/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/spec-conformance/SKILL.md +0 -159
- package/plugins/lisa/skills/spec-conformance/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/sync-down/SKILL.md +0 -171
- package/plugins/lisa/skills/sync-down/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/task-decomposition/SKILL.md +0 -127
- package/plugins/lisa/skills/task-decomposition/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/task-triage/SKILL.md +0 -23
- package/plugins/lisa/skills/task-triage/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tdd-implementation/SKILL.md +0 -86
- package/plugins/lisa/skills/tdd-implementation/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tear-down-automations/SKILL.md +0 -34
- package/plugins/lisa/skills/tear-down-automations/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/test-strategy/SKILL.md +0 -63
- package/plugins/lisa/skills/test-strategy/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/ticket-triage/SKILL.md +0 -186
- package/plugins/lisa/skills/ticket-triage/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-add-journey/SKILL.md +0 -26
- package/plugins/lisa/skills/tracker-add-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-build-intake/SKILL.md +0 -85
- package/plugins/lisa/skills/tracker-build-intake/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-create/SKILL.md +0 -26
- package/plugins/lisa/skills/tracker-create/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-evidence/SKILL.md +0 -52
- package/plugins/lisa/skills/tracker-evidence/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-journey/SKILL.md +0 -26
- package/plugins/lisa/skills/tracker-journey/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-read/SKILL.md +0 -27
- package/plugins/lisa/skills/tracker-read/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-source-artifacts/SKILL.md +0 -107
- package/plugins/lisa/skills/tracker-source-artifacts/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-sync/SKILL.md +0 -64
- package/plugins/lisa/skills/tracker-sync/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-validate/SKILL.md +0 -36
- package/plugins/lisa/skills/tracker-validate/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-verify/SKILL.md +0 -28
- package/plugins/lisa/skills/tracker-verify/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/tracker-write/SKILL.md +0 -53
- package/plugins/lisa/skills/tracker-write/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/usage-accounting/SKILL.md +0 -170
- package/plugins/lisa/skills/usage-accounting/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/use-the-product/SKILL.md +0 -86
- package/plugins/lisa/skills/use-the-product/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/validate-tracker-mapping/SKILL.md +0 -188
- package/plugins/lisa/skills/validate-tracker-mapping/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/verification-lifecycle/SKILL.md +0 -365
- package/plugins/lisa/skills/verification-lifecycle/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/verify/SKILL.md +0 -52
- package/plugins/lisa/skills/verify/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/verify-prd/SKILL.md +0 -392
- package/plugins/lisa/skills/verify-prd/agents/openai.yaml +0 -4
- package/plugins/lisa/skills/wiki-install/SKILL.md +0 -101
- package/plugins/lisa/skills/wiki-install/agents/openai.yaml +0 -4
- package/plugins/lisa-agy/commands/analyze-claude-remote.md +0 -6
- package/plugins/lisa-agy/commands/automation-status.md +0 -12
- package/plugins/lisa-agy/commands/codify-verification.md +0 -6
- package/plugins/lisa-agy/commands/cross-pollinate.md +0 -15
- package/plugins/lisa-agy/commands/debrief/apply.md +0 -6
- package/plugins/lisa-agy/commands/debrief.md +0 -6
- package/plugins/lisa-agy/commands/doctor.md +0 -6
- package/plugins/lisa-agy/commands/exploratory-qa.md +0 -7
- package/plugins/lisa-agy/commands/fix/linter-error.md +0 -7
- package/plugins/lisa-agy/commands/generate-claude-remote-build-script.md +0 -6
- package/plugins/lisa-agy/commands/git/commit.md +0 -7
- package/plugins/lisa-agy/commands/git/prune.md +0 -6
- package/plugins/lisa-agy/commands/git/submit-pr.md +0 -7
- package/plugins/lisa-agy/commands/implement.md +0 -6
- package/plugins/lisa-agy/commands/improve/code-complexity.md +0 -6
- package/plugins/lisa-agy/commands/improve/max-lines-per-function.md +0 -7
- package/plugins/lisa-agy/commands/improve/max-lines.md +0 -7
- package/plugins/lisa-agy/commands/improve/test-coverage.md +0 -7
- package/plugins/lisa-agy/commands/improve/tests.md +0 -7
- package/plugins/lisa-agy/commands/intake-explain.md +0 -31
- package/plugins/lisa-agy/commands/intake.md +0 -6
- package/plugins/lisa-agy/commands/monitor.md +0 -6
- package/plugins/lisa-agy/commands/parity-code-review.md +0 -6
- package/plugins/lisa-agy/commands/parity-code-simplifier.md +0 -6
- package/plugins/lisa-agy/commands/parity-coderabbit.md +0 -6
- package/plugins/lisa-agy/commands/parity-safety-net-rules.md +0 -6
- package/plugins/lisa-agy/commands/parity-sentry-sdk-setup.md +0 -6
- package/plugins/lisa-agy/commands/parity-sentry-seer.md +0 -6
- package/plugins/lisa-agy/commands/parity-skill-creator.md +0 -6
- package/plugins/lisa-agy/commands/plan.md +0 -6
- package/plugins/lisa-agy/commands/plugin-sync-explain.md +0 -8
- package/plugins/lisa-agy/commands/product-walkthrough.md +0 -7
- package/plugins/lisa-agy/commands/project-ideation.md +0 -6
- package/plugins/lisa-agy/commands/pull-request/review.md +0 -7
- package/plugins/lisa-agy/commands/queue-status.md +0 -34
- package/plugins/lisa-agy/commands/repair-intake.md +0 -6
- package/plugins/lisa-agy/commands/research.md +0 -6
- package/plugins/lisa-agy/commands/review/local.md +0 -6
- package/plugins/lisa-agy/commands/security/zap-scan.md +0 -6
- package/plugins/lisa-agy/commands/setup/atlassian.md +0 -7
- package/plugins/lisa-agy/commands/setup/confluence.md +0 -7
- package/plugins/lisa-agy/commands/setup/github.md +0 -7
- package/plugins/lisa-agy/commands/setup/jira.md +0 -7
- package/plugins/lisa-agy/commands/setup/linear.md +0 -7
- package/plugins/lisa-agy/commands/setup/notion.md +0 -7
- package/plugins/lisa-agy/commands/setup-automations.md +0 -6
- package/plugins/lisa-agy/commands/sync-down.md +0 -7
- package/plugins/lisa-agy/commands/tear-down-automations.md +0 -6
- package/plugins/lisa-agy/commands/validate-tracker-mapping.md +0 -15
- package/plugins/lisa-agy/commands/verify-prd.md +0 -6
- package/plugins/lisa-agy/commands/verify.md +0 -6
- package/plugins/lisa-agy/commands/wiki/install.md +0 -7
- package/plugins/lisa-agy/skills/acceptance-criteria/SKILL.md +0 -71
- package/plugins/lisa-agy/skills/agent-design-best-practices/SKILL.md +0 -219
- package/plugins/lisa-agy/skills/analyze-claude-remote/SKILL.md +0 -421
- package/plugins/lisa-agy/skills/atlassian-access/SKILL.md +0 -361
- package/plugins/lisa-agy/skills/automation-status/SKILL.md +0 -111
- package/plugins/lisa-agy/skills/bug-triage/SKILL.md +0 -23
- package/plugins/lisa-agy/skills/codebase-research/SKILL.md +0 -87
- package/plugins/lisa-agy/skills/codify-verification/SKILL.md +0 -162
- package/plugins/lisa-agy/skills/confluence-prd-intake/SKILL.md +0 -417
- package/plugins/lisa-agy/skills/confluence-to-tracker/SKILL.md +0 -362
- package/plugins/lisa-agy/skills/confluence-write-prd/SKILL.md +0 -109
- package/plugins/lisa-agy/skills/cross-pollinate/SKILL.md +0 -175
- package/plugins/lisa-agy/skills/debrief/SKILL.md +0 -94
- package/plugins/lisa-agy/skills/debrief-apply/SKILL.md +0 -63
- package/plugins/lisa-agy/skills/doctor/SKILL.md +0 -336
- package/plugins/lisa-agy/skills/drive-pr-to-merge/SKILL.md +0 -152
- package/plugins/lisa-agy/skills/epic-triage/SKILL.md +0 -28
- package/plugins/lisa-agy/skills/exploratory-qa/SKILL.md +0 -91
- package/plugins/lisa-agy/skills/fix-linter-error/SKILL.md +0 -45
- package/plugins/lisa-agy/skills/generate-claude-remote-build-script/SKILL.md +0 -224
- package/plugins/lisa-agy/skills/git-commit/SKILL.md +0 -48
- package/plugins/lisa-agy/skills/git-prune/SKILL.md +0 -35
- package/plugins/lisa-agy/skills/git-submit-pr/SKILL.md +0 -113
- package/plugins/lisa-agy/skills/github-add-journey/SKILL.md +0 -115
- package/plugins/lisa-agy/skills/github-build-intake/SKILL.md +0 -446
- package/plugins/lisa-agy/skills/github-create/SKILL.md +0 -101
- package/plugins/lisa-agy/skills/github-evidence/SKILL.md +0 -110
- package/plugins/lisa-agy/skills/github-journey/SKILL.md +0 -121
- package/plugins/lisa-agy/skills/github-prd-intake/SKILL.md +0 -432
- package/plugins/lisa-agy/skills/github-project-v2/SKILL.md +0 -227
- package/plugins/lisa-agy/skills/github-read-issue/SKILL.md +0 -248
- package/plugins/lisa-agy/skills/github-sync/SKILL.md +0 -132
- package/plugins/lisa-agy/skills/github-to-tracker/SKILL.md +0 -347
- package/plugins/lisa-agy/skills/github-validate-issue/SKILL.md +0 -330
- package/plugins/lisa-agy/skills/github-verify/SKILL.md +0 -29
- package/plugins/lisa-agy/skills/github-write-issue/SKILL.md +0 -339
- package/plugins/lisa-agy/skills/github-write-prd/SKILL.md +0 -157
- package/plugins/lisa-agy/skills/implement/SKILL.md +0 -202
- package/plugins/lisa-agy/skills/improve-code-complexity/SKILL.md +0 -44
- package/plugins/lisa-agy/skills/improve-max-lines/SKILL.md +0 -45
- package/plugins/lisa-agy/skills/improve-max-lines-per-function/SKILL.md +0 -46
- package/plugins/lisa-agy/skills/improve-test-coverage/SKILL.md +0 -44
- package/plugins/lisa-agy/skills/improve-tests/SKILL.md +0 -47
- package/plugins/lisa-agy/skills/intake/SKILL.md +0 -133
- package/plugins/lisa-agy/skills/intake-explain/SKILL.md +0 -279
- package/plugins/lisa-agy/skills/jam-access/SKILL.md +0 -52
- package/plugins/lisa-agy/skills/jira-add-journey/SKILL.md +0 -121
- package/plugins/lisa-agy/skills/jira-build-intake/SKILL.md +0 -368
- package/plugins/lisa-agy/skills/jira-create/SKILL.md +0 -154
- package/plugins/lisa-agy/skills/jira-evidence/SKILL.md +0 -90
- package/plugins/lisa-agy/skills/jira-journey/SKILL.md +0 -127
- package/plugins/lisa-agy/skills/jira-read-ticket/SKILL.md +0 -198
- package/plugins/lisa-agy/skills/jira-sync/SKILL.md +0 -108
- package/plugins/lisa-agy/skills/jira-validate-ticket/SKILL.md +0 -317
- package/plugins/lisa-agy/skills/jira-verify/SKILL.md +0 -30
- package/plugins/lisa-agy/skills/jira-write-ticket/SKILL.md +0 -267
- package/plugins/lisa-agy/skills/jsdoc-best-practices/SKILL.md +0 -432
- package/plugins/lisa-agy/skills/linear-access/SKILL.md +0 -90
- package/plugins/lisa-agy/skills/linear-add-journey/SKILL.md +0 -105
- package/plugins/lisa-agy/skills/linear-build-intake/SKILL.md +0 -346
- package/plugins/lisa-agy/skills/linear-create/SKILL.md +0 -146
- package/plugins/lisa-agy/skills/linear-evidence/SKILL.md +0 -103
- package/plugins/lisa-agy/skills/linear-journey/SKILL.md +0 -134
- package/plugins/lisa-agy/skills/linear-prd-intake/SKILL.md +0 -383
- package/plugins/lisa-agy/skills/linear-read-issue/SKILL.md +0 -200
- package/plugins/lisa-agy/skills/linear-sync/SKILL.md +0 -127
- package/plugins/lisa-agy/skills/linear-to-tracker/SKILL.md +0 -344
- package/plugins/lisa-agy/skills/linear-validate-issue/SKILL.md +0 -314
- package/plugins/lisa-agy/skills/linear-verify/SKILL.md +0 -51
- package/plugins/lisa-agy/skills/linear-write-issue/SKILL.md +0 -292
- package/plugins/lisa-agy/skills/linear-write-prd/SKILL.md +0 -96
- package/plugins/lisa-agy/skills/monitor/SKILL.md +0 -69
- package/plugins/lisa-agy/skills/nightly-add-test-coverage/SKILL.md +0 -40
- package/plugins/lisa-agy/skills/nightly-improve-tests/SKILL.md +0 -29
- package/plugins/lisa-agy/skills/nightly-lower-code-complexity/SKILL.md +0 -28
- package/plugins/lisa-agy/skills/notion-access/SKILL.md +0 -226
- package/plugins/lisa-agy/skills/notion-prd-intake/SKILL.md +0 -360
- package/plugins/lisa-agy/skills/notion-to-tracker/SKILL.md +0 -359
- package/plugins/lisa-agy/skills/notion-write-prd/SKILL.md +0 -109
- package/plugins/lisa-agy/skills/parity-code-review/SKILL.md +0 -83
- package/plugins/lisa-agy/skills/parity-code-simplifier/SKILL.md +0 -76
- package/plugins/lisa-agy/skills/parity-coderabbit/SKILL.md +0 -77
- package/plugins/lisa-agy/skills/parity-safety-net-rules/SKILL.md +0 -144
- package/plugins/lisa-agy/skills/parity-sentry-sdk-setup/SKILL.md +0 -211
- package/plugins/lisa-agy/skills/parity-sentry-seer/SKILL.md +0 -135
- package/plugins/lisa-agy/skills/parity-skill-creator/SKILL.md +0 -149
- package/plugins/lisa-agy/skills/performance-review/SKILL.md +0 -94
- package/plugins/lisa-agy/skills/plan/SKILL.md +0 -60
- package/plugins/lisa-agy/skills/plugin-sync-explain/SKILL.md +0 -53
- package/plugins/lisa-agy/skills/posthog-access/SKILL.md +0 -60
- package/plugins/lisa-agy/skills/prd-backlink/SKILL.md +0 -265
- package/plugins/lisa-agy/skills/prd-source-write/SKILL.md +0 -101
- package/plugins/lisa-agy/skills/prd-ticket-coverage/SKILL.md +0 -170
- package/plugins/lisa-agy/skills/product-walkthrough/SKILL.md +0 -104
- package/plugins/lisa-agy/skills/project-ideation/SKILL.md +0 -315
- package/plugins/lisa-agy/skills/pull-request-review/SKILL.md +0 -84
- package/plugins/lisa-agy/skills/quality-review/SKILL.md +0 -54
- package/plugins/lisa-agy/skills/queue-status/SKILL.md +0 -133
- package/plugins/lisa-agy/skills/repair-intake/SKILL.md +0 -1026
- package/plugins/lisa-agy/skills/reproduce-bug/SKILL.md +0 -96
- package/plugins/lisa-agy/skills/research/SKILL.md +0 -68
- package/plugins/lisa-agy/skills/review-local/SKILL.md +0 -88
- package/plugins/lisa-agy/skills/root-cause-analysis/SKILL.md +0 -155
- package/plugins/lisa-agy/skills/security-review/SKILL.md +0 -57
- package/plugins/lisa-agy/skills/security-zap-scan/SKILL.md +0 -33
- package/plugins/lisa-agy/skills/sentry-access/SKILL.md +0 -56
- package/plugins/lisa-agy/skills/setup-atlassian/SKILL.md +0 -347
- package/plugins/lisa-agy/skills/setup-automations/SKILL.md +0 -103
- package/plugins/lisa-agy/skills/setup-confluence/SKILL.md +0 -254
- package/plugins/lisa-agy/skills/setup-github/SKILL.md +0 -268
- package/plugins/lisa-agy/skills/setup-jira/SKILL.md +0 -198
- package/plugins/lisa-agy/skills/setup-linear/SKILL.md +0 -251
- package/plugins/lisa-agy/skills/setup-notion/SKILL.md +0 -316
- package/plugins/lisa-agy/skills/sonarcloud-access/SKILL.md +0 -71
- package/plugins/lisa-agy/skills/spec-conformance/SKILL.md +0 -159
- package/plugins/lisa-agy/skills/sync-down/SKILL.md +0 -171
- package/plugins/lisa-agy/skills/task-decomposition/SKILL.md +0 -127
- package/plugins/lisa-agy/skills/task-triage/SKILL.md +0 -23
- package/plugins/lisa-agy/skills/tdd-implementation/SKILL.md +0 -86
- package/plugins/lisa-agy/skills/tear-down-automations/SKILL.md +0 -34
- package/plugins/lisa-agy/skills/test-strategy/SKILL.md +0 -63
- package/plugins/lisa-agy/skills/ticket-triage/SKILL.md +0 -186
- package/plugins/lisa-agy/skills/tracker-add-journey/SKILL.md +0 -26
- package/plugins/lisa-agy/skills/tracker-build-intake/SKILL.md +0 -85
- package/plugins/lisa-agy/skills/tracker-create/SKILL.md +0 -26
- package/plugins/lisa-agy/skills/tracker-evidence/SKILL.md +0 -52
- package/plugins/lisa-agy/skills/tracker-journey/SKILL.md +0 -26
- package/plugins/lisa-agy/skills/tracker-read/SKILL.md +0 -27
- package/plugins/lisa-agy/skills/tracker-source-artifacts/SKILL.md +0 -107
- package/plugins/lisa-agy/skills/tracker-sync/SKILL.md +0 -64
- package/plugins/lisa-agy/skills/tracker-validate/SKILL.md +0 -36
- package/plugins/lisa-agy/skills/tracker-verify/SKILL.md +0 -28
- package/plugins/lisa-agy/skills/tracker-write/SKILL.md +0 -53
- package/plugins/lisa-agy/skills/usage-accounting/SKILL.md +0 -170
- package/plugins/lisa-agy/skills/use-the-product/SKILL.md +0 -86
- package/plugins/lisa-agy/skills/validate-tracker-mapping/SKILL.md +0 -188
- package/plugins/lisa-agy/skills/verification-lifecycle/SKILL.md +0 -365
- package/plugins/lisa-agy/skills/verify/SKILL.md +0 -52
- package/plugins/lisa-agy/skills/verify-prd/SKILL.md +0 -392
- package/plugins/lisa-agy/skills/wiki-install/SKILL.md +0 -101
- package/plugins/lisa-copilot/commands/analyze-claude-remote.md +0 -6
- package/plugins/lisa-copilot/commands/automation-status.md +0 -12
- package/plugins/lisa-copilot/commands/codify-verification.md +0 -6
- package/plugins/lisa-copilot/commands/cross-pollinate.md +0 -15
- package/plugins/lisa-copilot/commands/debrief/apply.md +0 -6
- package/plugins/lisa-copilot/commands/debrief.md +0 -6
- package/plugins/lisa-copilot/commands/doctor.md +0 -6
- package/plugins/lisa-copilot/commands/exploratory-qa.md +0 -7
- package/plugins/lisa-copilot/commands/fix/linter-error.md +0 -7
- package/plugins/lisa-copilot/commands/generate-claude-remote-build-script.md +0 -6
- package/plugins/lisa-copilot/commands/git/commit.md +0 -7
- package/plugins/lisa-copilot/commands/git/prune.md +0 -6
- package/plugins/lisa-copilot/commands/git/submit-pr.md +0 -7
- package/plugins/lisa-copilot/commands/implement.md +0 -6
- package/plugins/lisa-copilot/commands/improve/code-complexity.md +0 -6
- package/plugins/lisa-copilot/commands/improve/max-lines-per-function.md +0 -7
- package/plugins/lisa-copilot/commands/improve/max-lines.md +0 -7
- package/plugins/lisa-copilot/commands/improve/test-coverage.md +0 -7
- package/plugins/lisa-copilot/commands/improve/tests.md +0 -7
- package/plugins/lisa-copilot/commands/intake-explain.md +0 -31
- package/plugins/lisa-copilot/commands/intake.md +0 -6
- package/plugins/lisa-copilot/commands/monitor.md +0 -6
- package/plugins/lisa-copilot/commands/parity-code-review.md +0 -6
- package/plugins/lisa-copilot/commands/parity-code-simplifier.md +0 -6
- package/plugins/lisa-copilot/commands/parity-coderabbit.md +0 -6
- package/plugins/lisa-copilot/commands/parity-safety-net-rules.md +0 -6
- package/plugins/lisa-copilot/commands/parity-sentry-sdk-setup.md +0 -6
- package/plugins/lisa-copilot/commands/parity-sentry-seer.md +0 -6
- package/plugins/lisa-copilot/commands/parity-skill-creator.md +0 -6
- package/plugins/lisa-copilot/commands/plan.md +0 -6
- package/plugins/lisa-copilot/commands/plugin-sync-explain.md +0 -8
- package/plugins/lisa-copilot/commands/product-walkthrough.md +0 -7
- package/plugins/lisa-copilot/commands/project-ideation.md +0 -6
- package/plugins/lisa-copilot/commands/pull-request/review.md +0 -7
- package/plugins/lisa-copilot/commands/queue-status.md +0 -34
- package/plugins/lisa-copilot/commands/repair-intake.md +0 -6
- package/plugins/lisa-copilot/commands/research.md +0 -6
- package/plugins/lisa-copilot/commands/review/local.md +0 -6
- package/plugins/lisa-copilot/commands/security/zap-scan.md +0 -6
- package/plugins/lisa-copilot/commands/setup/atlassian.md +0 -7
- package/plugins/lisa-copilot/commands/setup/confluence.md +0 -7
- package/plugins/lisa-copilot/commands/setup/github.md +0 -7
- package/plugins/lisa-copilot/commands/setup/jira.md +0 -7
- package/plugins/lisa-copilot/commands/setup/linear.md +0 -7
- package/plugins/lisa-copilot/commands/setup/notion.md +0 -7
- package/plugins/lisa-copilot/commands/setup-automations.md +0 -6
- package/plugins/lisa-copilot/commands/sync-down.md +0 -7
- package/plugins/lisa-copilot/commands/tear-down-automations.md +0 -6
- package/plugins/lisa-copilot/commands/validate-tracker-mapping.md +0 -15
- package/plugins/lisa-copilot/commands/verify-prd.md +0 -6
- package/plugins/lisa-copilot/commands/verify.md +0 -6
- package/plugins/lisa-copilot/commands/wiki/install.md +0 -7
- package/plugins/lisa-copilot/skills/acceptance-criteria/SKILL.md +0 -71
- package/plugins/lisa-copilot/skills/agent-design-best-practices/SKILL.md +0 -219
- package/plugins/lisa-copilot/skills/analyze-claude-remote/SKILL.md +0 -421
- package/plugins/lisa-copilot/skills/atlassian-access/SKILL.md +0 -361
- package/plugins/lisa-copilot/skills/automation-status/SKILL.md +0 -111
- package/plugins/lisa-copilot/skills/bug-triage/SKILL.md +0 -23
- package/plugins/lisa-copilot/skills/codebase-research/SKILL.md +0 -87
- package/plugins/lisa-copilot/skills/codify-verification/SKILL.md +0 -162
- package/plugins/lisa-copilot/skills/confluence-prd-intake/SKILL.md +0 -417
- package/plugins/lisa-copilot/skills/confluence-to-tracker/SKILL.md +0 -362
- package/plugins/lisa-copilot/skills/confluence-write-prd/SKILL.md +0 -109
- package/plugins/lisa-copilot/skills/cross-pollinate/SKILL.md +0 -175
- package/plugins/lisa-copilot/skills/debrief/SKILL.md +0 -94
- package/plugins/lisa-copilot/skills/debrief-apply/SKILL.md +0 -63
- package/plugins/lisa-copilot/skills/doctor/SKILL.md +0 -336
- package/plugins/lisa-copilot/skills/drive-pr-to-merge/SKILL.md +0 -152
- package/plugins/lisa-copilot/skills/epic-triage/SKILL.md +0 -28
- package/plugins/lisa-copilot/skills/exploratory-qa/SKILL.md +0 -91
- package/plugins/lisa-copilot/skills/fix-linter-error/SKILL.md +0 -45
- package/plugins/lisa-copilot/skills/generate-claude-remote-build-script/SKILL.md +0 -224
- package/plugins/lisa-copilot/skills/git-commit/SKILL.md +0 -48
- package/plugins/lisa-copilot/skills/git-prune/SKILL.md +0 -35
- package/plugins/lisa-copilot/skills/git-submit-pr/SKILL.md +0 -113
- package/plugins/lisa-copilot/skills/github-add-journey/SKILL.md +0 -115
- package/plugins/lisa-copilot/skills/github-build-intake/SKILL.md +0 -446
- package/plugins/lisa-copilot/skills/github-create/SKILL.md +0 -101
- package/plugins/lisa-copilot/skills/github-evidence/SKILL.md +0 -110
- package/plugins/lisa-copilot/skills/github-journey/SKILL.md +0 -121
- package/plugins/lisa-copilot/skills/github-prd-intake/SKILL.md +0 -432
- package/plugins/lisa-copilot/skills/github-project-v2/SKILL.md +0 -227
- package/plugins/lisa-copilot/skills/github-read-issue/SKILL.md +0 -248
- package/plugins/lisa-copilot/skills/github-sync/SKILL.md +0 -132
- package/plugins/lisa-copilot/skills/github-to-tracker/SKILL.md +0 -347
- package/plugins/lisa-copilot/skills/github-validate-issue/SKILL.md +0 -330
- package/plugins/lisa-copilot/skills/github-verify/SKILL.md +0 -29
- package/plugins/lisa-copilot/skills/github-write-issue/SKILL.md +0 -339
- package/plugins/lisa-copilot/skills/github-write-prd/SKILL.md +0 -157
- package/plugins/lisa-copilot/skills/implement/SKILL.md +0 -202
- package/plugins/lisa-copilot/skills/improve-code-complexity/SKILL.md +0 -44
- package/plugins/lisa-copilot/skills/improve-max-lines/SKILL.md +0 -45
- package/plugins/lisa-copilot/skills/improve-max-lines-per-function/SKILL.md +0 -46
- package/plugins/lisa-copilot/skills/improve-test-coverage/SKILL.md +0 -44
- package/plugins/lisa-copilot/skills/improve-tests/SKILL.md +0 -47
- package/plugins/lisa-copilot/skills/intake/SKILL.md +0 -133
- package/plugins/lisa-copilot/skills/intake-explain/SKILL.md +0 -279
- package/plugins/lisa-copilot/skills/jam-access/SKILL.md +0 -52
- package/plugins/lisa-copilot/skills/jira-add-journey/SKILL.md +0 -121
- package/plugins/lisa-copilot/skills/jira-build-intake/SKILL.md +0 -368
- package/plugins/lisa-copilot/skills/jira-create/SKILL.md +0 -154
- package/plugins/lisa-copilot/skills/jira-evidence/SKILL.md +0 -90
- package/plugins/lisa-copilot/skills/jira-journey/SKILL.md +0 -127
- package/plugins/lisa-copilot/skills/jira-read-ticket/SKILL.md +0 -198
- package/plugins/lisa-copilot/skills/jira-sync/SKILL.md +0 -108
- package/plugins/lisa-copilot/skills/jira-validate-ticket/SKILL.md +0 -317
- package/plugins/lisa-copilot/skills/jira-verify/SKILL.md +0 -30
- package/plugins/lisa-copilot/skills/jira-write-ticket/SKILL.md +0 -267
- package/plugins/lisa-copilot/skills/jsdoc-best-practices/SKILL.md +0 -432
- package/plugins/lisa-copilot/skills/linear-access/SKILL.md +0 -90
- package/plugins/lisa-copilot/skills/linear-add-journey/SKILL.md +0 -105
- package/plugins/lisa-copilot/skills/linear-build-intake/SKILL.md +0 -346
- package/plugins/lisa-copilot/skills/linear-create/SKILL.md +0 -146
- package/plugins/lisa-copilot/skills/linear-evidence/SKILL.md +0 -103
- package/plugins/lisa-copilot/skills/linear-journey/SKILL.md +0 -134
- package/plugins/lisa-copilot/skills/linear-prd-intake/SKILL.md +0 -383
- package/plugins/lisa-copilot/skills/linear-read-issue/SKILL.md +0 -200
- package/plugins/lisa-copilot/skills/linear-sync/SKILL.md +0 -127
- package/plugins/lisa-copilot/skills/linear-to-tracker/SKILL.md +0 -344
- package/plugins/lisa-copilot/skills/linear-validate-issue/SKILL.md +0 -314
- package/plugins/lisa-copilot/skills/linear-verify/SKILL.md +0 -51
- package/plugins/lisa-copilot/skills/linear-write-issue/SKILL.md +0 -292
- package/plugins/lisa-copilot/skills/linear-write-prd/SKILL.md +0 -96
- package/plugins/lisa-copilot/skills/monitor/SKILL.md +0 -69
- package/plugins/lisa-copilot/skills/nightly-add-test-coverage/SKILL.md +0 -40
- package/plugins/lisa-copilot/skills/nightly-improve-tests/SKILL.md +0 -29
- package/plugins/lisa-copilot/skills/nightly-lower-code-complexity/SKILL.md +0 -28
- package/plugins/lisa-copilot/skills/notion-access/SKILL.md +0 -226
- package/plugins/lisa-copilot/skills/notion-prd-intake/SKILL.md +0 -360
- package/plugins/lisa-copilot/skills/notion-to-tracker/SKILL.md +0 -359
- package/plugins/lisa-copilot/skills/notion-write-prd/SKILL.md +0 -109
- package/plugins/lisa-copilot/skills/parity-code-review/SKILL.md +0 -83
- package/plugins/lisa-copilot/skills/parity-code-simplifier/SKILL.md +0 -76
- package/plugins/lisa-copilot/skills/parity-coderabbit/SKILL.md +0 -77
- package/plugins/lisa-copilot/skills/parity-safety-net-rules/SKILL.md +0 -144
- package/plugins/lisa-copilot/skills/parity-sentry-sdk-setup/SKILL.md +0 -211
- package/plugins/lisa-copilot/skills/parity-sentry-seer/SKILL.md +0 -135
- package/plugins/lisa-copilot/skills/parity-skill-creator/SKILL.md +0 -149
- package/plugins/lisa-copilot/skills/performance-review/SKILL.md +0 -94
- package/plugins/lisa-copilot/skills/plan/SKILL.md +0 -60
- package/plugins/lisa-copilot/skills/plugin-sync-explain/SKILL.md +0 -53
- package/plugins/lisa-copilot/skills/posthog-access/SKILL.md +0 -60
- package/plugins/lisa-copilot/skills/prd-backlink/SKILL.md +0 -265
- package/plugins/lisa-copilot/skills/prd-source-write/SKILL.md +0 -101
- package/plugins/lisa-copilot/skills/prd-ticket-coverage/SKILL.md +0 -170
- package/plugins/lisa-copilot/skills/product-walkthrough/SKILL.md +0 -104
- package/plugins/lisa-copilot/skills/project-ideation/SKILL.md +0 -315
- package/plugins/lisa-copilot/skills/pull-request-review/SKILL.md +0 -84
- package/plugins/lisa-copilot/skills/quality-review/SKILL.md +0 -54
- package/plugins/lisa-copilot/skills/queue-status/SKILL.md +0 -133
- package/plugins/lisa-copilot/skills/repair-intake/SKILL.md +0 -1026
- package/plugins/lisa-copilot/skills/reproduce-bug/SKILL.md +0 -96
- package/plugins/lisa-copilot/skills/research/SKILL.md +0 -68
- package/plugins/lisa-copilot/skills/review-local/SKILL.md +0 -88
- package/plugins/lisa-copilot/skills/root-cause-analysis/SKILL.md +0 -155
- package/plugins/lisa-copilot/skills/security-review/SKILL.md +0 -57
- package/plugins/lisa-copilot/skills/security-zap-scan/SKILL.md +0 -33
- package/plugins/lisa-copilot/skills/sentry-access/SKILL.md +0 -56
- package/plugins/lisa-copilot/skills/setup-atlassian/SKILL.md +0 -347
- package/plugins/lisa-copilot/skills/setup-automations/SKILL.md +0 -103
- package/plugins/lisa-copilot/skills/setup-confluence/SKILL.md +0 -254
- package/plugins/lisa-copilot/skills/setup-github/SKILL.md +0 -268
- package/plugins/lisa-copilot/skills/setup-jira/SKILL.md +0 -198
- package/plugins/lisa-copilot/skills/setup-linear/SKILL.md +0 -251
- package/plugins/lisa-copilot/skills/setup-notion/SKILL.md +0 -316
- package/plugins/lisa-copilot/skills/sonarcloud-access/SKILL.md +0 -71
- package/plugins/lisa-copilot/skills/spec-conformance/SKILL.md +0 -159
- package/plugins/lisa-copilot/skills/sync-down/SKILL.md +0 -171
- package/plugins/lisa-copilot/skills/task-decomposition/SKILL.md +0 -127
- package/plugins/lisa-copilot/skills/task-triage/SKILL.md +0 -23
- package/plugins/lisa-copilot/skills/tdd-implementation/SKILL.md +0 -86
- package/plugins/lisa-copilot/skills/tear-down-automations/SKILL.md +0 -34
- package/plugins/lisa-copilot/skills/test-strategy/SKILL.md +0 -63
- package/plugins/lisa-copilot/skills/ticket-triage/SKILL.md +0 -186
- package/plugins/lisa-copilot/skills/tracker-add-journey/SKILL.md +0 -26
- package/plugins/lisa-copilot/skills/tracker-build-intake/SKILL.md +0 -85
- package/plugins/lisa-copilot/skills/tracker-create/SKILL.md +0 -26
- package/plugins/lisa-copilot/skills/tracker-evidence/SKILL.md +0 -52
- package/plugins/lisa-copilot/skills/tracker-journey/SKILL.md +0 -26
- package/plugins/lisa-copilot/skills/tracker-read/SKILL.md +0 -27
- package/plugins/lisa-copilot/skills/tracker-source-artifacts/SKILL.md +0 -107
- package/plugins/lisa-copilot/skills/tracker-sync/SKILL.md +0 -64
- package/plugins/lisa-copilot/skills/tracker-validate/SKILL.md +0 -36
- package/plugins/lisa-copilot/skills/tracker-verify/SKILL.md +0 -28
- package/plugins/lisa-copilot/skills/tracker-write/SKILL.md +0 -53
- package/plugins/lisa-copilot/skills/usage-accounting/SKILL.md +0 -170
- package/plugins/lisa-copilot/skills/use-the-product/SKILL.md +0 -86
- package/plugins/lisa-copilot/skills/validate-tracker-mapping/SKILL.md +0 -188
- package/plugins/lisa-copilot/skills/verification-lifecycle/SKILL.md +0 -365
- package/plugins/lisa-copilot/skills/verify/SKILL.md +0 -52
- package/plugins/lisa-copilot/skills/verify-prd/SKILL.md +0 -392
- package/plugins/lisa-copilot/skills/wiki-install/SKILL.md +0 -101
- package/plugins/lisa-cursor/commands/analyze-claude-remote.md +0 -6
- package/plugins/lisa-cursor/commands/automation-status.md +0 -12
- package/plugins/lisa-cursor/commands/codify-verification.md +0 -6
- package/plugins/lisa-cursor/commands/cross-pollinate.md +0 -15
- package/plugins/lisa-cursor/commands/debrief/apply.md +0 -6
- package/plugins/lisa-cursor/commands/debrief.md +0 -6
- package/plugins/lisa-cursor/commands/doctor.md +0 -6
- package/plugins/lisa-cursor/commands/exploratory-qa.md +0 -7
- package/plugins/lisa-cursor/commands/fix/linter-error.md +0 -7
- package/plugins/lisa-cursor/commands/generate-claude-remote-build-script.md +0 -6
- package/plugins/lisa-cursor/commands/git/commit.md +0 -7
- package/plugins/lisa-cursor/commands/git/prune.md +0 -6
- package/plugins/lisa-cursor/commands/git/submit-pr.md +0 -7
- package/plugins/lisa-cursor/commands/implement.md +0 -6
- package/plugins/lisa-cursor/commands/improve/code-complexity.md +0 -6
- package/plugins/lisa-cursor/commands/improve/max-lines-per-function.md +0 -7
- package/plugins/lisa-cursor/commands/improve/max-lines.md +0 -7
- package/plugins/lisa-cursor/commands/improve/test-coverage.md +0 -7
- package/plugins/lisa-cursor/commands/improve/tests.md +0 -7
- package/plugins/lisa-cursor/commands/intake-explain.md +0 -31
- package/plugins/lisa-cursor/commands/intake.md +0 -6
- package/plugins/lisa-cursor/commands/monitor.md +0 -6
- package/plugins/lisa-cursor/commands/parity-code-review.md +0 -6
- package/plugins/lisa-cursor/commands/parity-code-simplifier.md +0 -6
- package/plugins/lisa-cursor/commands/parity-coderabbit.md +0 -6
- package/plugins/lisa-cursor/commands/parity-safety-net-rules.md +0 -6
- package/plugins/lisa-cursor/commands/parity-sentry-sdk-setup.md +0 -6
- package/plugins/lisa-cursor/commands/parity-sentry-seer.md +0 -6
- package/plugins/lisa-cursor/commands/parity-skill-creator.md +0 -6
- package/plugins/lisa-cursor/commands/plan.md +0 -6
- package/plugins/lisa-cursor/commands/plugin-sync-explain.md +0 -8
- package/plugins/lisa-cursor/commands/product-walkthrough.md +0 -7
- package/plugins/lisa-cursor/commands/project-ideation.md +0 -6
- package/plugins/lisa-cursor/commands/pull-request/review.md +0 -7
- package/plugins/lisa-cursor/commands/queue-status.md +0 -34
- package/plugins/lisa-cursor/commands/repair-intake.md +0 -6
- package/plugins/lisa-cursor/commands/research.md +0 -6
- package/plugins/lisa-cursor/commands/review/local.md +0 -6
- package/plugins/lisa-cursor/commands/security/zap-scan.md +0 -6
- package/plugins/lisa-cursor/commands/setup/atlassian.md +0 -7
- package/plugins/lisa-cursor/commands/setup/confluence.md +0 -7
- package/plugins/lisa-cursor/commands/setup/github.md +0 -7
- package/plugins/lisa-cursor/commands/setup/jira.md +0 -7
- package/plugins/lisa-cursor/commands/setup/linear.md +0 -7
- package/plugins/lisa-cursor/commands/setup/notion.md +0 -7
- package/plugins/lisa-cursor/commands/setup-automations.md +0 -6
- package/plugins/lisa-cursor/commands/sync-down.md +0 -7
- package/plugins/lisa-cursor/commands/tear-down-automations.md +0 -6
- package/plugins/lisa-cursor/commands/validate-tracker-mapping.md +0 -15
- package/plugins/lisa-cursor/commands/verify-prd.md +0 -6
- package/plugins/lisa-cursor/commands/verify.md +0 -6
- package/plugins/lisa-cursor/commands/wiki/install.md +0 -7
- package/plugins/lisa-cursor/skills/acceptance-criteria/SKILL.md +0 -71
- package/plugins/lisa-cursor/skills/agent-design-best-practices/SKILL.md +0 -219
- package/plugins/lisa-cursor/skills/analyze-claude-remote/SKILL.md +0 -421
- package/plugins/lisa-cursor/skills/atlassian-access/SKILL.md +0 -361
- package/plugins/lisa-cursor/skills/automation-status/SKILL.md +0 -111
- package/plugins/lisa-cursor/skills/bug-triage/SKILL.md +0 -23
- package/plugins/lisa-cursor/skills/codebase-research/SKILL.md +0 -87
- package/plugins/lisa-cursor/skills/codify-verification/SKILL.md +0 -162
- package/plugins/lisa-cursor/skills/confluence-prd-intake/SKILL.md +0 -417
- package/plugins/lisa-cursor/skills/confluence-to-tracker/SKILL.md +0 -362
- package/plugins/lisa-cursor/skills/confluence-write-prd/SKILL.md +0 -109
- package/plugins/lisa-cursor/skills/cross-pollinate/SKILL.md +0 -175
- package/plugins/lisa-cursor/skills/debrief/SKILL.md +0 -94
- package/plugins/lisa-cursor/skills/debrief-apply/SKILL.md +0 -63
- package/plugins/lisa-cursor/skills/doctor/SKILL.md +0 -336
- package/plugins/lisa-cursor/skills/drive-pr-to-merge/SKILL.md +0 -152
- package/plugins/lisa-cursor/skills/epic-triage/SKILL.md +0 -28
- package/plugins/lisa-cursor/skills/exploratory-qa/SKILL.md +0 -91
- package/plugins/lisa-cursor/skills/fix-linter-error/SKILL.md +0 -45
- package/plugins/lisa-cursor/skills/generate-claude-remote-build-script/SKILL.md +0 -224
- package/plugins/lisa-cursor/skills/git-commit/SKILL.md +0 -48
- package/plugins/lisa-cursor/skills/git-prune/SKILL.md +0 -35
- package/plugins/lisa-cursor/skills/git-submit-pr/SKILL.md +0 -113
- package/plugins/lisa-cursor/skills/github-add-journey/SKILL.md +0 -115
- package/plugins/lisa-cursor/skills/github-build-intake/SKILL.md +0 -446
- package/plugins/lisa-cursor/skills/github-create/SKILL.md +0 -101
- package/plugins/lisa-cursor/skills/github-evidence/SKILL.md +0 -110
- package/plugins/lisa-cursor/skills/github-journey/SKILL.md +0 -121
- package/plugins/lisa-cursor/skills/github-prd-intake/SKILL.md +0 -432
- package/plugins/lisa-cursor/skills/github-project-v2/SKILL.md +0 -227
- package/plugins/lisa-cursor/skills/github-read-issue/SKILL.md +0 -248
- package/plugins/lisa-cursor/skills/github-sync/SKILL.md +0 -132
- package/plugins/lisa-cursor/skills/github-to-tracker/SKILL.md +0 -347
- package/plugins/lisa-cursor/skills/github-validate-issue/SKILL.md +0 -330
- package/plugins/lisa-cursor/skills/github-verify/SKILL.md +0 -29
- package/plugins/lisa-cursor/skills/github-write-issue/SKILL.md +0 -339
- package/plugins/lisa-cursor/skills/github-write-prd/SKILL.md +0 -157
- package/plugins/lisa-cursor/skills/implement/SKILL.md +0 -202
- package/plugins/lisa-cursor/skills/improve-code-complexity/SKILL.md +0 -44
- package/plugins/lisa-cursor/skills/improve-max-lines/SKILL.md +0 -45
- package/plugins/lisa-cursor/skills/improve-max-lines-per-function/SKILL.md +0 -46
- package/plugins/lisa-cursor/skills/improve-test-coverage/SKILL.md +0 -44
- package/plugins/lisa-cursor/skills/improve-tests/SKILL.md +0 -47
- package/plugins/lisa-cursor/skills/intake/SKILL.md +0 -133
- package/plugins/lisa-cursor/skills/intake-explain/SKILL.md +0 -279
- package/plugins/lisa-cursor/skills/jam-access/SKILL.md +0 -52
- package/plugins/lisa-cursor/skills/jira-add-journey/SKILL.md +0 -121
- package/plugins/lisa-cursor/skills/jira-build-intake/SKILL.md +0 -368
- package/plugins/lisa-cursor/skills/jira-create/SKILL.md +0 -154
- package/plugins/lisa-cursor/skills/jira-evidence/SKILL.md +0 -90
- package/plugins/lisa-cursor/skills/jira-journey/SKILL.md +0 -127
- package/plugins/lisa-cursor/skills/jira-read-ticket/SKILL.md +0 -198
- package/plugins/lisa-cursor/skills/jira-sync/SKILL.md +0 -108
- package/plugins/lisa-cursor/skills/jira-validate-ticket/SKILL.md +0 -317
- package/plugins/lisa-cursor/skills/jira-verify/SKILL.md +0 -30
- package/plugins/lisa-cursor/skills/jira-write-ticket/SKILL.md +0 -267
- package/plugins/lisa-cursor/skills/jsdoc-best-practices/SKILL.md +0 -432
- package/plugins/lisa-cursor/skills/linear-access/SKILL.md +0 -90
- package/plugins/lisa-cursor/skills/linear-add-journey/SKILL.md +0 -105
- package/plugins/lisa-cursor/skills/linear-build-intake/SKILL.md +0 -346
- package/plugins/lisa-cursor/skills/linear-create/SKILL.md +0 -146
- package/plugins/lisa-cursor/skills/linear-evidence/SKILL.md +0 -103
- package/plugins/lisa-cursor/skills/linear-journey/SKILL.md +0 -134
- package/plugins/lisa-cursor/skills/linear-prd-intake/SKILL.md +0 -383
- package/plugins/lisa-cursor/skills/linear-read-issue/SKILL.md +0 -200
- package/plugins/lisa-cursor/skills/linear-sync/SKILL.md +0 -127
- package/plugins/lisa-cursor/skills/linear-to-tracker/SKILL.md +0 -344
- package/plugins/lisa-cursor/skills/linear-validate-issue/SKILL.md +0 -314
- package/plugins/lisa-cursor/skills/linear-verify/SKILL.md +0 -51
- package/plugins/lisa-cursor/skills/linear-write-issue/SKILL.md +0 -292
- package/plugins/lisa-cursor/skills/linear-write-prd/SKILL.md +0 -96
- package/plugins/lisa-cursor/skills/monitor/SKILL.md +0 -69
- package/plugins/lisa-cursor/skills/nightly-add-test-coverage/SKILL.md +0 -40
- package/plugins/lisa-cursor/skills/nightly-improve-tests/SKILL.md +0 -29
- package/plugins/lisa-cursor/skills/nightly-lower-code-complexity/SKILL.md +0 -28
- package/plugins/lisa-cursor/skills/notion-access/SKILL.md +0 -226
- package/plugins/lisa-cursor/skills/notion-prd-intake/SKILL.md +0 -360
- package/plugins/lisa-cursor/skills/notion-to-tracker/SKILL.md +0 -359
- package/plugins/lisa-cursor/skills/notion-write-prd/SKILL.md +0 -109
- package/plugins/lisa-cursor/skills/parity-code-review/SKILL.md +0 -83
- package/plugins/lisa-cursor/skills/parity-code-simplifier/SKILL.md +0 -76
- package/plugins/lisa-cursor/skills/parity-coderabbit/SKILL.md +0 -77
- package/plugins/lisa-cursor/skills/parity-safety-net-rules/SKILL.md +0 -144
- package/plugins/lisa-cursor/skills/parity-sentry-sdk-setup/SKILL.md +0 -211
- package/plugins/lisa-cursor/skills/parity-sentry-seer/SKILL.md +0 -135
- package/plugins/lisa-cursor/skills/parity-skill-creator/SKILL.md +0 -149
- package/plugins/lisa-cursor/skills/performance-review/SKILL.md +0 -94
- package/plugins/lisa-cursor/skills/plan/SKILL.md +0 -60
- package/plugins/lisa-cursor/skills/plugin-sync-explain/SKILL.md +0 -53
- package/plugins/lisa-cursor/skills/posthog-access/SKILL.md +0 -60
- package/plugins/lisa-cursor/skills/prd-backlink/SKILL.md +0 -265
- package/plugins/lisa-cursor/skills/prd-source-write/SKILL.md +0 -101
- package/plugins/lisa-cursor/skills/prd-ticket-coverage/SKILL.md +0 -170
- package/plugins/lisa-cursor/skills/product-walkthrough/SKILL.md +0 -104
- package/plugins/lisa-cursor/skills/project-ideation/SKILL.md +0 -315
- package/plugins/lisa-cursor/skills/pull-request-review/SKILL.md +0 -84
- package/plugins/lisa-cursor/skills/quality-review/SKILL.md +0 -54
- package/plugins/lisa-cursor/skills/queue-status/SKILL.md +0 -133
- package/plugins/lisa-cursor/skills/repair-intake/SKILL.md +0 -1026
- package/plugins/lisa-cursor/skills/reproduce-bug/SKILL.md +0 -96
- package/plugins/lisa-cursor/skills/research/SKILL.md +0 -68
- package/plugins/lisa-cursor/skills/review-local/SKILL.md +0 -88
- package/plugins/lisa-cursor/skills/root-cause-analysis/SKILL.md +0 -155
- package/plugins/lisa-cursor/skills/security-review/SKILL.md +0 -57
- package/plugins/lisa-cursor/skills/security-zap-scan/SKILL.md +0 -33
- package/plugins/lisa-cursor/skills/sentry-access/SKILL.md +0 -56
- package/plugins/lisa-cursor/skills/setup-atlassian/SKILL.md +0 -347
- package/plugins/lisa-cursor/skills/setup-automations/SKILL.md +0 -103
- package/plugins/lisa-cursor/skills/setup-confluence/SKILL.md +0 -254
- package/plugins/lisa-cursor/skills/setup-github/SKILL.md +0 -268
- package/plugins/lisa-cursor/skills/setup-jira/SKILL.md +0 -198
- package/plugins/lisa-cursor/skills/setup-linear/SKILL.md +0 -251
- package/plugins/lisa-cursor/skills/setup-notion/SKILL.md +0 -316
- package/plugins/lisa-cursor/skills/sonarcloud-access/SKILL.md +0 -71
- package/plugins/lisa-cursor/skills/spec-conformance/SKILL.md +0 -159
- package/plugins/lisa-cursor/skills/sync-down/SKILL.md +0 -171
- package/plugins/lisa-cursor/skills/task-decomposition/SKILL.md +0 -127
- package/plugins/lisa-cursor/skills/task-triage/SKILL.md +0 -23
- package/plugins/lisa-cursor/skills/tdd-implementation/SKILL.md +0 -86
- package/plugins/lisa-cursor/skills/tear-down-automations/SKILL.md +0 -34
- package/plugins/lisa-cursor/skills/test-strategy/SKILL.md +0 -63
- package/plugins/lisa-cursor/skills/ticket-triage/SKILL.md +0 -186
- package/plugins/lisa-cursor/skills/tracker-add-journey/SKILL.md +0 -26
- package/plugins/lisa-cursor/skills/tracker-build-intake/SKILL.md +0 -85
- package/plugins/lisa-cursor/skills/tracker-create/SKILL.md +0 -26
- package/plugins/lisa-cursor/skills/tracker-evidence/SKILL.md +0 -52
- package/plugins/lisa-cursor/skills/tracker-journey/SKILL.md +0 -26
- package/plugins/lisa-cursor/skills/tracker-read/SKILL.md +0 -27
- package/plugins/lisa-cursor/skills/tracker-source-artifacts/SKILL.md +0 -107
- package/plugins/lisa-cursor/skills/tracker-sync/SKILL.md +0 -64
- package/plugins/lisa-cursor/skills/tracker-validate/SKILL.md +0 -36
- package/plugins/lisa-cursor/skills/tracker-verify/SKILL.md +0 -28
- package/plugins/lisa-cursor/skills/tracker-write/SKILL.md +0 -53
- package/plugins/lisa-cursor/skills/usage-accounting/SKILL.md +0 -170
- package/plugins/lisa-cursor/skills/use-the-product/SKILL.md +0 -86
- package/plugins/lisa-cursor/skills/validate-tracker-mapping/SKILL.md +0 -188
- package/plugins/lisa-cursor/skills/verification-lifecycle/SKILL.md +0 -365
- package/plugins/lisa-cursor/skills/verify/SKILL.md +0 -52
- package/plugins/lisa-cursor/skills/verify-prd/SKILL.md +0 -392
- package/plugins/lisa-cursor/skills/wiki-install/SKILL.md +0 -101
- package/plugins/src/base/commands/analyze-claude-remote.md +0 -6
- package/plugins/src/base/commands/automation-status.md +0 -12
- package/plugins/src/base/commands/codify-verification.md +0 -6
- package/plugins/src/base/commands/cross-pollinate.md +0 -15
- package/plugins/src/base/commands/debrief/apply.md +0 -6
- package/plugins/src/base/commands/debrief.md +0 -6
- package/plugins/src/base/commands/doctor.md +0 -6
- package/plugins/src/base/commands/exploratory-qa.md +0 -7
- package/plugins/src/base/commands/fix/linter-error.md +0 -7
- package/plugins/src/base/commands/generate-claude-remote-build-script.md +0 -6
- package/plugins/src/base/commands/git/commit.md +0 -7
- package/plugins/src/base/commands/git/prune.md +0 -6
- package/plugins/src/base/commands/git/submit-pr.md +0 -7
- package/plugins/src/base/commands/implement.md +0 -6
- package/plugins/src/base/commands/improve/code-complexity.md +0 -6
- package/plugins/src/base/commands/improve/max-lines-per-function.md +0 -7
- package/plugins/src/base/commands/improve/max-lines.md +0 -7
- package/plugins/src/base/commands/improve/test-coverage.md +0 -7
- package/plugins/src/base/commands/improve/tests.md +0 -7
- package/plugins/src/base/commands/intake-explain.md +0 -31
- package/plugins/src/base/commands/intake.md +0 -6
- package/plugins/src/base/commands/monitor.md +0 -6
- package/plugins/src/base/commands/parity-code-review.md +0 -6
- package/plugins/src/base/commands/parity-code-simplifier.md +0 -6
- package/plugins/src/base/commands/parity-coderabbit.md +0 -6
- package/plugins/src/base/commands/parity-safety-net-rules.md +0 -6
- package/plugins/src/base/commands/parity-sentry-sdk-setup.md +0 -6
- package/plugins/src/base/commands/parity-sentry-seer.md +0 -6
- package/plugins/src/base/commands/parity-skill-creator.md +0 -6
- package/plugins/src/base/commands/plan.md +0 -6
- package/plugins/src/base/commands/plugin-sync-explain.md +0 -8
- package/plugins/src/base/commands/product-walkthrough.md +0 -7
- package/plugins/src/base/commands/project-ideation.md +0 -6
- package/plugins/src/base/commands/pull-request/review.md +0 -7
- package/plugins/src/base/commands/queue-status.md +0 -34
- package/plugins/src/base/commands/repair-intake.md +0 -6
- package/plugins/src/base/commands/research.md +0 -6
- package/plugins/src/base/commands/review/local.md +0 -6
- package/plugins/src/base/commands/security/zap-scan.md +0 -6
- package/plugins/src/base/commands/setup/atlassian.md +0 -7
- package/plugins/src/base/commands/setup/confluence.md +0 -7
- package/plugins/src/base/commands/setup/github.md +0 -7
- package/plugins/src/base/commands/setup/jira.md +0 -7
- package/plugins/src/base/commands/setup/linear.md +0 -7
- package/plugins/src/base/commands/setup/notion.md +0 -7
- package/plugins/src/base/commands/setup-automations.md +0 -6
- package/plugins/src/base/commands/sync-down.md +0 -7
- package/plugins/src/base/commands/tear-down-automations.md +0 -6
- package/plugins/src/base/commands/validate-tracker-mapping.md +0 -15
- package/plugins/src/base/commands/verify-prd.md +0 -6
- package/plugins/src/base/commands/verify.md +0 -6
- package/plugins/src/base/commands/wiki/install.md +0 -7
- package/plugins/src/base/skills/acceptance-criteria/SKILL.md +0 -71
- package/plugins/src/base/skills/agent-design-best-practices/SKILL.md +0 -219
- package/plugins/src/base/skills/analyze-claude-remote/SKILL.md +0 -421
- package/plugins/src/base/skills/atlassian-access/SKILL.md +0 -361
- package/plugins/src/base/skills/automation-status/SKILL.md +0 -111
- package/plugins/src/base/skills/bug-triage/SKILL.md +0 -23
- package/plugins/src/base/skills/codebase-research/SKILL.md +0 -87
- package/plugins/src/base/skills/codify-verification/SKILL.md +0 -162
- package/plugins/src/base/skills/confluence-prd-intake/SKILL.md +0 -417
- package/plugins/src/base/skills/confluence-to-tracker/SKILL.md +0 -362
- package/plugins/src/base/skills/confluence-write-prd/SKILL.md +0 -109
- package/plugins/src/base/skills/cross-pollinate/SKILL.md +0 -175
- package/plugins/src/base/skills/debrief/SKILL.md +0 -94
- package/plugins/src/base/skills/debrief-apply/SKILL.md +0 -63
- package/plugins/src/base/skills/doctor/SKILL.md +0 -336
- package/plugins/src/base/skills/drive-pr-to-merge/SKILL.md +0 -152
- package/plugins/src/base/skills/epic-triage/SKILL.md +0 -28
- package/plugins/src/base/skills/exploratory-qa/SKILL.md +0 -91
- package/plugins/src/base/skills/fix-linter-error/SKILL.md +0 -45
- package/plugins/src/base/skills/generate-claude-remote-build-script/SKILL.md +0 -224
- package/plugins/src/base/skills/git-commit/SKILL.md +0 -48
- package/plugins/src/base/skills/git-prune/SKILL.md +0 -35
- package/plugins/src/base/skills/git-submit-pr/SKILL.md +0 -113
- package/plugins/src/base/skills/github-add-journey/SKILL.md +0 -115
- package/plugins/src/base/skills/github-build-intake/SKILL.md +0 -446
- package/plugins/src/base/skills/github-create/SKILL.md +0 -101
- package/plugins/src/base/skills/github-evidence/SKILL.md +0 -110
- package/plugins/src/base/skills/github-journey/SKILL.md +0 -121
- package/plugins/src/base/skills/github-prd-intake/SKILL.md +0 -432
- package/plugins/src/base/skills/github-project-v2/SKILL.md +0 -227
- package/plugins/src/base/skills/github-read-issue/SKILL.md +0 -248
- package/plugins/src/base/skills/github-sync/SKILL.md +0 -132
- package/plugins/src/base/skills/github-to-tracker/SKILL.md +0 -347
- package/plugins/src/base/skills/github-validate-issue/SKILL.md +0 -330
- package/plugins/src/base/skills/github-verify/SKILL.md +0 -29
- package/plugins/src/base/skills/github-write-issue/SKILL.md +0 -339
- package/plugins/src/base/skills/github-write-prd/SKILL.md +0 -157
- package/plugins/src/base/skills/implement/SKILL.md +0 -202
- package/plugins/src/base/skills/improve-code-complexity/SKILL.md +0 -44
- package/plugins/src/base/skills/improve-max-lines/SKILL.md +0 -45
- package/plugins/src/base/skills/improve-max-lines-per-function/SKILL.md +0 -46
- package/plugins/src/base/skills/improve-test-coverage/SKILL.md +0 -44
- package/plugins/src/base/skills/improve-tests/SKILL.md +0 -47
- package/plugins/src/base/skills/intake/SKILL.md +0 -133
- package/plugins/src/base/skills/intake-explain/SKILL.md +0 -279
- package/plugins/src/base/skills/jam-access/SKILL.md +0 -52
- package/plugins/src/base/skills/jira-add-journey/SKILL.md +0 -121
- package/plugins/src/base/skills/jira-build-intake/SKILL.md +0 -368
- package/plugins/src/base/skills/jira-create/SKILL.md +0 -154
- package/plugins/src/base/skills/jira-evidence/SKILL.md +0 -90
- package/plugins/src/base/skills/jira-journey/SKILL.md +0 -127
- package/plugins/src/base/skills/jira-read-ticket/SKILL.md +0 -198
- package/plugins/src/base/skills/jira-sync/SKILL.md +0 -108
- package/plugins/src/base/skills/jira-validate-ticket/SKILL.md +0 -317
- package/plugins/src/base/skills/jira-verify/SKILL.md +0 -30
- package/plugins/src/base/skills/jira-write-ticket/SKILL.md +0 -267
- package/plugins/src/base/skills/jsdoc-best-practices/SKILL.md +0 -432
- package/plugins/src/base/skills/linear-access/SKILL.md +0 -90
- package/plugins/src/base/skills/linear-add-journey/SKILL.md +0 -105
- package/plugins/src/base/skills/linear-build-intake/SKILL.md +0 -346
- package/plugins/src/base/skills/linear-create/SKILL.md +0 -146
- package/plugins/src/base/skills/linear-evidence/SKILL.md +0 -103
- package/plugins/src/base/skills/linear-journey/SKILL.md +0 -134
- package/plugins/src/base/skills/linear-prd-intake/SKILL.md +0 -383
- package/plugins/src/base/skills/linear-read-issue/SKILL.md +0 -200
- package/plugins/src/base/skills/linear-sync/SKILL.md +0 -127
- package/plugins/src/base/skills/linear-to-tracker/SKILL.md +0 -344
- package/plugins/src/base/skills/linear-validate-issue/SKILL.md +0 -314
- package/plugins/src/base/skills/linear-verify/SKILL.md +0 -51
- package/plugins/src/base/skills/linear-write-issue/SKILL.md +0 -292
- package/plugins/src/base/skills/linear-write-prd/SKILL.md +0 -96
- package/plugins/src/base/skills/monitor/SKILL.md +0 -69
- package/plugins/src/base/skills/nightly-add-test-coverage/SKILL.md +0 -40
- package/plugins/src/base/skills/nightly-improve-tests/SKILL.md +0 -29
- package/plugins/src/base/skills/nightly-lower-code-complexity/SKILL.md +0 -28
- package/plugins/src/base/skills/notion-access/SKILL.md +0 -226
- package/plugins/src/base/skills/notion-prd-intake/SKILL.md +0 -360
- package/plugins/src/base/skills/notion-to-tracker/SKILL.md +0 -359
- package/plugins/src/base/skills/notion-write-prd/SKILL.md +0 -109
- package/plugins/src/base/skills/parity-code-review/SKILL.md +0 -83
- package/plugins/src/base/skills/parity-code-simplifier/SKILL.md +0 -76
- package/plugins/src/base/skills/parity-coderabbit/SKILL.md +0 -77
- package/plugins/src/base/skills/parity-safety-net-rules/SKILL.md +0 -144
- package/plugins/src/base/skills/parity-sentry-sdk-setup/SKILL.md +0 -211
- package/plugins/src/base/skills/parity-sentry-seer/SKILL.md +0 -135
- package/plugins/src/base/skills/parity-skill-creator/SKILL.md +0 -149
- package/plugins/src/base/skills/performance-review/SKILL.md +0 -94
- package/plugins/src/base/skills/plan/SKILL.md +0 -60
- package/plugins/src/base/skills/plugin-sync-explain/SKILL.md +0 -53
- package/plugins/src/base/skills/posthog-access/SKILL.md +0 -60
- package/plugins/src/base/skills/prd-backlink/SKILL.md +0 -265
- package/plugins/src/base/skills/prd-source-write/SKILL.md +0 -101
- package/plugins/src/base/skills/prd-ticket-coverage/SKILL.md +0 -170
- package/plugins/src/base/skills/product-walkthrough/SKILL.md +0 -104
- package/plugins/src/base/skills/project-ideation/SKILL.md +0 -315
- package/plugins/src/base/skills/project-ideation/agents/openai.yaml +0 -6
- package/plugins/src/base/skills/pull-request-review/SKILL.md +0 -84
- package/plugins/src/base/skills/quality-review/SKILL.md +0 -54
- package/plugins/src/base/skills/queue-status/SKILL.md +0 -133
- package/plugins/src/base/skills/repair-intake/SKILL.md +0 -1026
- package/plugins/src/base/skills/reproduce-bug/SKILL.md +0 -96
- package/plugins/src/base/skills/research/SKILL.md +0 -68
- package/plugins/src/base/skills/review-local/SKILL.md +0 -88
- package/plugins/src/base/skills/root-cause-analysis/SKILL.md +0 -155
- package/plugins/src/base/skills/security-review/SKILL.md +0 -57
- package/plugins/src/base/skills/security-zap-scan/SKILL.md +0 -33
- package/plugins/src/base/skills/sentry-access/SKILL.md +0 -56
- package/plugins/src/base/skills/setup-atlassian/SKILL.md +0 -347
- package/plugins/src/base/skills/setup-automations/SKILL.md +0 -103
- package/plugins/src/base/skills/setup-confluence/SKILL.md +0 -254
- package/plugins/src/base/skills/setup-github/SKILL.md +0 -268
- package/plugins/src/base/skills/setup-jira/SKILL.md +0 -198
- package/plugins/src/base/skills/setup-linear/SKILL.md +0 -251
- package/plugins/src/base/skills/setup-notion/SKILL.md +0 -316
- package/plugins/src/base/skills/sonarcloud-access/SKILL.md +0 -71
- package/plugins/src/base/skills/spec-conformance/SKILL.md +0 -159
- package/plugins/src/base/skills/sync-down/SKILL.md +0 -171
- package/plugins/src/base/skills/task-decomposition/SKILL.md +0 -127
- package/plugins/src/base/skills/task-triage/SKILL.md +0 -23
- package/plugins/src/base/skills/tdd-implementation/SKILL.md +0 -86
- package/plugins/src/base/skills/tear-down-automations/SKILL.md +0 -34
- package/plugins/src/base/skills/test-strategy/SKILL.md +0 -63
- package/plugins/src/base/skills/ticket-triage/SKILL.md +0 -186
- package/plugins/src/base/skills/tracker-add-journey/SKILL.md +0 -26
- package/plugins/src/base/skills/tracker-build-intake/SKILL.md +0 -85
- package/plugins/src/base/skills/tracker-create/SKILL.md +0 -26
- package/plugins/src/base/skills/tracker-evidence/SKILL.md +0 -52
- package/plugins/src/base/skills/tracker-journey/SKILL.md +0 -26
- package/plugins/src/base/skills/tracker-read/SKILL.md +0 -27
- package/plugins/src/base/skills/tracker-source-artifacts/SKILL.md +0 -107
- package/plugins/src/base/skills/tracker-sync/SKILL.md +0 -64
- package/plugins/src/base/skills/tracker-validate/SKILL.md +0 -36
- package/plugins/src/base/skills/tracker-verify/SKILL.md +0 -28
- package/plugins/src/base/skills/tracker-write/SKILL.md +0 -53
- package/plugins/src/base/skills/usage-accounting/SKILL.md +0 -170
- package/plugins/src/base/skills/use-the-product/SKILL.md +0 -86
- package/plugins/src/base/skills/validate-tracker-mapping/SKILL.md +0 -188
- package/plugins/src/base/skills/verification-lifecycle/SKILL.md +0 -365
- package/plugins/src/base/skills/verify/SKILL.md +0 -52
- package/plugins/src/base/skills/verify-prd/SKILL.md +0 -392
- package/plugins/src/base/skills/wiki-install/SKILL.md +0 -101
- /package/plugins/lisa/skills/{atlassian-access → lisa-atlassian-access}/scripts/markdown-to-adf.mjs +0 -0
- /package/plugins/lisa/skills/{jira-evidence → lisa-jira-evidence}/scripts/post-evidence.sh +0 -0
- /package/plugins/lisa/skills/{jira-journey → lisa-jira-journey}/scripts/generate-templates.py +0 -0
- /package/plugins/lisa/skills/{jira-journey → lisa-jira-journey}/scripts/parse-plan.py +0 -0
- /package/plugins/lisa/skills/{jira-read-ticket → lisa-jira-read-ticket}/scripts/download-attachment.sh +0 -0
- /package/plugins/lisa/skills/{project-ideation → lisa-project-ideation}/examples/evidence-card-format.md +0 -0
- /package/plugins/lisa/skills/{project-ideation → lisa-project-ideation}/examples/host-project-only.md +0 -0
- /package/plugins/lisa/skills/{project-ideation → lisa-project-ideation}/examples/idempotency-verification-harness.md +0 -0
- /package/plugins/lisa/skills/{project-ideation → lisa-project-ideation}/examples/public-external-inspiration.md +0 -0
- /package/plugins/lisa/skills/{project-ideation → lisa-project-ideation}/examples/unavailable-data-rejection.md +0 -0
- /package/plugins/lisa-agy/skills/{atlassian-access → lisa-atlassian-access}/scripts/markdown-to-adf.mjs +0 -0
- /package/plugins/lisa-agy/skills/{jira-evidence → lisa-jira-evidence}/scripts/post-evidence.sh +0 -0
- /package/plugins/lisa-agy/skills/{jira-journey → lisa-jira-journey}/scripts/generate-templates.py +0 -0
- /package/plugins/lisa-agy/skills/{jira-journey → lisa-jira-journey}/scripts/parse-plan.py +0 -0
- /package/plugins/lisa-agy/skills/{jira-read-ticket → lisa-jira-read-ticket}/scripts/download-attachment.sh +0 -0
- /package/plugins/lisa-agy/skills/{project-ideation → lisa-project-ideation}/examples/evidence-card-format.md +0 -0
- /package/plugins/lisa-agy/skills/{project-ideation → lisa-project-ideation}/examples/host-project-only.md +0 -0
- /package/plugins/lisa-agy/skills/{project-ideation → lisa-project-ideation}/examples/idempotency-verification-harness.md +0 -0
- /package/plugins/lisa-agy/skills/{project-ideation → lisa-project-ideation}/examples/public-external-inspiration.md +0 -0
- /package/plugins/lisa-agy/skills/{project-ideation → lisa-project-ideation}/examples/unavailable-data-rejection.md +0 -0
- /package/plugins/lisa-copilot/skills/{atlassian-access → lisa-atlassian-access}/scripts/markdown-to-adf.mjs +0 -0
- /package/plugins/lisa-copilot/skills/{jira-evidence → lisa-jira-evidence}/scripts/post-evidence.sh +0 -0
- /package/plugins/lisa-copilot/skills/{jira-journey → lisa-jira-journey}/scripts/generate-templates.py +0 -0
- /package/plugins/lisa-copilot/skills/{jira-journey → lisa-jira-journey}/scripts/parse-plan.py +0 -0
- /package/plugins/lisa-copilot/skills/{jira-read-ticket → lisa-jira-read-ticket}/scripts/download-attachment.sh +0 -0
- /package/plugins/lisa-copilot/skills/{project-ideation → lisa-project-ideation}/examples/evidence-card-format.md +0 -0
- /package/plugins/lisa-copilot/skills/{project-ideation → lisa-project-ideation}/examples/host-project-only.md +0 -0
- /package/plugins/lisa-copilot/skills/{project-ideation → lisa-project-ideation}/examples/idempotency-verification-harness.md +0 -0
- /package/plugins/lisa-copilot/skills/{project-ideation → lisa-project-ideation}/examples/public-external-inspiration.md +0 -0
- /package/plugins/lisa-copilot/skills/{project-ideation → lisa-project-ideation}/examples/unavailable-data-rejection.md +0 -0
- /package/plugins/lisa-cursor/skills/{atlassian-access → lisa-atlassian-access}/scripts/markdown-to-adf.mjs +0 -0
- /package/plugins/lisa-cursor/skills/{jira-evidence → lisa-jira-evidence}/scripts/post-evidence.sh +0 -0
- /package/plugins/lisa-cursor/skills/{jira-journey → lisa-jira-journey}/scripts/generate-templates.py +0 -0
- /package/plugins/lisa-cursor/skills/{jira-journey → lisa-jira-journey}/scripts/parse-plan.py +0 -0
- /package/plugins/lisa-cursor/skills/{jira-read-ticket → lisa-jira-read-ticket}/scripts/download-attachment.sh +0 -0
- /package/plugins/lisa-cursor/skills/{project-ideation → lisa-project-ideation}/examples/evidence-card-format.md +0 -0
- /package/plugins/lisa-cursor/skills/{project-ideation → lisa-project-ideation}/examples/host-project-only.md +0 -0
- /package/plugins/lisa-cursor/skills/{project-ideation → lisa-project-ideation}/examples/idempotency-verification-harness.md +0 -0
- /package/plugins/lisa-cursor/skills/{project-ideation → lisa-project-ideation}/examples/public-external-inspiration.md +0 -0
- /package/plugins/lisa-cursor/skills/{project-ideation → lisa-project-ideation}/examples/unavailable-data-rejection.md +0 -0
- /package/plugins/lisa-wiki/commands/{add-ingest.md → lisa/add-ingest.md} +0 -0
- /package/plugins/lisa-wiki/commands/{add-role.md → lisa/add-role.md} +0 -0
- /package/plugins/lisa-wiki/commands/{doctor.md → lisa/doctor.md} +0 -0
- /package/plugins/lisa-wiki/commands/{ingest.md → lisa/ingest.md} +0 -0
- /package/plugins/lisa-wiki/commands/{lint.md → lisa/lint.md} +0 -0
- /package/plugins/lisa-wiki/commands/{migrate.md → lisa/migrate.md} +0 -0
- /package/plugins/lisa-wiki/commands/{onboard-me.md → lisa/onboard-me.md} +0 -0
- /package/plugins/lisa-wiki/commands/{query.md → lisa/query.md} +0 -0
- /package/plugins/lisa-wiki/commands/{setup-automations.md → lisa/setup-automations.md} +0 -0
- /package/plugins/lisa-wiki/commands/{setup.md → lisa/setup.md} +0 -0
- /package/plugins/lisa-wiki/commands/{status.md → lisa/status.md} +0 -0
- /package/plugins/lisa-wiki/commands/{tear-down-automations.md → lisa/tear-down-automations.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{add-ingest.md → lisa/add-ingest.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{add-role.md → lisa/add-role.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{doctor.md → lisa/doctor.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{ingest.md → lisa/ingest.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{lint.md → lisa/lint.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{migrate.md → lisa/migrate.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{onboard-me.md → lisa/onboard-me.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{query.md → lisa/query.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{setup-automations.md → lisa/setup-automations.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{setup.md → lisa/setup.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{status.md → lisa/status.md} +0 -0
- /package/plugins/lisa-wiki-agy/commands/{tear-down-automations.md → lisa/tear-down-automations.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{add-ingest.md → lisa/add-ingest.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{add-role.md → lisa/add-role.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{doctor.md → lisa/doctor.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{ingest.md → lisa/ingest.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{lint.md → lisa/lint.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{migrate.md → lisa/migrate.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{onboard-me.md → lisa/onboard-me.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{query.md → lisa/query.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{setup-automations.md → lisa/setup-automations.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{setup.md → lisa/setup.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{status.md → lisa/status.md} +0 -0
- /package/plugins/lisa-wiki-copilot/commands/{tear-down-automations.md → lisa/tear-down-automations.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{add-ingest.md → lisa/add-ingest.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{add-role.md → lisa/add-role.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{doctor.md → lisa/doctor.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{ingest.md → lisa/ingest.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{lint.md → lisa/lint.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{migrate.md → lisa/migrate.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{onboard-me.md → lisa/onboard-me.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{query.md → lisa/query.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{setup-automations.md → lisa/setup-automations.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{setup.md → lisa/setup.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{status.md → lisa/status.md} +0 -0
- /package/plugins/lisa-wiki-cursor/commands/{tear-down-automations.md → lisa/tear-down-automations.md} +0 -0
- /package/plugins/src/base/skills/{atlassian-access → lisa-atlassian-access}/scripts/markdown-to-adf.mjs +0 -0
- /package/plugins/src/base/skills/{jira-evidence → lisa-jira-evidence}/scripts/post-evidence.sh +0 -0
- /package/plugins/src/base/skills/{jira-journey → lisa-jira-journey}/scripts/generate-templates.py +0 -0
- /package/plugins/src/base/skills/{jira-journey → lisa-jira-journey}/scripts/parse-plan.py +0 -0
- /package/plugins/src/base/skills/{jira-read-ticket → lisa-jira-read-ticket}/scripts/download-attachment.sh +0 -0
- /package/plugins/src/base/skills/{project-ideation → lisa-project-ideation}/examples/evidence-card-format.md +0 -0
- /package/plugins/src/base/skills/{project-ideation → lisa-project-ideation}/examples/host-project-only.md +0 -0
- /package/plugins/src/base/skills/{project-ideation → lisa-project-ideation}/examples/idempotency-verification-harness.md +0 -0
- /package/plugins/src/base/skills/{project-ideation → lisa-project-ideation}/examples/public-external-inspiration.md +0 -0
- /package/plugins/src/base/skills/{project-ideation → lisa-project-ideation}/examples/unavailable-data-rejection.md +0 -0
- /package/plugins/src/wiki/commands/{add-ingest.md → lisa/add-ingest.md} +0 -0
- /package/plugins/src/wiki/commands/{add-role.md → lisa/add-role.md} +0 -0
- /package/plugins/src/wiki/commands/{doctor.md → lisa/doctor.md} +0 -0
- /package/plugins/src/wiki/commands/{ingest.md → lisa/ingest.md} +0 -0
- /package/plugins/src/wiki/commands/{lint.md → lisa/lint.md} +0 -0
- /package/plugins/src/wiki/commands/{migrate.md → lisa/migrate.md} +0 -0
- /package/plugins/src/wiki/commands/{onboard-me.md → lisa/onboard-me.md} +0 -0
- /package/plugins/src/wiki/commands/{query.md → lisa/query.md} +0 -0
- /package/plugins/src/wiki/commands/{setup-automations.md → lisa/setup-automations.md} +0 -0
- /package/plugins/src/wiki/commands/{setup.md → lisa/setup.md} +0 -0
- /package/plugins/src/wiki/commands/{status.md → lisa/status.md} +0 -0
- /package/plugins/src/wiki/commands/{tear-down-automations.md → lisa/tear-down-automations.md} +0 -0
|
@@ -390,7 +390,7 @@ PRD lifecycle completion is **derived** from the PRD's generated top-level work,
|
|
|
390
390
|
|
|
391
391
|
### Repair intake config (`intake.repair`)
|
|
392
392
|
|
|
393
|
-
`lisa
|
|
393
|
+
`lisa-repair-intake` (the recovery counterpart to `lisa-intake`) reads two optional tuning keys
|
|
394
394
|
from the top-level `intake.repair` block. Both are **optional** — a missing block inherits the
|
|
395
395
|
documented defaults, so existing projects need no config change.
|
|
396
396
|
|
|
@@ -401,7 +401,7 @@ documented defaults, so existing projects need no config change.
|
|
|
401
401
|
|
|
402
402
|
### Monitor audit config (`monitor`)
|
|
403
403
|
|
|
404
|
-
`lisa
|
|
404
|
+
`lisa-monitor`'s audit-and-file arm reads an optional top-level `monitor` block. Every key is
|
|
405
405
|
**optional** — a missing block inherits the documented defaults, so existing projects need no
|
|
406
406
|
config change. The role SEMANTICS (what counts as an anomaly or gap, how findings become tickets)
|
|
407
407
|
are fixed like every other lifecycle behavior; only these thresholds and caps are tunable. Full
|
|
@@ -461,12 +461,12 @@ If a project's terminal state is the same regardless of env, set `done` to a str
|
|
|
461
461
|
|
|
462
462
|
### Env → base branch (forward: the build base and PR base)
|
|
463
463
|
|
|
464
|
-
`deploy.branches` is also read in the **forward** direction by the build flow (`lisa
|
|
464
|
+
`deploy.branches` is also read in the **forward** direction by the build flow (`lisa-implement`): the environment a work item targets determines the branch the work is built on and the branch the PR opens against.
|
|
465
465
|
|
|
466
466
|
1. **Resolve the work item's target environment** — its `## Target Backend Environment` field.
|
|
467
467
|
2. **If no environment is named**, use the **remote default branch** (`gh repo view --json defaultBranchRef`, or `origin/HEAD`) and record that default-branch assumption.
|
|
468
468
|
3. **If a reported environment exists**, map env → base branch via `deploy.branches` (e.g. `staging → staging`, `production → main`). A reported env absent from `deploy.branches`, or a mapped branch missing from the remote, must stop and report the exact missing environment-to-branch mapping; never guess and never silently fall back.
|
|
469
|
-
4. **Before any code is written**, `lisa
|
|
469
|
+
4. **Before any code is written**, `lisa-implement` fetches and **rebases the working branch onto `origin/<base>`, resolving conflicts**, so implementation builds on the latest target-environment code. **The PR then opens against that same base branch** (`target_branch=<base>` to `lisa-git-submit-pr`).
|
|
470
470
|
|
|
471
471
|
This is the exact inverse of the env-keyed `done` "Branch inference" above: `done` derives the env *from* the PR base branch (reverse); the build flow derives the base branch *from* the env (forward). Both use the one `deploy.branches` map, so the branch a PR targets and the `done` status it earns always agree.
|
|
472
472
|
|
|
@@ -627,8 +627,8 @@ reconciling any automation state.
|
|
|
627
627
|
1. **Resolve the automation queues from merged config**
|
|
628
628
|
- Resolve the PRD automation queue from merged `source`.
|
|
629
629
|
- Resolve the build automation queue from merged `tracker`.
|
|
630
|
-
- Resolve repair-intake from the same queue-detection contract `lisa
|
|
631
|
-
`lisa
|
|
630
|
+
- Resolve repair-intake from the same queue-detection contract `lisa-intake` /
|
|
631
|
+
`lisa-repair-intake` already use; doctor should not invent a second queue schema.
|
|
632
632
|
- If an automation's queue cannot be resolved because `source`, `tracker`, or the selected
|
|
633
633
|
vendor's required keys are still missing after merge, that automation is a doctor `FAIL`.
|
|
634
634
|
Unattended runs would be ambiguous before the scheduler is even involved.
|
|
@@ -656,16 +656,16 @@ The shim → vendor mapping is fixed:
|
|
|
656
656
|
|
|
657
657
|
| Shim | jira tracker | github tracker | linear tracker |
|
|
658
658
|
|------|--------------|----------------|----------------|
|
|
659
|
-
| `lisa
|
|
660
|
-
| `lisa
|
|
661
|
-
| `lisa
|
|
662
|
-
| `lisa
|
|
663
|
-
| `lisa
|
|
664
|
-
| `lisa
|
|
665
|
-
| `lisa
|
|
666
|
-
| `lisa
|
|
667
|
-
| `lisa
|
|
668
|
-
| `lisa
|
|
659
|
+
| `lisa-tracker-write` | `lisa-jira-write-ticket` | `lisa-github-write-issue` | `lisa-linear-write-issue` |
|
|
660
|
+
| `lisa-tracker-validate` | `lisa-jira-validate-ticket` | `lisa-github-validate-issue` | `lisa-linear-validate-issue` |
|
|
661
|
+
| `lisa-tracker-verify` | `lisa-jira-verify` | `lisa-github-verify` | `lisa-linear-verify` |
|
|
662
|
+
| `lisa-tracker-read` | `lisa-jira-read-ticket` | `lisa-github-read-issue` | `lisa-linear-read-issue` |
|
|
663
|
+
| `lisa-tracker-evidence` | `lisa-jira-evidence` | `lisa-github-evidence` | `lisa-linear-evidence` |
|
|
664
|
+
| `lisa-tracker-sync` | `lisa-jira-sync` | `lisa-github-sync` | `lisa-linear-sync` |
|
|
665
|
+
| `lisa-tracker-add-journey` | `lisa-jira-add-journey` | `lisa-github-add-journey` | `lisa-linear-add-journey` |
|
|
666
|
+
| `lisa-tracker-journey` | `lisa-jira-journey` | `lisa-github-journey` | `lisa-linear-journey` |
|
|
667
|
+
| `lisa-tracker-create` | `lisa-jira-create` | `lisa-github-create` | `lisa-linear-create` |
|
|
668
|
+
| `lisa-tracker-build-intake` | `lisa-jira-build-intake` | `lisa-github-build-intake` | `lisa-linear-build-intake` |
|
|
669
669
|
|
|
670
670
|
The `tracker-source-artifacts` skill (formerly `tracker-source-artifacts`) is read-only and vendor-neutral — it has no shim and is invoked directly by every `*-to-tracker` skill and every destination write skill (`jira-write-ticket`, `github-write-issue`, `linear-write-issue`).
|
|
671
671
|
|
|
@@ -19,13 +19,13 @@ available.
|
|
|
19
19
|
|
|
20
20
|
| Vendor | Access skill | Headless env var | REST/token substrate |
|
|
21
21
|
|---|---|---|---|
|
|
22
|
-
| Atlassian | `lisa
|
|
23
|
-
| Notion | `lisa
|
|
24
|
-
| Linear | `lisa
|
|
25
|
-
| Jam | `lisa
|
|
26
|
-
| SonarCloud | `lisa
|
|
27
|
-
| Sentry | `lisa
|
|
28
|
-
| PostHog | `lisa
|
|
22
|
+
| Atlassian | `lisa-atlassian-access` | `ATLASSIAN_API_TOKEN` | Atlassian Cloud REST |
|
|
23
|
+
| Notion | `lisa-notion-access` | `NOTION_API_TOKEN` | Notion REST |
|
|
24
|
+
| Linear | `lisa-linear-access` | `LINEAR_API_KEY` | Linear GraphQL |
|
|
25
|
+
| Jam | `lisa-jam-access` | `JAM_PAT` | Jam CLI |
|
|
26
|
+
| SonarCloud | `lisa-sonarcloud-access` | `SONAR_TOKEN` | SonarCloud Web API |
|
|
27
|
+
| Sentry | `lisa-sentry-access` | `SENTRY_AUTH_TOKEN` | Sentry REST API |
|
|
28
|
+
| PostHog | `lisa-posthog-access` | `POSTHOG_PERSONAL_API_KEY` | PostHog REST API |
|
|
29
29
|
| Google Play | `lisa-expo:play-store-access` | `GOOGLE_PLAY_SERVICE_ACCOUNT_JSON` or `GOOGLE_PLAY_SERVICE_ACCOUNT_KEY_BASE64` | Google Play Developer API |
|
|
30
30
|
|
|
31
31
|
## Current Coupling Matrix
|
|
@@ -23,7 +23,7 @@ This protocol runs **once per session**, on the first user message. After that,
|
|
|
23
23
|
|
|
24
24
|
## Orchestration Selection Protocol
|
|
25
25
|
|
|
26
|
-
Orchestration is owned by the **lifecycle skill** for the chosen flow, not by this rule. Each top-level lifecycle skill (`lisa
|
|
26
|
+
Orchestration is owned by the **lifecycle skill** for the chosen flow, not by this rule. Each top-level lifecycle skill (`lisa-research`, `lisa-plan`, `lisa-implement`, `lisa-verify`, `lisa-monitor`, `lisa-intake`) contains its own cascade-safe orchestration preamble — that's where the team is created (or skipped, if already inside one).
|
|
27
27
|
|
|
28
28
|
What this rule still enforces:
|
|
29
29
|
|
|
@@ -69,11 +69,11 @@ Sequence:
|
|
|
69
69
|
4. `architecture-specialist` -- assess technical feasibility, identify constraints, map existing system boundaries
|
|
70
70
|
5. Synthesize findings into a PRD containing: problem statement, user stories, acceptance criteria, technical constraints, open questions, and proposed scope
|
|
71
71
|
6. **Plan Phase Tooling** -- review all available skills and agents (project-defined, plugin-provided, and built-in) and determine which ones the Plan phase will need. For each recommended skill or agent, state why it is needed. If no skills or agents beyond the defaults are identified, explicitly justify why the standard set is sufficient. Include this as a "Recommended Tooling for Plan Phase" section in the PRD.
|
|
72
|
-
7. **Create the PRD in the configured source** -- invoke `lisa
|
|
73
|
-
8. **Record Research usage on the PRD artifact** -- invoke `lisa
|
|
72
|
+
7. **Create the PRD in the configured source** -- invoke `lisa-prd-source-write` with the synthesized PRD (`title`, `body`, `initial_role` resolved from the caller's `prd_ready` flag — `draft` by default, `ready` when `prd_ready=true`, plus any `dedupe_key`/`marker`/`source_ref` the caller passed). The PRD **lives in the source** (Notion page / Confluence page / GitHub issue / Linear project per `.lisa.config.json` `source`); there is no separate document artifact. A `source` must be configured — if it is not, stop and report it. `prd-source-write` dedupes by marker, so re-running against the same idea references the existing PRD instead of creating a duplicate.
|
|
73
|
+
8. **Record Research usage on the PRD artifact** -- invoke `lisa-usage-accounting` against the created PRD/source artifact so it gains a direct `research` usage entry in the canonical `## Lisa Usage` section at creation time. If the runtime cannot provide trustworthy usage, still write the row with `source: unavailable` and nullable token/cost fields; missing usage is never treated as zero or silently omitted.
|
|
74
74
|
9. `learner` -- capture discoveries for future sessions
|
|
75
75
|
|
|
76
|
-
Output: A PRD created in the configured source, carrying a "Recommended Tooling for Plan Phase" section, in the `draft` role by default (or `ready` when `prd_ready=true`, so `lisa
|
|
76
|
+
Output: A PRD created in the configured source, carrying a "Recommended Tooling for Plan Phase" section, in the `draft` role by default (or `ready` when `prd_ready=true`, so `lisa-intake` auto-claims it). If there is not enough context to produce a complete PRD, stop and report what is missing rather than creating an incomplete one. If no `source` is configured, stop and report it rather than emitting a loose document.
|
|
77
77
|
|
|
78
78
|
### Plan
|
|
79
79
|
|
|
@@ -98,9 +98,9 @@ Sequence:
|
|
|
98
98
|
- Dependencies
|
|
99
99
|
- Skills and agents required (from step 5)
|
|
100
100
|
7. Create work items in the tracker (JIRA, Linear, GitHub) with acceptance criteria, dependencies, and recommended skills/agents
|
|
101
|
-
8. **Record Plan usage on the PRD and created work items** -- route all direct usage writes through `lisa
|
|
102
|
-
9. **PRD back-link** -- update the source PRD with a `## Tickets` section listing every created work item (key, title, type, link), so the PRD becomes the canonical anchor for downstream flows (notably **Debrief**). Invoke `lisa
|
|
103
|
-
10. **Refresh the PRD usage rollup** -- re-invoke `lisa
|
|
101
|
+
8. **Record Plan usage on the PRD and created work items** -- route all direct usage writes through `lisa-usage-accounting`: attach a `plan` entry to the source PRD/spec artifact and to each created work item. If runtime usage is unavailable, still write an explicit `source: unavailable` row with nullable token/cost fields instead of omitting the entry.
|
|
102
|
+
9. **PRD back-link** -- update the source PRD with a `## Tickets` section listing every created work item (key, title, type, link), so the PRD becomes the canonical anchor for downstream flows (notably **Debrief**). Invoke `lisa-prd-backlink` with the PRD source and the created ticket list. The section is regenerated on each run, not appended, so re-planning never produces stale links.
|
|
103
|
+
10. **Refresh the PRD usage rollup** -- re-invoke `lisa-usage-accounting` on the source PRD after `lisa-prd-backlink` regenerates child refs so the PRD `## Lisa Usage` rollup reflects the created ticket set.
|
|
104
104
|
11. `learner` -- capture discoveries for future sessions
|
|
105
105
|
|
|
106
106
|
Output: Work items in a tracker with acceptance criteria and recommended skills/agents, ordered by dependency. The source PRD carries a `## Tickets` section linking back to every created item. If the specification cannot be decomposed without further clarification, stop and report what is missing.
|
|
@@ -127,7 +127,7 @@ Determine the work type and execute the matching variant:
|
|
|
127
127
|
6. Run quality gates: lint, typecheck, tests (these are prerequisites, NOT verification)
|
|
128
128
|
7. `verification-specialist` -- verify locally (run the software, observe behavior)
|
|
129
129
|
8. `verification-specialist` -- invoke `codify-verification` skill per passing verification (Playwright for UI, integration test for API/DB/auth, etc.); commit each test in the same PR
|
|
130
|
-
9. **Record Implement usage on the work artifact** -- invoke `lisa
|
|
130
|
+
9. **Record Implement usage on the work artifact** -- invoke `lisa-usage-accounting` against the originating work item or implementation artifact so it gains a direct `implement` usage entry in the canonical `## Lisa Usage` section. If the hierarchy / parent refs are already known, prefer `record_and_rollup` so ancestor totals refresh in the same write; otherwise record the direct entry and leave rollup for the next caller that has the child refs. If runtime usage is unavailable, still write `source: unavailable` with nullable token/cost fields instead of omitting the row.
|
|
131
131
|
10. **Review sub-flow**
|
|
132
132
|
11. `learner` -- capture discoveries
|
|
133
133
|
|
|
@@ -142,7 +142,7 @@ Determine the work type and execute the matching variant:
|
|
|
142
142
|
7. Run quality gates: lint, typecheck, tests (these are prerequisites, NOT verification)
|
|
143
143
|
8. `verification-specialist` -- verify locally (prove the bug is fixed)
|
|
144
144
|
9. `verification-specialist` -- invoke `codify-verification` skill to encode the fix as a regression test (mandatory for bug fixes — the test must fail against the pre-fix commit and pass against the fix); commit in the same PR
|
|
145
|
-
10. **Record Implement usage on the work artifact** -- invoke `lisa
|
|
145
|
+
10. **Record Implement usage on the work artifact** -- invoke `lisa-usage-accounting` against the originating work item or implementation artifact so it gains a direct `implement` usage entry in the canonical `## Lisa Usage` section. If the hierarchy / parent refs are already known, prefer `record_and_rollup` so ancestor totals refresh in the same write; otherwise record the direct entry and leave rollup for the next caller that has the child refs. If runtime usage is unavailable, still write `source: unavailable` with nullable token/cost fields instead of omitting the row.
|
|
146
146
|
11. **Review sub-flow**
|
|
147
147
|
12. `learner` -- capture discoveries
|
|
148
148
|
|
|
@@ -155,7 +155,7 @@ Determine the work type and execute the matching variant:
|
|
|
155
155
|
5. Run quality gates: lint, typecheck, tests (these are prerequisites, NOT verification)
|
|
156
156
|
6. `verification-specialist` -- measure again, prove improvement over baseline
|
|
157
157
|
7. `verification-specialist` -- invoke `codify-verification` skill (typically a benchmark asserting against baseline for performance work, or a regression test for behavioral refactors); commit in the same PR
|
|
158
|
-
8. **Record Implement usage on the work artifact** -- invoke `lisa
|
|
158
|
+
8. **Record Implement usage on the work artifact** -- invoke `lisa-usage-accounting` against the originating work item or implementation artifact so it gains a direct `implement` usage entry in the canonical `## Lisa Usage` section. If the hierarchy / parent refs are already known, prefer `record_and_rollup` so ancestor totals refresh in the same write; otherwise record the direct entry and leave rollup for the next caller that has the child refs. If runtime usage is unavailable, still write `source: unavailable` with nullable token/cost fields instead of omitting the row.
|
|
159
159
|
9. **Review sub-flow**
|
|
160
160
|
10. `learner` -- capture discoveries
|
|
161
161
|
|
|
@@ -196,8 +196,8 @@ Sequence:
|
|
|
196
196
|
- `verification-specialist` -- verify in target environment (same checks as local verification, but on remote)
|
|
197
197
|
- `ops-specialist` -- post-deploy health check, smoke test, monitor for errors in first minutes
|
|
198
198
|
- If remote verification fails -- fix, open new PR, return to step 3
|
|
199
|
-
7. **Record Verify usage on the evidence artifact** -- invoke `lisa
|
|
200
|
-
8. **Post evidence via the tracker surface** -- invoke `lisa
|
|
199
|
+
7. **Record Verify usage on the evidence artifact** -- invoke `lisa-usage-accounting` against the generated evidence artifact (comment body, PR evidence section, or markdown proof) so it gains a direct `verify` usage entry in the canonical `## Lisa Usage` section. If the originating work item or PRD parentage is known, prefer `record_and_rollup` so ancestor totals refresh in the same pass. If runtime usage is unavailable, still write `source: unavailable` with nullable token/cost fields instead of omitting the row.
|
|
200
|
+
8. **Post evidence via the tracker surface** -- invoke `lisa-tracker-evidence` after the usage write so the same canonical evidence artifact is uploaded / posted without hand-editing a second format.
|
|
201
201
|
|
|
202
202
|
Output: Merged PR, successful deploy, remote verification passing.
|
|
203
203
|
|
|
@@ -223,7 +223,7 @@ Sequence:
|
|
|
223
223
|
- **Tooling gap** — missing skill, wrong agent assignment, broken hook, missing automation
|
|
224
224
|
- **Convention drift** — an unwritten rule revealed by review comments that should be codified
|
|
225
225
|
4. **Produce the human-triage document** — a markdown file with one row per candidate learning showing: category, summary, evidence (links to the source ticket comment / PR comment / commit), recommended persistence destination, and a checkbox-style disposition field the human will mark (Accept / Reject / Defer). Surface step-1 anomalies (work items missing PRs, etc.) in a separate section. The document is exhaustive — it lists every candidate, even ones the synthesizer rates low confidence — because the human, not the agent, decides what is worth keeping.
|
|
226
|
-
5. **Record Debrief usage on the triage document** — invoke `lisa
|
|
226
|
+
5. **Record Debrief usage on the triage document** — invoke `lisa-usage-accounting` against the generated markdown artifact so the document carries its own direct `debrief` usage entry in the canonical `## Lisa Usage` section. If runtime usage is unavailable, write the entry with `source: unavailable` and nullable token/cost fields rather than skipping it.
|
|
227
227
|
6. **Stop and hand the document to the human.** Debrief does NOT persist accepted learnings itself. The human triages, marks dispositions, and runs the **`/lisa:debrief:apply`** command (skill: `debrief-apply`) to route the accepted items to their destinations.
|
|
228
228
|
|
|
229
229
|
Output: A triage-ready learnings document covering every work item and PR in the initiative, with structured evidence and disposition fields. Persistence is deferred to `debrief-apply`, which the human invokes after triage.
|
|
@@ -321,7 +321,7 @@ Sequence:
|
|
|
321
321
|
2. **Collect live signals** -- `ops-specialist` (Expo/Rails) or inline base probing (Sentry CLI/REST, CloudWatch, X-Ray, Playwright MCP) for health, logs, errors, performance. An observation is a fileable **anomaly** only when it clears the conservative thresholds in `observability-audit`.
|
|
322
322
|
3. **Audit completeness** -- score the repo against the `observability-audit` rubric for its profile; each in-scope MISSING dimension is a **gap** finding (`core` always; `recommended` only with `--all-gaps`).
|
|
323
323
|
4. **Report** -- health/anomaly summary + audit table. Always produced.
|
|
324
|
-
5. **File (standalone only; SKIP under `--report-only`/`--dry-run` and when invoked from Verify)** -- for each anomaly and gap, dedupe by fingerprint (sentinel + search-before-create incl. closed tickets), then file a single-repo build-ready leaf via `tracker-write` (`build_ready: true`) — a `Bug` for an anomaly, a `Task`/`Improvement` for a gap — stamped `repo:<current>`, capped at `max_candidates` (default 20, `core`/high-severity first; list any dropped). Default files; `--dry-run` previews without filing. `lisa
|
|
324
|
+
5. **File (standalone only; SKIP under `--report-only`/`--dry-run` and when invoked from Verify)** -- for each anomaly and gap, dedupe by fingerprint (sentinel + search-before-create incl. closed tickets), then file a single-repo build-ready leaf via `tracker-write` (`build_ready: true`) — a `Bug` for an anomaly, a `Task`/`Improvement` for a gap — stamped `repo:<current>`, capped at `max_candidates` (default 20, `core`/high-severity first; list any dropped). Default files; `--dry-run` previews without filing. `lisa-verify` invokes monitor as `lisa-monitor <env> --report-only`, so the post-deploy check never files. Escalate anything not made into a ticket.
|
|
325
325
|
|
|
326
326
|
The `observability-audit` rule owns the profile detection, rubric, anomaly thresholds, ticket templates (gate-passing), fingerprint/idempotency contract, the cap, and the Verify report-only guard. Monitor **files only** — the `intake` / `tracker-build-intake` cron implements what it files.
|
|
327
327
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Observability Audit (load-bearing)
|
|
2
2
|
|
|
3
|
-
This rule is the single source of truth for the **audit + file** arm of the `lisa
|
|
3
|
+
This rule is the single source of truth for the **audit + file** arm of the `lisa-monitor` skill. The `monitor` skill collects live signals (errors, logs, performance, health) via the stack `ops-specialist` exactly as before; this rule adds two things on top, both **repo-scoped**:
|
|
4
4
|
|
|
5
5
|
1. **Audit** — score the repo against an observability-completeness rubric for its detected type, so a frontend repo is never dinged for missing backend tracing.
|
|
6
6
|
2. **File** — turn both *anomalies* (a real bad live signal) and *gaps* (an in-scope observability dimension that isn't wired) into **build-ready leaf tickets** so the existing `intake` / `tracker-build-intake` cron picks them up and fixes them. `monitor` files only; it never fixes.
|
|
@@ -66,7 +66,7 @@ Everything below the bar is reported (so the human sees it) but **not** ticketed
|
|
|
66
66
|
|
|
67
67
|
## Two finding types → build-ready leaf tickets
|
|
68
68
|
|
|
69
|
-
Both finding types are filed through the vendor-neutral `lisa
|
|
69
|
+
Both finding types are filed through the vendor-neutral `lisa-tracker-write` shim with `build_ready: true` (never a vendor write skill directly — that is what keeps the destination switchable). Both are **leaf** work units (`Bug` for anomalies, `Task`/`Improvement` for gaps) — never an Epic or container (gate S15). Each must pass the `tracker-validate` gates S1–S15, so each ticket is a real authored artifact, not a template dump.
|
|
70
70
|
|
|
71
71
|
### Required fields (so the gates pass)
|
|
72
72
|
|
|
@@ -93,7 +93,7 @@ A manual re-run next week must not duplicate last week's tickets. Mirror the `re
|
|
|
93
93
|
1. **Stable fingerprint per finding.**
|
|
94
94
|
- Anomaly: `sha1("<source>:<stable-signature>:<CURRENT_REPO>")` (12 hex chars). `stable-signature` is the Sentry issue short-id (or culprit), the CloudWatch alarm name, or `errorType@location` — something that survives between runs, **never** the human title or occurrence count.
|
|
95
95
|
- Gap: the literal `gap:<dimension>:<CURRENT_REPO>` (a dimension is missing-or-not; no hash needed).
|
|
96
|
-
2. **Sentinel in the body.** Embed `<!-- lisa
|
|
96
|
+
2. **Sentinel in the body.** Embed `<!-- lisa:monitor-finding: <fingerprint> -->` in every filed ticket.
|
|
97
97
|
3. **Search before create** (this IS gate S13). Before filing, search the tracker for the fingerprint string. The search **MUST include closed/resolved tickets** (`gh issue list --search <fp> --state all` for GitHub; JQL with no status filter for JIRA; all states for Linear) — otherwise a just-closed match is invisible and the backoff below can't fire. If an **open** ticket carries the fingerprint → skip (optionally link). If a ticket carrying it was closed **within the recently-resolved backoff window** (`monitor.backoffHours`, default **24h** — matching the 24h Sentry event window; this is **not** the 2h `intake.repair.staleAfterHours`) → skip, to avoid re-filing a just-fixed regression before its signal has drained. Only file when no live or recently-resolved match exists.
|
|
98
98
|
|
|
99
99
|
## The cap
|
|
@@ -105,7 +105,7 @@ File **at most `max_candidates` tickets per run** (default **20**; config `monit
|
|
|
105
105
|
- **Default (standalone `monitor <env>`): files.** A plain manual run audits, reports, dedupes, and files up to the cap.
|
|
106
106
|
- **`--dry-run`:** does everything except call `tracker-write` — prints exactly which tickets *would* be filed (title, type, fingerprint, dedup verdict) so the human can preview.
|
|
107
107
|
- **`--report-only`:** produces the health/audit summary only — no filing and no would-file analysis. This is the mode Verify uses (below).
|
|
108
|
-
- **Invoked as `lisa
|
|
108
|
+
- **Invoked as `lisa-verify`'s post-deploy step: never files — enforced mechanically, not inferred.** `lisa-verify` step 6 invokes monitor as `lisa-monitor <env> --report-only`; monitor must never file when `--report-only` (or `--dry-run`) is set. This is load-bearing **today** — Verify already routes its remote verification through the `monitor` skill, so without the passed flag the new file-by-default behavior would create tickets during every verify run. As a belt-and-suspenders default, if monitor is invoked via the Skill tool from within a Verify flow and no filing flag was passed, treat it as `--report-only` rather than filing.
|
|
109
109
|
|
|
110
110
|
## Output
|
|
111
111
|
|
|
@@ -143,11 +143,11 @@ Apply it as follows:
|
|
|
143
143
|
|
|
144
144
|
Skills that link generated work to a PRD or roll a PRD up cite this rule by slug (the `prd-lifecycle-rollup` rule) instead of restating it:
|
|
145
145
|
|
|
146
|
-
- **PRD backlink / native linking** (`prd-backlink`) — record generated top-level work as native PRD children where supported; always write the documented generated-work fallback; dedupe by child-ref. *(LPC-1.1 #580, LPC-1.2 #582)*
|
|
147
|
-
- **PRD coverage** (`prd-ticket-coverage`) — read the generated top-level child set deterministically from the recorded relationship, not from free-form comments.
|
|
148
|
-
- **GitHub PRD shipped rollup** (`github-prd-intake`) — detect terminal/incomplete/blocked child sets, transition to `prd-shipped`, and leave the PRD open for `/lisa:verify-prd`. *(LPC-1.3 #583)*
|
|
149
|
-
- **Linear / Confluence / Notion PRD shipped rollup** (`linear-prd-intake`, `confluence-prd-intake`, `notion-prd-intake`) — mirror the GitHub shipped rollup with each vendor's terminal predicate and keep the PRD active for verification. *(LPC-1.3 #584)*
|
|
150
|
-
- **Repair close-out** (`repair-intake`) — re-run the same generated-top-level-work terminal
|
|
146
|
+
- **PRD backlink / native linking** (`lisa-prd-backlink`) — record generated top-level work as native PRD children where supported; always write the documented generated-work fallback; dedupe by child-ref. *(LPC-1.1 #580, LPC-1.2 #582)*
|
|
147
|
+
- **PRD coverage** (`lisa-prd-ticket-coverage`) — read the generated top-level child set deterministically from the recorded relationship, not from free-form comments.
|
|
148
|
+
- **GitHub PRD shipped rollup** (`lisa-github-prd-intake`) — detect terminal/incomplete/blocked child sets, transition to `prd-shipped`, and leave the PRD open for `/lisa:verify-prd`. *(LPC-1.3 #583)*
|
|
149
|
+
- **Linear / Confluence / Notion PRD shipped rollup** (`lisa-linear-prd-intake`, `lisa-confluence-prd-intake`, `lisa-notion-prd-intake`) — mirror the GitHub shipped rollup with each vendor's terminal predicate and keep the PRD active for verification. *(LPC-1.3 #584)*
|
|
150
|
+
- **Repair close-out** (`lisa-repair-intake`) — re-run the same generated-top-level-work terminal
|
|
151
151
|
predicate to close out PRDs that were left open after all associated child work became terminal,
|
|
152
152
|
without setting the product-owned `verified` role.
|
|
153
153
|
- **Idempotency** (all of the above) — dedupe-by-ref linking and no-op already-shipped rollup. *(LPC-1.4 #585)*
|
|
@@ -55,9 +55,9 @@ This pre-applies **only** the unambiguous *"labeled for another repo → skip"*
|
|
|
55
55
|
|
|
56
56
|
Apply it **only where the query layer can express `OR labels IS EMPTY` without dropping unlabeled candidates** — otherwise the pre-filter would hide the very tickets the determine + stamp arm exists to handle:
|
|
57
57
|
|
|
58
|
-
- **JIRA (multi-repo project):** JQL expresses it directly — `lisa
|
|
58
|
+
- **JIRA (multi-repo project):** JQL expresses it directly — `lisa-jira-build-intake` applies it in Phase 1. This is the case the optimization is for.
|
|
59
59
|
- **GitHub:** issues are inherently single-repo, so the scanner is already repo-scoped — no pre-filter needed.
|
|
60
|
-
- **Linear (multi-repo team):** the `list_issues` label filter is an AND-of-labels and cannot express "current-repo **or** unlabeled" in one query, so `lisa
|
|
60
|
+
- **Linear (multi-repo team):** the `list_issues` label filter is an AND-of-labels and cannot express "current-repo **or** unlabeled" in one query, so `lisa-linear-build-intake` keeps the broad `$READY` query and relies on the per-candidate 3a.0 gate — a narrowing label filter there would strand unlabeled Issues.
|
|
61
61
|
|
|
62
62
|
**Cost.** Only **unlabeled** candidates need content determination; once stamped, wrong-repo candidates are skipped by label alone — and with the query-time pre-filter, sibling-repo tickets are not even fetched. Prefer candidates already labeled `repo:<current>` first (cheap claim), falling through to unlabeled candidates (determine + stamp) only when no pre-labeled current-repo leaf is ready.
|
|
63
63
|
|
|
@@ -69,4 +69,4 @@ The procedure is vendor-neutral; the create + link + edit mechanics differ:
|
|
|
69
69
|
|
|
70
70
|
- **JIRA** — create via `mcp__atlassian__createJiraIssue` (clone fields, set the same epic parent); link via `mcp__atlassian__createIssueLink` with `Blocks` / `is blocked by` (resolve names via `mcp__atlassian__getIssueLinkTypes`); narrow the original via `mcp__atlassian__editJiraIssue`; comment via `mcp__atlassian__addCommentToJiraIssue`. See `jira-write-ticket` Phase 6.
|
|
71
71
|
- **GitHub** — create the sibling issue with the same labels and parent sub-issue; encode the dependency in the body (`Blocked by #<n>` / `Blocks #<n>`) and via the sub-issue/parent graph where used; edit the original's body to narrow scope. See `github-write-issue` Phase 6.
|
|
72
|
-
- **Linear** — create via `lisa
|
|
72
|
+
- **Linear** — create via `lisa-linear-access operation: save-issue` (clone fields, set the same `projectId`); add a blocking relation via the `relations` field or a paired relation call; edit the original to narrow scope. See `linear-write-issue` Phase 6.
|
|
@@ -20,7 +20,7 @@ Apply the stopgap in this project so you can keep working. Do **not** stall wait
|
|
|
20
20
|
|
|
21
21
|
### 2. File an upstream issue in the Lisa repository
|
|
22
22
|
|
|
23
|
-
Use the `github-write-issue` skill (`lisa
|
|
23
|
+
Use the `github-write-issue` skill (`lisa-github-write-issue`) to create a GitHub Issue **in Lisa's source repository `CodySwannGT/lisa`** — not in this project's own repo. The skill uses the `gh` CLI; the target repo must be `CodySwannGT/lisa` (e.g. `gh issue create --repo CodySwannGT/lisa ...`), because the agent's default repo is this host project.
|
|
24
24
|
|
|
25
25
|
The issue should capture, following the skill's three-audience / acceptance-criteria conventions:
|
|
26
26
|
|
|
@@ -101,7 +101,7 @@ _Managed by Lisa. Regenerated on each usage update; do not edit by hand._
|
|
|
101
101
|
|
|
102
102
|
| Flow | Model | Source | Tokens | Cost |
|
|
103
103
|
|---|---|---|---:|---:|
|
|
104
|
-
| ...human-readable rows ending with `lisa
|
|
104
|
+
| ...human-readable rows ending with `lisa-usage-entry` tokens... |
|
|
105
105
|
|
|
106
106
|
### Rollup
|
|
107
107
|
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-acceptance-criteria
|
|
3
|
+
description: "Acceptance criteria definition. Gherkin user flows (Given/When/Then), error states, UX concerns, and empirical verification from the user perspective."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Acceptance Criteria
|
|
7
|
+
|
|
8
|
+
Evaluate changes from a non-technical user's perspective. Define acceptance criteria and verify behavior matches requirements.
|
|
9
|
+
|
|
10
|
+
## Analysis Process
|
|
11
|
+
|
|
12
|
+
1. **Understand the user goal** -- what problem does this solve for the end user?
|
|
13
|
+
2. **Define user flows** -- step-by-step paths through the feature, including happy path and error paths
|
|
14
|
+
3. **Write acceptance criteria** -- testable conditions from the user's perspective
|
|
15
|
+
4. **Identify UX concerns** -- confusing interactions, missing feedback, accessibility issues
|
|
16
|
+
5. **Map error states** -- what happens when things go wrong, and what the user sees
|
|
17
|
+
6. **Run the feature** -- execute scripts, call APIs, or trigger the described behavior to verify empirically
|
|
18
|
+
7. **Compare output to requirements** -- does actual behavior match expectations?
|
|
19
|
+
|
|
20
|
+
## Output Format
|
|
21
|
+
|
|
22
|
+
Structure findings as:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
## Product Analysis
|
|
26
|
+
|
|
27
|
+
### User Goal
|
|
28
|
+
[1-2 sentence summary of what the user wants to accomplish]
|
|
29
|
+
|
|
30
|
+
### User Flows (Gherkin)
|
|
31
|
+
|
|
32
|
+
#### Happy Path
|
|
33
|
+
Given [precondition]
|
|
34
|
+
When [action]
|
|
35
|
+
Then [expected outcome]
|
|
36
|
+
|
|
37
|
+
#### Error Path: [description]
|
|
38
|
+
Given [precondition]
|
|
39
|
+
When [action that fails]
|
|
40
|
+
Then [error handling behavior]
|
|
41
|
+
|
|
42
|
+
### Acceptance Criteria
|
|
43
|
+
- [ ] [criterion from user perspective]
|
|
44
|
+
|
|
45
|
+
### UX Concerns
|
|
46
|
+
- [concern] -- impact on user experience
|
|
47
|
+
|
|
48
|
+
### Error Handling Requirements
|
|
49
|
+
| Error Condition | User Sees | User Can Do |
|
|
50
|
+
|----------------|-----------|-------------|
|
|
51
|
+
|
|
52
|
+
### Verification Results
|
|
53
|
+
For each acceptance criterion:
|
|
54
|
+
- **Criterion:** [what was expected]
|
|
55
|
+
- **Result:** Pass / Fail / Not Yet Testable
|
|
56
|
+
- **Evidence:** [what was observed]
|
|
57
|
+
|
|
58
|
+
### Out of Scope
|
|
59
|
+
- [thing that might be expected but is not part of this work]
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
## Rules
|
|
63
|
+
|
|
64
|
+
- Write acceptance criteria from the user's perspective, not the developer's
|
|
65
|
+
- Every user flow must include at least one error path
|
|
66
|
+
- Use Gherkin format (Given/When/Then) for user flows to enable direct translation into test cases
|
|
67
|
+
- When verifying, always run the feature -- never review by only reading code
|
|
68
|
+
- If you cannot run the feature (missing dependencies, services unavailable), report as a blocker -- do not guess
|
|
69
|
+
- If the changes are purely internal (refactoring, config, tooling), report "No user-facing impact" and explain why
|
|
70
|
+
- Do not propose UX changes beyond what was described -- flag scope concerns instead
|
|
71
|
+
- Assume the reviewer has no technical background
|
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-agent-design-best-practices
|
|
3
|
+
description: Best practices for designing Claude Code agent files (.claude/agents/*.md). This skill should be used when writing or reviewing agent markdown files to ensure proper design with focused domains, correct tool access, reusable definitions, and separation of capabilities from lifecycle. Combines Anthropic's official guidance with battle-tested patterns from agent team usage.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Agent Design Best Practices
|
|
7
|
+
|
|
8
|
+
## Overview
|
|
9
|
+
|
|
10
|
+
This skill defines best practices for designing Claude Code agent files (`.claude/agents/*.md`). Agent files define reusable roles that can be spawned as subagents or teammates. The core principle is that **agent files define capabilities, not lifecycle** -- the team lead's spawn prompt controls when and how the agent runs.
|
|
11
|
+
|
|
12
|
+
## Principles
|
|
13
|
+
|
|
14
|
+
### 1. Define Capabilities, Not Lifecycle
|
|
15
|
+
|
|
16
|
+
Agent files describe *what* an agent can do. The spawn prompt from the team lead controls *when* it runs and *what to focus on*.
|
|
17
|
+
|
|
18
|
+
```markdown
|
|
19
|
+
<!-- Wrong: Hardcodes workflow phase and interaction pattern -->
|
|
20
|
+
# Security Planner Agent
|
|
21
|
+
|
|
22
|
+
You are a security specialist in a plan-create Agent Team.
|
|
23
|
+
Given a Research Brief from the team lead, identify security
|
|
24
|
+
considerations for the planned changes.
|
|
25
|
+
|
|
26
|
+
## Output Format
|
|
27
|
+
|
|
28
|
+
Send your sub-plan to the team lead via `SendMessage` with this structure:
|
|
29
|
+
...
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
```markdown
|
|
33
|
+
<!-- Correct: Defines domain expertise, team lead controls usage -->
|
|
34
|
+
# Security Specialist Agent
|
|
35
|
+
|
|
36
|
+
You are a security specialist who identifies vulnerabilities,
|
|
37
|
+
evaluates threats, and recommends mitigations for code changes.
|
|
38
|
+
|
|
39
|
+
## Analysis Process
|
|
40
|
+
1. Read affected files
|
|
41
|
+
2. STRIDE analysis
|
|
42
|
+
3. Check input validation
|
|
43
|
+
...
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
The wrong version is coupled to one workflow ("plan-create Agent Team", "Given a Research Brief", "Send via SendMessage"). The correct version works in any context -- planning, review, ad-hoc analysis -- because the team lead's spawn prompt provides the specific instructions.
|
|
47
|
+
|
|
48
|
+
### 2. One Agent Per Domain, Not Per Phase
|
|
49
|
+
|
|
50
|
+
Prefer a single agent that covers a domain over multiple agents split by workflow phase. The team lead specializes the agent per phase via the spawn prompt.
|
|
51
|
+
|
|
52
|
+
| Wrong | Right |
|
|
53
|
+
|-------|-------|
|
|
54
|
+
| `security-planner` + `security-reviewer` | `security-specialist` |
|
|
55
|
+
| `test-strategist` + `test-coverage-agent` | `test-specialist` |
|
|
56
|
+
| `architecture-planner` + `architecture-reviewer` | `architecture-specialist` |
|
|
57
|
+
|
|
58
|
+
The same agent type can be spawned multiple times with different prompts for different phases. A `security-specialist` spawned during planning gets "evaluate this plan for security risks" while the same type spawned during review gets "review these code changes for vulnerabilities."
|
|
59
|
+
|
|
60
|
+
### 3. Design Focused Domains
|
|
61
|
+
|
|
62
|
+
Each agent should excel at one specific domain. The domain should be broad enough to avoid workflow coupling but narrow enough to provide real expertise.
|
|
63
|
+
|
|
64
|
+
```yaml
|
|
65
|
+
# Too narrow (coupled to one workflow step)
|
|
66
|
+
description: Performs STRIDE analysis on Research Briefs during plan-create Phase 2
|
|
67
|
+
|
|
68
|
+
# Too broad (no clear expertise)
|
|
69
|
+
description: General-purpose agent that can do anything
|
|
70
|
+
|
|
71
|
+
# Just right (focused domain, reusable across workflows)
|
|
72
|
+
description: Security specialist. Performs threat modeling (STRIDE), reviews code for OWASP Top 10 vulnerabilities, checks auth/validation/secrets handling.
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
### 4. Write Detailed Descriptions
|
|
76
|
+
|
|
77
|
+
Claude uses the `description` field in YAML frontmatter to decide when to delegate tasks. Be specific about what the agent does and when it adds value.
|
|
78
|
+
|
|
79
|
+
```yaml
|
|
80
|
+
# Bad: Vague, Claude can't decide when to use it
|
|
81
|
+
description: Reviews code
|
|
82
|
+
|
|
83
|
+
# Good: Specific domain, clear trigger conditions
|
|
84
|
+
description: Security specialist. Performs threat modeling (STRIDE), reviews code for OWASP Top 10 vulnerabilities, checks auth/validation/secrets handling, and recommends mitigations.
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
### 5. Limit Tool Access
|
|
88
|
+
|
|
89
|
+
Grant only the tools necessary for the agent's domain. This enforces focus and prevents agents from exceeding their intended scope.
|
|
90
|
+
|
|
91
|
+
| Agent Type | Appropriate Tools | Rationale |
|
|
92
|
+
|-----------|-------------------|-----------|
|
|
93
|
+
| Researcher / Reviewer | `Read, Grep, Glob, Bash` | Read-only analysis, no file modifications |
|
|
94
|
+
| Implementer | `Read, Write, Edit, Bash, Grep, Glob` | Needs to modify code |
|
|
95
|
+
| Planner | `Read, Grep, Glob` | Research only, no execution |
|
|
96
|
+
|
|
97
|
+
Read-only agents cannot implement code. Do not assign implementation tasks to agents without `Write` and `Edit` tools.
|
|
98
|
+
|
|
99
|
+
### 6. No Hardcoded Interaction Patterns
|
|
100
|
+
|
|
101
|
+
Do not prescribe how the agent communicates or what input format it expects. The team lead's spawn prompt handles interaction patterns.
|
|
102
|
+
|
|
103
|
+
```markdown
|
|
104
|
+
<!-- Wrong: Hardcodes communication protocol -->
|
|
105
|
+
## Input
|
|
106
|
+
You receive a **Research Brief** from the team lead containing...
|
|
107
|
+
|
|
108
|
+
## Output Format
|
|
109
|
+
Send your sub-plan to the team lead via `SendMessage` with this structure:
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
```markdown
|
|
113
|
+
<!-- Correct: Defines output structure without prescribing delivery mechanism -->
|
|
114
|
+
## Output Format
|
|
115
|
+
Structure your findings as:
|
|
116
|
+
|
|
117
|
+
### Threat Model (STRIDE)
|
|
118
|
+
| Threat | Applies? | Description | Mitigation |
|
|
119
|
+
...
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
The output format itself is fine to define -- it provides structure. But how the agent receives input and delivers output should be left to the team lead.
|
|
123
|
+
|
|
124
|
+
### 7. Context Window Isolation
|
|
125
|
+
|
|
126
|
+
Each teammate has its own context window. Teammates do not share context and cannot see what other teammates have done. Account for this in agent design:
|
|
127
|
+
|
|
128
|
+
- Do not assume the agent has seen previous analysis from other agents
|
|
129
|
+
- Include enough domain knowledge in the agent file for independent operation
|
|
130
|
+
- The team lead bridges context between agents via spawn prompts and messages
|
|
131
|
+
|
|
132
|
+
### 8. File Ownership in Teams
|
|
133
|
+
|
|
134
|
+
When agents work in teams, each teammate should own distinct files or directories. Two teammates editing the same file leads to conflicts and lost work.
|
|
135
|
+
|
|
136
|
+
Design agent domains so their file ownership naturally separates:
|
|
137
|
+
|
|
138
|
+
| Agent | Owns |
|
|
139
|
+
|-------|------|
|
|
140
|
+
| `implementer` | Source files (`src/`) |
|
|
141
|
+
| `test-specialist` | Test files (`tests/`) |
|
|
142
|
+
| `quality-specialist` | No files (read-only) |
|
|
143
|
+
|
|
144
|
+
## Agent File Structure
|
|
145
|
+
|
|
146
|
+
### Required Frontmatter
|
|
147
|
+
|
|
148
|
+
```yaml
|
|
149
|
+
---
|
|
150
|
+
name: agent-name # lowercase with hyphens
|
|
151
|
+
description: When and why to use this agent. Be specific.
|
|
152
|
+
tools: Read, Grep, Glob # comma-separated, minimal set
|
|
153
|
+
---
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
### Optional Frontmatter
|
|
157
|
+
|
|
158
|
+
```yaml
|
|
159
|
+
model: sonnet # sonnet, opus, haiku, or inherit (default)
|
|
160
|
+
permissionMode: default # default, acceptEdits, plan, bypassPermissions, etc.
|
|
161
|
+
maxTurns: 50 # limit agentic turns
|
|
162
|
+
skills: # skills to preload
|
|
163
|
+
- skill-name
|
|
164
|
+
memory: user # persistent memory: user, project, or local
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
### Body Structure
|
|
168
|
+
|
|
169
|
+
The markdown body becomes the agent's system prompt. Structure it as:
|
|
170
|
+
|
|
171
|
+
1. **Role statement** -- one sentence describing what the agent is
|
|
172
|
+
2. **Analysis/workflow process** -- numbered steps for the agent's approach
|
|
173
|
+
3. **Output format** -- structure for findings (without prescribing delivery mechanism)
|
|
174
|
+
4. **Rules/constraints** -- guardrails for the agent's behavior
|
|
175
|
+
|
|
176
|
+
## Anti-Patterns
|
|
177
|
+
|
|
178
|
+
### Don't Create Phase-Specific Agents
|
|
179
|
+
|
|
180
|
+
```markdown
|
|
181
|
+
<!-- Wrong: Two agents for the same domain, split by phase -->
|
|
182
|
+
# Pre-Implementation Security Planner
|
|
183
|
+
...
|
|
184
|
+
# Post-Implementation Security Reviewer
|
|
185
|
+
...
|
|
186
|
+
|
|
187
|
+
<!-- Correct: One agent, team lead controls timing -->
|
|
188
|
+
# Security Specialist
|
|
189
|
+
...
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
### Don't Hardcode Workflow Dependencies
|
|
193
|
+
|
|
194
|
+
```markdown
|
|
195
|
+
<!-- Wrong: Agent assumes specific workflow context -->
|
|
196
|
+
You are part of the plan-create Phase 2 team.
|
|
197
|
+
Wait for the Research Brief from Phase 1.
|
|
198
|
+
After your analysis, the Consistency Checker will validate your output.
|
|
199
|
+
|
|
200
|
+
<!-- Correct: Agent is self-contained -->
|
|
201
|
+
You are a security specialist who identifies vulnerabilities
|
|
202
|
+
and recommends mitigations for code changes.
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Don't Over-Specify the Model
|
|
206
|
+
|
|
207
|
+
Only set `model` when there's a clear reason. Most agents work well with `inherit` (the default), which uses the same model as the parent session. Use `haiku` for fast, simple tasks (exploration, search). Use `sonnet` or `opus` only when the domain requires stronger reasoning.
|
|
208
|
+
|
|
209
|
+
## Verification Checklist
|
|
210
|
+
|
|
211
|
+
Before committing an agent file, verify:
|
|
212
|
+
|
|
213
|
+
1. **Description is specific** -- Claude can determine when to delegate from the description alone
|
|
214
|
+
2. **Tools are minimal** -- only the tools the agent actually needs
|
|
215
|
+
3. **No workflow coupling** -- no references to specific team structures, phases, or input formats
|
|
216
|
+
4. **No hardcoded communication** -- no "send via SendMessage" or "given a Research Brief"
|
|
217
|
+
5. **Domain is reusable** -- the agent works in planning, review, and ad-hoc contexts
|
|
218
|
+
6. **Role statement is clear** -- first line of body explains what the agent is
|
|
219
|
+
7. **Output format is defined** -- structured output without prescribing delivery
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
display_name: "Agent Design Best Practices"
|
|
2
|
+
short_description: "Best practices for designing Claude Code agent files (.claude/agents/*.md)"
|
|
3
|
+
default_prompt:
|
|
4
|
+
- "Use $lisa-agent-design-best-practices: Best practices for designing Claude Code agent files (.claude/agents/*.md)."
|