@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
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-implement
|
|
3
|
+
description: This skill should be used for any non-trivial request — features, bugs, stories, epics, spikes, or multi-step tasks. It accepts a ticket URL (Jira, Linear, GitHub), a file path containing a spec, or a plain-text prompt. It assembles an agent team, breaks the work into structured tasks, and manages the full lifecycle from research through implementation, code review, deploy, and empirical verification.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Implement: $ARGUMENTS
|
|
7
|
+
|
|
8
|
+
## Orchestration: agent team
|
|
9
|
+
|
|
10
|
+
Implement is a **team-first** flow. Bug, Build, Improve, and Investigate-Only all compose multiple specialists (Reproduce → debug → fix → review → verify). Single-agent mode is not permitted based on task complexity — the only exception is when no team creation or subagent delegation tool is available in the current runtime (see no-team fallback in the paragraph below).
|
|
11
|
+
|
|
12
|
+
If you are NOT already operating inside an agent team (no prior successful team-creation or subagent-delegation tool call in this session, not spawned into a team context), the very first thing you do is establish team orchestration.
|
|
13
|
+
|
|
14
|
+
Use the team tool for the current runtime:
|
|
15
|
+
|
|
16
|
+
- Claude (Claude Code >= 2.1.178, implicit-team model): there is no `TeamCreate` tool — the team forms automatically the moment you spawn your first teammate with the `Agent` tool. That first `Agent` spawn MUST be the bounded **input-resolver** described under "Resolve the input" below — never a builder/implementer that does the whole task inline. Spawning one fat worker satisfies the team-first gate but collapses the flow into the 1-agent ad-hoc fix this skill forbids, and it skips the Roster Decision, which MUST be recorded before any lifecycle, research, implementation, review, or verification specialist is spawned. (On older Claude Code that still exposes `TeamCreate`, that explicit path also works: load it via `ToolSearch` with `query: "select:TeamCreate"`, create the team, then spawn the input-resolver.)
|
|
17
|
+
- Codex: do not call `TeamCreate`; Codex does not expose that Claude tool. Use `tool_search` with a query like `multi-agent tools` to load `multi_agent_v1`, then use `multi_agent_v1.spawn_agent` for teammate delegation. Treat the first successful `spawn_agent` call as establishing team orchestration.
|
|
18
|
+
- Other runtimes: use the current runtime's tool-discovery mechanism to discover and call the appropriate multi-agent/team tool.
|
|
19
|
+
|
|
20
|
+
If no team creation or subagent delegation tool is available, explicitly state that team orchestration is unavailable in this runtime, continue as the lead agent, and preserve the workflow's review, verification, and task-tracking obligations locally.
|
|
21
|
+
|
|
22
|
+
Your only permitted first move is establishing orchestration by spawning the bounded **input-resolver** teammate (Claude: `Agent`; Codex: `multi_agent_v1.spawn_agent`), or declaring the no-team fallback. Apart from that single spawn, do NOT call any of: a second `Agent`/`spawn_agent` for any worker, `TaskCreate`, `Skill` (including `lisa-tracker-read`, `lisa-jira-read-ticket`, `lisa-github-read-issue`), MCP tools (Atlassian / Linear / GitHub / Notion), `Read`, `Write`, `Edit`, `Bash`, `Grep`, `Glob` — until the input-resolver has returned and the Roster Decision has been recorded. Reading the ticket, exploring the code, fetching context — every one of those is a task for the team, not for the lead session before orchestration exists. Doing them inline, or spawning a single worker that does the whole build, is the exact bypass path that produces a 1-agent ad-hoc fix instead of a real team flow.
|
|
23
|
+
|
|
24
|
+
If you ARE already inside an agent team (e.g., a teammate invoked this skill via the Skill tool, or `lisa-intake` is running this skill per Ready ticket), do NOT create a second team — many harnesses reject double-creates — and do NOT collapse the nested flow into a single inline worker. A nested team-first flow must still bring in the specialists it requires by adding them to the existing team, not by doing the work itself:
|
|
25
|
+
|
|
26
|
+
- **Claude:** teams are flat and only the lead can add named teammates, so do NOT call `Agent` with a `name` from a teammate (the harness rejects it: *"Teammates cannot spawn other teammates — the team roster is flat"*). Send the team lead a message naming the specialist teammate(s) this flow needs, their task assignments, and completion criteria, then coordinate through the shared task list until they finish. An anonymous subagent (`Agent` with `name` omitted) is permitted only for bounded one-shot work whose result returns directly to you — it is not a substitute for the required lifecycle specialists.
|
|
27
|
+
- **Codex:** do NOT call `TeamCreate`. If the lead/root agent is addressable (you were given its id/handle), send it a request to `multi_agent_v1.spawn_agent` the specialist agent(s), including each agent's prompt, ownership, and expected result. If no lead handle exists but `spawn_agent` is available to you, spawn only the bounded specialist agent(s) this flow needs, `wait_agent` for their results, and relay those results upward to the parent/lead.
|
|
28
|
+
|
|
29
|
+
Treat the first successful lead-spawn request (or, on the Codex fallback, the first specialist spawn) as preserving team orchestration. Never satisfy a team-first lifecycle flow by doing all the work inline.
|
|
30
|
+
|
|
31
|
+
## Resolve the input (first task assigned to the team)
|
|
32
|
+
|
|
33
|
+
$ARGUMENTS is either a url to a ticket containing the request, a pointer to a file containing the request, or the request in text format.
|
|
34
|
+
|
|
35
|
+
The team lead does NOT read the input directly. The first task on the team's plan is "resolve the input" — assigned to a bounded input-resolver teammate, which then:
|
|
36
|
+
|
|
37
|
+
- If it's a ticket, calls `lisa-tracker-read` (preferred — vendor-agnostic; dispatches per `.lisa.config.json` `tracker`). **Mismatch guard**: if the ticket format doesn't match the configured tracker (e.g., a GitHub URL when `tracker` is `jira`), `tracker-read` stops and reports the error — never auto-translates vendors:
|
|
38
|
+
- JIRA ticket → `lisa-tracker-read` → `lisa-jira-read-ticket`
|
|
39
|
+
- GitHub Issue → `lisa-tracker-read` → `lisa-github-read-issue`
|
|
40
|
+
- Linear identifier or project URL → `lisa-tracker-read` → `lisa-linear-read-issue`
|
|
41
|
+
- Captures comments and metadata, not just the description.
|
|
42
|
+
- If it's a file, reads the entire file without offset or limit.
|
|
43
|
+
- If it's a plain-text request, uses the provided text verbatim as the resolved input.
|
|
44
|
+
- Returns the resolved input to the team lead, who then proceeds to roster selection.
|
|
45
|
+
|
|
46
|
+
The input resolver is the only teammate that may be spawned before the Roster Decision exists. After it returns the resolved input, do not spawn any lifecycle, research, implementation, review, verification, or learning teammate until the Roster Decision has been recorded.
|
|
47
|
+
|
|
48
|
+
## Select the agent roster
|
|
49
|
+
|
|
50
|
+
Before spawning any teammate beyond the bounded input resolver, record a **Roster Decision** artifact. It must enumerate every agent or specialist type exposed by the current runtime's delegation tool and record one line per type:
|
|
51
|
+
|
|
52
|
+
```text
|
|
53
|
+
INCLUDE|EXCLUDE - <agent type> - <one-sentence reason>
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Review all available agent types listed in the current runtime's delegation options. In Claude, this includes the Task tool's `subagent_type` options: built-in agents such as `Explore` and `general-purpose`, custom agents from `.claude/agents/`, and plugin agents from enabled plugins. In Codex, Cursor, Copilot, agy, OpenCode, or another runtime, use that runtime's tool-discovery and delegation surfaces to enumerate the equivalent available specialists. If the runtime exposes no specialist list, record that explicitly in the Roster Decision and justify the fallback agent type you will use.
|
|
57
|
+
|
|
58
|
+
Persist the Roster Decision where the flow can be audited later. Prefer task-list metadata `metadata.roster` when a task list exists; otherwise write `${LISA_PROJECT_DIR:-${CLAUDE_PROJECT_DIR:-.}}/.lisa/roster.md` or post the Roster Decision in the plan/tracker artifact the flow is already updating. The later verification/evidence step must reference the recorded artifact; absence of the artifact is a workflow failure.
|
|
59
|
+
|
|
60
|
+
Inclusion is the default. You MUST justify excluding an agent. Every team must include the Explore agent, or the runtime's nearest read-only search/research equivalent; if no equivalent exists, record that gap in the Roster Decision.
|
|
61
|
+
|
|
62
|
+
Do not spawn a teammate whose agent type is not included in the recorded Roster Decision. `general-purpose` is a fallback, not a default: using it requires an explicit INCLUDE line explaining why no more specific specialist fits or why the runtime exposes no specialist type. If the task changes enough that a different specialist is needed, update the Roster Decision before spawning that teammate.
|
|
63
|
+
|
|
64
|
+
When deciding the agents to use, consider:
|
|
65
|
+
* Before any task is implemented, the agent team must explore the codebase for relevant research (documentation, code, git history, etc) and update each task's `metadata.relevant_documentation` with the findings.
|
|
66
|
+
* Each task must be reviewed by the team to make sure their verification passes.
|
|
67
|
+
* Each task must have their learnings reviewed by the learner subagent.
|
|
68
|
+
|
|
69
|
+
Using the general-purpose agent in Team Lead session, Determine the name of this plan
|
|
70
|
+
|
|
71
|
+
Using the general-purpose agent in Team Lead session, **determine the base branch from the ticket's target environment, then sync the working branch onto the latest of it before any work** — so implementation always builds on current target-environment code:
|
|
72
|
+
|
|
73
|
+
1. **Resolve the target environment** from the resolved work item — its `## Target Backend Environment` section (the field the `*-write-*` / `*-add-journey` skills record). For bug work, the environment named in the report is authoritative: if the title/body/reproduction steps mention bare env names (`dev`, `staging`, `prod`, `production`) or env-bearing URLs (`staging.<domain>`, `gql.staging.*`, `dev.<domain>`), that reported environment wins over a generic autofill default.
|
|
74
|
+
2. **Map the environment to a base branch** via `.lisa.config.json` `deploy.branches` (e.g. `staging → staging`, `production → main`) — the forward direction of the same map the env-keyed `done` resolution uses in reverse (see the `config-resolution` rule). If the work item names **no** environment, the base branch is the **remote default branch** (`gh repo view --json defaultBranchRef -q .defaultBranchRef.name`, or `git remote set-head origin -a` then read `origin/HEAD`), and record that fallback assumption in the plan/tracker artifact before proceeding. If the reported environment is absent from `deploy.branches`, or its branch does not exist on the remote, **stop and report** — never guess a base and never silently fall back to the default/integration branch.
|
|
75
|
+
3. **Establish the feature branch off the latest base, conflict-free:**
|
|
76
|
+
- `git fetch origin`.
|
|
77
|
+
- Already on a feature branch with an **open PR** → reuse it. If the PR's base ≠ the resolved base branch, surface the mismatch and re-target only with confirmation — the ticket's environment is the source of truth.
|
|
78
|
+
- Already on a feature branch with **no open PR** → reuse it; its PR base will be the resolved base branch (do not ask the human — the environment determines it).
|
|
79
|
+
- On an **environment / default branch** → check out a feature branch named for this plan (with the work-item ref prefix, per the linkage rules below) **from `origin/<base>`**.
|
|
80
|
+
- **Rebase the feature branch onto `origin/<base>` and resolve any merge conflicts BEFORE starting work.** If the conflicts cannot be resolved cleanly and safely, create a fix task for the agent team (with the conflicting file list and current merge state) and resolve it before implementation begins — never start work on stale or conflicted code.
|
|
81
|
+
4. **The PR targets the resolved base branch** — carry it as `target_branch=<base>` into `lisa-git-submit-pr` (Verify flow). `git-submit-pr` already chooses a closing keyword when the base is the production/default branch and a non-closing reference for a non-terminal environment branch. For a bug fixed on a non-integration environment branch, the current flow is not done until the fix is merged and verified there, then forward cherry-picked down to the integration branch via a linked follow-up.
|
|
82
|
+
|
|
83
|
+
When the request came from a tracker work item, preserve its native identifier for development linkage:
|
|
84
|
+
|
|
85
|
+
- Capture `tracker_provider` and `work_item_ref` from the resolved input before creating or reusing a branch. Examples: `github` + `CodySwannGT/lisa#614`, `linear` + `ENG-123`, `jira` + `ENG-123`.
|
|
86
|
+
- If a new branch is needed and the provider can link branches by identifier, include the identifier in the branch name before the human-readable slug. Linear and JIRA integrations commonly link from branch names; GitHub issue linkage is PR-body driven, but including the issue number in the branch name is still useful. Keep branch names URL-safe, for example `codex/ENG-123-add-checkout-copy` or `codex/614-add-checkout-copy`.
|
|
87
|
+
- Pass the work-item ref and target branch to `lisa-git-submit-pr` when opening or updating the PR, for example `work_item_ref=CodySwannGT/lisa#614 target_branch=<base resolved from the ticket's environment above>` (not hardcoded `main`). The PR workflow owns provider-specific body text and must decide whether to use a closing keyword or a non-closing reference.
|
|
88
|
+
- After `lisa-git-submit-pr` returns a PR URL, ensure the reverse backlink is present on the source work item by running `lisa-tracker-sync <work_item_ref> pr-ready pr_url=<url> tracker_provider=<provider>`. The sync path must prefer native provider linkage and fall back to one managed `[lisa-pr-link]` comment when native linkage is unavailable or cannot be verified.
|
|
89
|
+
- If the provider has no native branch or PR development-linkage surface, continue without linkage and mention that the provider was skipped.
|
|
90
|
+
|
|
91
|
+
Using the general-purpose agent in Team Lead session, Determine which flow applies:
|
|
92
|
+
1. Research -- needs a PRD (no specification exists)
|
|
93
|
+
2. Plan -- needs decomposition (specification exists but no work items)
|
|
94
|
+
3. Implement -- has a well-defined work item
|
|
95
|
+
4. Verify -- has code ready to ship
|
|
96
|
+
|
|
97
|
+
If Implement, determine the work type:
|
|
98
|
+
1. Build (feature, story, task)
|
|
99
|
+
2. Fix (bug -- mandatory Reproduce sub-flow before investigation)
|
|
100
|
+
3. Improve (refactoring, optimization, coverage improvement)
|
|
101
|
+
4. Investigate Only (spike -- no code changes, just findings)
|
|
102
|
+
|
|
103
|
+
Run the readiness gate check for the selected flow as defined in the `intent-routing` rule (loaded via the lisa plugin). If the gate fails, stop and report what is missing.
|
|
104
|
+
|
|
105
|
+
IF it is a Fix (bug), execute the Reproduce sub-flow FIRST:
|
|
106
|
+
1. Write a failing test that demonstrates the bug (preferred)
|
|
107
|
+
2. If a failing test is not possible, write a minimal reproduction script
|
|
108
|
+
3. Verify the reproduction is reliable (consistent failure)
|
|
109
|
+
4. The reproduction MUST succeed before any investigation or fix attempt begins
|
|
110
|
+
5. Examples of reproduction methods:
|
|
111
|
+
1. Write a simple API client and call the offending API
|
|
112
|
+
2. Start the server on localhost and use the Playwright CLI or Chrome DevTools
|
|
113
|
+
|
|
114
|
+
For any Fix flow, and for any Build flow that changes user-visible behavior, regression coverage is a required deliverable at the highest practical observation level for the reported surface. If the project has a browser, device, or end-to-end harness for that platform (for example Playwright, Maestro, Detox, Cypress, or an equivalent runtime), the task plan and definition of done MUST include a deterministic regression spec against the reported surface, using mocked or seeded data where needed. This is alongside unit or integration coverage, not a substitute for it.
|
|
115
|
+
|
|
116
|
+
The team lead may not waive, defer, demote, or phrase this regression spec as "optional", "if cheap", "nice to have", or equivalent. The only permitted exits are:
|
|
117
|
+
|
|
118
|
+
1. The project genuinely has no end-to-end harness for the affected platform; record the checked locations and that absence in the task metadata, PR, and work-item evidence.
|
|
119
|
+
2. A genuine technical blocker prevents adding or executing the spec in this PR; before merge, create a linked build-ready follow-up ticket, reference it from the PR and source work item, and keep the current item blocked or explicitly non-terminal until that follow-up is accepted.
|
|
120
|
+
|
|
121
|
+
Completion evidence for the regression spec must prove execution, not mere existence. A green CI run is insufficient unless the PR evidence includes a CI log line, reporter output, or equivalent record naming the new spec and showing that it ran and passed. Guard explicitly against `test.skip`, suite-level environment gates, shard filters, and "0 tests" passes.
|
|
122
|
+
|
|
123
|
+
If the required regression spec is still in flight on an auto-merge-enabled PR, pause auto-merge or use an equivalent merge gate until the spec commit is pushed and its execution proof is available. The flow must not allow the PR to merge before this non-demotable deliverable is satisfied or formally blocked through the linked follow-up path above.
|
|
124
|
+
|
|
125
|
+
Using the general-purpose agent in Team Lead session, determine how you will know that the task is fully complete. Write this as an **effective completion condition** — one an independent verifier could confirm from observed output alone, not from your assertion that it works. A strong condition has:
|
|
126
|
+
|
|
127
|
+
- **One measurable end state** — a status code, an exit code, a row count, an observable UI state, an empty queue. Not "it looks right" or "the code is correct".
|
|
128
|
+
- **A stated proof command that surfaces the evidence** — exactly how the running system is exercised so the result is observable (e.g. `curl … returns 200 with {…}`, "the Playwright run reaches the dashboard", "`SELECT … ` returns the new row"). Quality gates (test/typecheck/lint) do NOT count — they are prerequisites.
|
|
129
|
+
- **Constraints that must hold** — anything that must not change on the way there (e.g. "no other endpoint's response changes", "no migration is dropped").
|
|
130
|
+
|
|
131
|
+
This condition is the contract the Verify flow proves and records in the verification verdict (below); it is what the completion gate checks before the flow may stop.
|
|
132
|
+
|
|
133
|
+
1. Examples
|
|
134
|
+
1. Direct deploy the changes to dev and then Write a simple API client and call the offending API
|
|
135
|
+
2. Start the server on localhost and then Use the Playwright CLI or Chrome DevTools
|
|
136
|
+
|
|
137
|
+
Using the general-purpose agent in Team Lead session, create tasks needed to complete the request.
|
|
138
|
+
|
|
139
|
+
Every task MUST include this JSON metadata block. Do NOT omit `skills` (use `[]` if none), `learnings` (use `[]` if none) or `verification`.
|
|
140
|
+
|
|
141
|
+
```json
|
|
142
|
+
{
|
|
143
|
+
"plan": "<plan-name>",
|
|
144
|
+
"type": "spike|bug|task|epic|story",
|
|
145
|
+
"acceptance_criteria": ["..."],
|
|
146
|
+
"relevant_documentation": "",
|
|
147
|
+
"testing_requirements": ["..."],
|
|
148
|
+
"skills": ["..."],
|
|
149
|
+
"learnings": ["..."],
|
|
150
|
+
"verification": {
|
|
151
|
+
"type": "ui-recording|api-test|cli-test|database-check|manual-check|documentation",
|
|
152
|
+
"command": "the proof command — must run the actual system and surface its result in the transcript (NOT test/typecheck/lint, those are quality gates). Phrase it so an independent verifier sees the evidence, e.g. `curl -s localhost:3000/health` not `check that health works`",
|
|
153
|
+
"expected": "the single measurable end state that proves success — observable system behavior (status code, response body, row count, UI state), not a subjective judgement"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
Before any task is implemented, the agent team must explore the codebase for relevant research (documentation, code, git history, etc) and update each task's `metadata.relevant_documentation` with the findings.
|
|
159
|
+
|
|
160
|
+
For Fix tasks and user-visible Build tasks, `testing_requirements` must include the highest-practical-observation regression requirement above, including the selected harness or the recorded absence/blocker path. The completion condition must include the proof command and the required CI execution evidence for the new spec.
|
|
161
|
+
|
|
162
|
+
Each task must be reviewed by the team to make sure their verification passes.
|
|
163
|
+
Each task must have their learnings reviewed by the learner subagent.
|
|
164
|
+
|
|
165
|
+
Before shutting down the team, execute the Verify flow:
|
|
166
|
+
|
|
167
|
+
1. Run quality gates: lint, typecheck, tests — all must pass. These are prerequisites, NOT verification.
|
|
168
|
+
2. `verification-specialist`: verify locally by running the actual system and observing results (empirical proof that the change works). This is the real verification step. For UI-surface bugs, the proof must observe the UI surface with browser/device automation against the target environment whenever such a harness exists; unit-level or API-only proof cannot satisfy the empirical verification contract for a UI-surface defect.
|
|
169
|
+
2a. **Record the verification verdict** — the independent, machine-readable proof that gates completion. The `verification-specialist` writes `${CLAUDE_PROJECT_DIR:-.}/.lisa/verification-status.json` with one entry per acceptance criterion, each carrying the proof command's observed evidence:
|
|
170
|
+
|
|
171
|
+
```json
|
|
172
|
+
{
|
|
173
|
+
"plan": "<plan-name>",
|
|
174
|
+
"status": "pass | fail | blocked | in_progress",
|
|
175
|
+
"criteria": [
|
|
176
|
+
{ "task": "<task id or title>", "criterion": "<the completion condition>", "status": "pass | fail", "evidence": "<the proof command run and the observed result>" }
|
|
177
|
+
],
|
|
178
|
+
"updated_at": "<ISO8601 UTC>"
|
|
179
|
+
}
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
Set `status: "pass"` only when every criterion is `pass` with real evidence (output from running the system, not a claim). The verdict must be judged by an agent that did NOT implement the change (the `verification-specialist`), never self-certified by the implementer. This is runtime scratch — it is gitignored and MUST NOT be committed (treat it like the secrets exclusion in the commit step).
|
|
183
|
+
|
|
184
|
+
On Claude, the `enforce-verification-gate.sh` Stop hook reads this file and **will not let the flow stop** until it shows a terminal, all-`pass` verdict — carrying over the non-bypassable completion gate of the `/goal` primitive, but checked deterministically against real evidence rather than by a transcript-only evaluator model. If you must stop before completion, write the verdict with `status: "blocked"` and the reason — that records the outcome and releases the gate instead of leaving it to spin. But a `blocked` verdict is a last resort, not a shortcut around fillable work: **first resolve every gap you can resolve yourself.** If the work item is thin — missing its Validation Journey, acceptance criteria, or other derivable detail — enrich it: derive the missing detail from the ticket context and the codebase, write it back, and proceed. Do **not** block on a gap you could have filled. Only a blocker that survives that attempt is real, and it is one of two kinds:
|
|
185
|
+
|
|
186
|
+
- **Actionable blocker** — an unresolved dependency or fixable technical gap that some team or repository could build (a missing or changed schema field, an unbuilt sibling work item, a required upstream fix), **including cross-repo dependencies**. Before writing the blocked verdict you MUST (1) file a build-ready fix/dependency ticket capturing the diagnosis — in the dependency's own repository/tracker when it is cross-repo (e.g. a `[<repo>] …` ticket in the shared project, or the sibling tracker) — and (2) link the current work item to it as `is blocked by`. Only then write the verdict. This is the same discipline as the regression-spec blocker and the remote-verification-fail exits above, and it is what makes the block machine-recoverable: `repair-intake` re-dispatches a blocked item once its linked `is blocked by` dependency closes, but it cannot act on a prose-only comment. Recommending the ticket "as a human follow-up" without filing and linking it is **not** a permitted exit.
|
|
187
|
+
- **Human-only blocker** — an input the agent genuinely cannot obtain or produce no matter what it does: credentials or secrets it has no access to, or a product/design decision only a human can make. Record the blocked verdict, mark it `human_needed` (the marker `repair-intake` recognizes, so it won't churn re-dispatching it), and surface or reassign to a human; do **not** fabricate a build-ready ticket, because there is no build-ready work.
|
|
188
|
+
|
|
189
|
+
Other harnesses fall back to this prose obligation.
|
|
190
|
+
3. Write the highest-practical-observation regression test encoding the verification. For user-visible bugs or user-visible Build changes with an available browser/device/e2e harness, this means a deterministic spec on the reported surface. Prove the new spec actually executed and passed in PR CI by recording a named spec log/reporter line or equivalent execution record; green CI without that named evidence does not satisfy this step.
|
|
191
|
+
4. Record Implement usage on the originating work artifact via `lisa-usage-accounting` so the work item (or other implementation-owned artifact) gains a direct `lisa-implement` usage entry in the canonical `## Lisa Usage` section. If the parent / child graph is already known, prefer `record_and_rollup` so ancestor totals refresh in the same write; otherwise still write the direct entry, and if runtime usage is unavailable, use `source: unavailable` with nullable token/cost fields instead of skipping the row.
|
|
192
|
+
5. Commit ALL outstanding changes in logical batches on the branch (minus sensitive data/information) — not just changes made by the agent team. This includes pre-existing uncommitted changes that were on the branch before the plan started. Do NOT filter commits to only "task-related" files. If it shows up in git status, it gets committed (unless it contains secrets).
|
|
193
|
+
6. Push the changes - if any pre-push hook blocks you, create a task for the agent team to fix the error/problem whether it was pre-existing or not
|
|
194
|
+
7. Open a pull request with auto-merge on via `lisa-git-submit-pr`, targeting the **base branch resolved from the ticket's environment** (`target_branch=<base>`, per the branch step above), and including the work-item ref when one exists so the PR can be linked natively to the source issue.
|
|
195
|
+
7a. Confirm two-way linkage before treating PR submission as complete: the PR body/title/branch must reference the work item, and the work item must have either a verified native PR link or a single managed `[lisa-pr-link]` fallback comment from `lisa-tracker-sync`.
|
|
196
|
+
8. PR Watch Loop: Drive the PR to merge via the `drive-pr-to-merge` skill — the single source of truth for clearing every blocker (auto-merge with direct-merge fallback, `BEHIND` re-sync, conflict resolution, failing-check fixes, human + bot review-comment handling with thread resolution, stale `CHANGES_REQUESTED` dismissal, and post-merge ancestry verification). `git-submit-pr` already invokes it; if you reach this step with a PR already open, invoke `drive-pr-to-merge` directly with the PR number. For a large review backlog you may fan the code-fix work out to the agent team, but `drive-pr-to-merge` owns the loop and the terminal conditions — do not re-implement them.
|
|
197
|
+
9. Merge the PR, then refresh the ticket-side backlink with `lisa-tracker-sync <work_item_ref> pr-merged pr_url=<url> merge_sha=<sha> tracker_provider=<provider>` when a work item exists.
|
|
198
|
+
10. Monitor the deploy action that triggers automatically from the successful merge
|
|
199
|
+
11. If deploy fails, create a task for the agent team to fix the failure, open a new PR and then go back to step 7
|
|
200
|
+
12. Remote verification: `verification-specialist` verifies in target environment (same checks as local verification, but on remote), and refreshes the verdict (step 2a) to reflect the remote result.
|
|
201
|
+
13. `ops-specialist`: post-deploy health check, monitor for errors in first minutes
|
|
202
|
+
14. If remote verification fails, create a task for the agent team to find out why it failed, fix it and return to step 5. **Bound this loop**: after a small number of full fix→deploy→reverify cycles without reaching a passing remote verdict (treat ~3 as the ceiling unless the work item states otherwise), stop retrying — file a build-ready fix ticket, write the verdict with `status: "blocked"` and the diagnosis, and move the work item to blocked rather than looping indefinitely. The completion gate releases on a `blocked` verdict, so the flow ends with a recorded outcome instead of a silent spin or a self-declared success.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-improve-code-complexity
|
|
3
|
+
description: This skill should be used when reducing the cognitive complexity threshold of the codebase. It lowers the threshold by 2, identifies functions that exceed the new limit, generates a brief with refactoring strategies, and creates a plan with tasks to fix all violations.
|
|
4
|
+
allowed-tools: ["Read", "Bash", "Glob", "Grep"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Lower Code Complexity
|
|
8
|
+
|
|
9
|
+
Reduces the cognitive complexity threshold by 2 and fixes all violations.
|
|
10
|
+
|
|
11
|
+
## Step 1: Gather Requirements
|
|
12
|
+
|
|
13
|
+
1. **Read current threshold** from eslint config (cognitive-complexity rule)
|
|
14
|
+
2. **Calculate new threshold**: current - 2 (e.g., 15 -> 13)
|
|
15
|
+
3. **Run lint** with the new threshold to find violations:
|
|
16
|
+
```bash
|
|
17
|
+
bun run lint 2>&1 | grep "cognitive-complexity"
|
|
18
|
+
```
|
|
19
|
+
4. **Note for each violation**:
|
|
20
|
+
- File path and line number
|
|
21
|
+
- Function name
|
|
22
|
+
- Current complexity score
|
|
23
|
+
|
|
24
|
+
If no violations at new threshold, report success and exit.
|
|
25
|
+
|
|
26
|
+
## Step 2: Compile Brief and Delegate
|
|
27
|
+
|
|
28
|
+
Compile the gathered information into a structured brief:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
Reduce cognitive complexity threshold from [current] to [new].
|
|
32
|
+
|
|
33
|
+
Functions exceeding threshold (ordered by complexity):
|
|
34
|
+
1. [file:function] (complexity: X, target: [new]) - Line Y
|
|
35
|
+
2. ...
|
|
36
|
+
|
|
37
|
+
Configuration change: [eslint config path], cognitive-complexity from [current] to [new]
|
|
38
|
+
|
|
39
|
+
Refactoring strategies: extract functions, early returns, extract conditions, use lookup tables
|
|
40
|
+
|
|
41
|
+
Verification: `bun run lint 2>&1 | grep "cognitive-complexity" | wc -l` → Expected: 0
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Invoke `/lisa:implement` with this brief to create the implementation plan.
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-improve-max-lines
|
|
3
|
+
description: This skill should be used when reducing the maximum file lines threshold and fixing all violations. It updates the eslint threshold configuration, identifies files exceeding the new limit, generates a brief with refactoring strategies, and creates a plan with tasks to split oversized files.
|
|
4
|
+
allowed-tools: ["Read", "Bash", "Glob", "Grep"]
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Reduce Max Lines
|
|
9
|
+
|
|
10
|
+
Target threshold: $ARGUMENTS lines per file
|
|
11
|
+
|
|
12
|
+
If no argument provided, prompt the user for a target.
|
|
13
|
+
|
|
14
|
+
## Step 1: Gather Requirements
|
|
15
|
+
|
|
16
|
+
1. **Read current config** from eslint thresholds (eslint.thresholds.json or similar)
|
|
17
|
+
2. **Run lint** with the new threshold to find violations:
|
|
18
|
+
```bash
|
|
19
|
+
bun run lint 2>&1 | grep "max-lines"
|
|
20
|
+
```
|
|
21
|
+
3. **Note for each violation**:
|
|
22
|
+
- File path
|
|
23
|
+
- Current line count
|
|
24
|
+
|
|
25
|
+
If no violations at $ARGUMENTS, report success and exit.
|
|
26
|
+
|
|
27
|
+
## Step 2: Compile Brief and Delegate
|
|
28
|
+
|
|
29
|
+
Compile the gathered information into a structured brief:
|
|
30
|
+
|
|
31
|
+
```
|
|
32
|
+
Reduce max file lines threshold to $ARGUMENTS.
|
|
33
|
+
|
|
34
|
+
Files exceeding threshold (ordered by line count):
|
|
35
|
+
1. [file] - [current] lines (target: $ARGUMENTS)
|
|
36
|
+
2. ...
|
|
37
|
+
|
|
38
|
+
Configuration change: eslint.thresholds.json, maxLines to $ARGUMENTS
|
|
39
|
+
|
|
40
|
+
Refactoring strategies: extract modules, remove duplication, delete dead code, simplify logic
|
|
41
|
+
|
|
42
|
+
Verification: `bun run lint 2>&1 | grep "max-lines" | wc -l` → Expected: 0
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Invoke `/lisa:implement` with this brief to create the implementation plan.
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-improve-max-lines-per-function
|
|
3
|
+
description: This skill should be used when reducing the maximum lines per function threshold and fixing all violations. It updates the eslint threshold configuration, identifies functions exceeding the new limit, generates a brief with refactoring strategies, and creates a plan with tasks to split oversized functions.
|
|
4
|
+
allowed-tools: ["Read", "Bash", "Glob", "Grep"]
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Reduce Max Lines Per Function
|
|
9
|
+
|
|
10
|
+
Target threshold: $ARGUMENTS lines per function
|
|
11
|
+
|
|
12
|
+
If no argument provided, prompt the user for a target.
|
|
13
|
+
|
|
14
|
+
## Step 1: Gather Requirements
|
|
15
|
+
|
|
16
|
+
1. **Read current config** from eslint thresholds (eslint.thresholds.json or similar)
|
|
17
|
+
2. **Run lint** with the new threshold to find violations:
|
|
18
|
+
```bash
|
|
19
|
+
bun run lint 2>&1 | grep "max-lines-per-function"
|
|
20
|
+
```
|
|
21
|
+
3. **Note for each violation**:
|
|
22
|
+
- File path and line number
|
|
23
|
+
- Function name
|
|
24
|
+
- Current line count
|
|
25
|
+
|
|
26
|
+
If no violations at $ARGUMENTS, report success and exit.
|
|
27
|
+
|
|
28
|
+
## Step 2: Compile Brief and Delegate
|
|
29
|
+
|
|
30
|
+
Compile the gathered information into a structured brief:
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
Reduce max lines per function threshold to $ARGUMENTS.
|
|
34
|
+
|
|
35
|
+
Functions exceeding threshold (ordered by line count):
|
|
36
|
+
1. [file:function] (lines: X, target: $ARGUMENTS) - Line Y
|
|
37
|
+
2. ...
|
|
38
|
+
|
|
39
|
+
Configuration change: eslint.thresholds.json, maxLinesPerFunction to $ARGUMENTS
|
|
40
|
+
|
|
41
|
+
Refactoring strategies: extract functions, early returns, extract conditions, use lookup tables, consolidate logic
|
|
42
|
+
|
|
43
|
+
Verification: `bun run lint 2>&1 | grep "max-lines-per-function" | wc -l` → Expected: 0
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Invoke `/lisa:implement` with this brief to create the implementation plan.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-improve-test-coverage
|
|
3
|
+
description: This skill should be used when increasing test coverage to a specified threshold percentage. It runs the coverage report, identifies files with the lowest coverage, generates a brief with coverage gaps, and creates a plan with tasks to add the missing tests.
|
|
4
|
+
allowed-tools: ["Read", "Bash", "Glob", "Grep"]
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Increase Test Coverage
|
|
9
|
+
|
|
10
|
+
Target threshold: $ARGUMENTS%
|
|
11
|
+
|
|
12
|
+
If no argument provided, prompt the user for a target.
|
|
13
|
+
|
|
14
|
+
## Step 1: Gather Requirements
|
|
15
|
+
|
|
16
|
+
1. **Find coverage config** (jest.config.js, vitest.config.ts, .nycrc, etc.)
|
|
17
|
+
2. **Run coverage report** to get current state:
|
|
18
|
+
```bash
|
|
19
|
+
bun run test:cov 2>&1 | head -100
|
|
20
|
+
```
|
|
21
|
+
3. **Identify the 20 files with lowest coverage**, noting:
|
|
22
|
+
- File path
|
|
23
|
+
- Current coverage % (lines, branches, functions)
|
|
24
|
+
- Which lines/branches are uncovered
|
|
25
|
+
|
|
26
|
+
## Step 2: Compile Brief and Delegate
|
|
27
|
+
|
|
28
|
+
Compile the gathered information into a structured brief:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
Increase test coverage from [current]% to $ARGUMENTS%.
|
|
32
|
+
|
|
33
|
+
Files needing coverage (ordered by coverage gap):
|
|
34
|
+
1. [file] - [current]% coverage (target: $ARGUMENTS%)
|
|
35
|
+
- Uncovered: [lines]
|
|
36
|
+
- Missing branch coverage: [lines]
|
|
37
|
+
2. ...
|
|
38
|
+
|
|
39
|
+
Configuration: [config file path], update thresholds to $ARGUMENTS%
|
|
40
|
+
|
|
41
|
+
Verification: `bun run test:cov` → Expected: All thresholds pass at $ARGUMENTS%
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
Invoke `/lisa:implement` with this brief to create the implementation plan.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-improve-tests
|
|
3
|
+
description: This skill should be used when improving test quality. It scans the test suite for weak, brittle, or poorly-written tests, generates a brief with improvement opportunities, and creates a plan with tasks to strengthen the tests.
|
|
4
|
+
allowed-tools: ["Read", "Bash", "Glob", "Grep"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Improve Test Quality
|
|
8
|
+
|
|
9
|
+
Target: $ARGUMENTS
|
|
10
|
+
|
|
11
|
+
If no argument provided, scan the full test suite.
|
|
12
|
+
|
|
13
|
+
## Step 1: Gather Requirements
|
|
14
|
+
|
|
15
|
+
1. **Run test suite** to establish baseline:
|
|
16
|
+
```bash
|
|
17
|
+
bun run test 2>&1 | tail -20
|
|
18
|
+
```
|
|
19
|
+
2. **Scan test files** for quality issues:
|
|
20
|
+
- Weak assertions (`toBeTruthy`, `toBeDefined` instead of specific values)
|
|
21
|
+
- Missing edge cases (no boundary values, no error paths)
|
|
22
|
+
- Implementation coupling (testing internals rather than behavior)
|
|
23
|
+
- Missing error path coverage
|
|
24
|
+
- Duplicated setup that could indicate missing abstractions
|
|
25
|
+
3. **Identify 10-20 test files** with highest improvement potential, noting:
|
|
26
|
+
- File path
|
|
27
|
+
- Issues found (weak assertions, missing edge cases, etc.)
|
|
28
|
+
- Estimated impact of improvement
|
|
29
|
+
|
|
30
|
+
## Step 2: Compile Brief and Delegate
|
|
31
|
+
|
|
32
|
+
Compile the gathered information into a structured brief:
|
|
33
|
+
|
|
34
|
+
```text
|
|
35
|
+
Improve test quality across the test suite.
|
|
36
|
+
|
|
37
|
+
Test files needing improvement (ordered by impact):
|
|
38
|
+
1. [test file] - [issues found]
|
|
39
|
+
- Weak assertions: [count]
|
|
40
|
+
- Missing edge cases: [description]
|
|
41
|
+
- Implementation coupling: [description]
|
|
42
|
+
2. ...
|
|
43
|
+
|
|
44
|
+
Verification: `bun run test` -> Expected: All tests pass, improved assertions and coverage
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Invoke `/lisa:implement` with this brief to create the implementation plan.
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: lisa-intake
|
|
3
|
+
description: "Vendor-agnostic scanner for Ready queues. Given a Notion PRD database URL → finds the first Ready PRD and runs lisa-plan. Given a Confluence space or parent page URL → finds the first prd-ready PRD and runs lisa-plan. Given a Linear workspace URL or team key → finds the first prd-ready Linear project and runs lisa-plan. Given a GitHub repo URL or `org/repo` token → finds the first prd-ready GitHub issue and runs lisa-plan. Given a JIRA project key or JQL filter → finds the first Ready ticket and runs lisa-implement. Given a GitHub repo URL or `org/repo` token when `tracker = github` → finds the first `status:ready` issue and runs lisa-implement. On the PRD side it also closes the loop: each cycle rolls a ticketed PRD up to shipped and dispatches lisa-verify-prd for one shipped PRD (shipped → verified on pass; on fail, re-opened shipped → ticketed with build-ready fix tickets that auto-build and re-verify — never blocked). Designed as the cron target for /schedule — one eligible item per invocation, exits cleanly on empty. Symmetric counterpart to the single-item lisa-plan and lisa-implement skills."
|
|
4
|
+
allowed-tools: ["Skill", "Bash", "mcp__claude_ai_Notion__notion-fetch", "mcp__claude_ai_Notion__notion-search", "mcp__atlassian__getConfluencePage", "mcp__atlassian__getConfluenceSpaces", "mcp__atlassian__searchConfluenceUsingCql", "mcp__atlassian__getAccessibleAtlassianResources", "mcp__atlassian__searchJiraIssuesUsingJql", "mcp__atlassian__getJiraIssue"]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Intake: $ARGUMENTS
|
|
8
|
+
|
|
9
|
+
Run one intake cycle against the queue identified by `$ARGUMENTS`. Scans for `Status = Ready`, claims the first eligible item, dispatches it to the appropriate single-item lifecycle skill, then exits. Remaining Ready items are left for later scheduler invocations.
|
|
10
|
+
|
|
11
|
+
For build-queue runs, Intake also accepts an optional `assignee=<vendor-user-id-or-login>` filter.
|
|
12
|
+
Resolution order is:
|
|
13
|
+
|
|
14
|
+
1. `$ARGUMENTS` `assignee=<...>`
|
|
15
|
+
2. `.lisa.config.local.json` `intake.assignee`
|
|
16
|
+
3. empty default
|
|
17
|
+
|
|
18
|
+
When the resolved assignee is empty, Intake keeps the shared queue behavior and scans any ready
|
|
19
|
+
item. When non-empty, it forwards the filter to the vendor build-intake skill so that only ready
|
|
20
|
+
items already assigned to that assignee are considered. Intake never assigns or reassigns tickets
|
|
21
|
+
as part of this filter.
|
|
22
|
+
|
|
23
|
+
## Confirmation policy
|
|
24
|
+
|
|
25
|
+
Do NOT ask the caller whether to proceed. Once invoked with a queue, run the cycle to completion. The caller (a human at the CLI or a scheduled cron) has already authorized the run by invoking the skill; re-prompting defeats the purpose of a background batch.
|
|
26
|
+
|
|
27
|
+
Specifically forbidden:
|
|
28
|
+
|
|
29
|
+
- Previewing projected scope (number of items, projected ticket counts, write counts) and asking whether to continue.
|
|
30
|
+
- Offering A/B/C-style choices like "proceed / skip / dry-run only" — the documented behavior IS the default. Dry-run is a different skill, not an option here.
|
|
31
|
+
- Pausing because the queue is large, items have many open questions, or items are likely to end in `Blocked`. `Blocked` is a valid terminal state of the downstream lifecycles, not a failure mode — routing items to `Blocked` with clarifying comments is success.
|
|
32
|
+
- Pausing because validation looks expensive. The cost of one cycle is bounded; the cost of stalling a scheduled cron waiting on a human is unbounded.
|
|
33
|
+
|
|
34
|
+
The only legitimate reasons to stop early:
|
|
35
|
+
|
|
36
|
+
- Missing required input (no queue argument, missing project configuration). Surface the missing value and exit.
|
|
37
|
+
- The queue itself is misconfigured (Status property missing expected values, JIRA workflow can't reach required transitions). Surface and exit.
|
|
38
|
+
- Empty `Ready` set. Exit cleanly with the idle-case message.
|
|
39
|
+
|
|
40
|
+
## Orchestration: agent team
|
|
41
|
+
|
|
42
|
+
If you are NOT already operating inside an agent team (no prior successful team-creation or subagent-delegation tool call in this session, not spawned into a team context), the very first thing you do is establish team orchestration.
|
|
43
|
+
|
|
44
|
+
Use the team tool for the current runtime:
|
|
45
|
+
|
|
46
|
+
- Claude: use `TeamCreate`. If `TeamCreate` has not been loaded yet, first use `ToolSearch` with `query: "select:TeamCreate"` to load its schema.
|
|
47
|
+
- Codex: do not call `TeamCreate`; Codex does not expose that Claude tool. Use `tool_search` with a query like `multi-agent tools` to load `multi_agent_v1`, then use `multi_agent_v1.spawn_agent` for teammate delegation. Treat the first successful `spawn_agent` call as establishing team orchestration.
|
|
48
|
+
- Other runtimes: use the current runtime's tool-discovery mechanism to discover and call the appropriate multi-agent/team tool.
|
|
49
|
+
|
|
50
|
+
If no team creation or subagent delegation tool is available, explicitly state that team orchestration is unavailable in this runtime, continue as the lead agent, and preserve the workflow's review, verification, and task-tracking obligations locally.
|
|
51
|
+
|
|
52
|
+
Until the team is established, the first Codex teammate has been spawned, or the no-team fallback has been declared, do NOT call any of: `Agent`, `TaskCreate`, `Skill`, MCP tools (Atlassian / Linear / GitHub / Notion), `Read`, `Write`, `Edit`, `Bash`, `Grep`, `Glob`. Scanning the queue, claiming items, dispatching per-item flows — all of those are tasks for the team you are about to create, not for the lead session before orchestration exists.
|
|
53
|
+
|
|
54
|
+
If you ARE already inside an agent team (e.g., a teammate invoked this skill via the Skill tool), do NOT create a second team — many harnesses reject double-creates — and do NOT collapse the nested flow into a single inline worker. A nested team-first flow must still bring in the specialists it requires by adding them to the existing team, not by doing the work itself:
|
|
55
|
+
|
|
56
|
+
- **Claude:** teams are flat and only the lead can add named teammates, so do NOT call `Agent` with a `name` from a teammate (the harness rejects it: *"Teammates cannot spawn other teammates — the team roster is flat"*). Send the team lead a message naming the specialist teammate(s) this flow needs, their task assignments, and completion criteria, then coordinate through the shared task list until they finish. An anonymous subagent (`Agent` with `name` omitted) is permitted only for bounded one-shot work whose result returns directly to you — it is not a substitute for the required lifecycle specialists.
|
|
57
|
+
- **Codex:** do NOT call `TeamCreate`. If the lead/root agent is addressable (you were given its id/handle), send it a request to `multi_agent_v1.spawn_agent` the specialist agent(s), including each agent's prompt, ownership, and expected result. If no lead handle exists but `spawn_agent` is available to you, spawn only the bounded specialist agent(s) this flow needs, `wait_agent` for their results, and relay those results upward to the parent/lead.
|
|
58
|
+
|
|
59
|
+
Treat the first successful lead-spawn request (or, on the Codex fallback, the first specialist spawn) as preserving team orchestration. Never satisfy a team-first lifecycle flow by doing all the work inline.
|
|
60
|
+
|
|
61
|
+
The cycle's outer team is created by Intake. The one item it processes (a PRD via `lisa-plan`, a ticket via `lisa-implement`) executes within that team — those skills' orchestration preambles detect the existing team and skip creating a second team. One team per cron cycle, one eligible Ready item per cycle.
|
|
62
|
+
|
|
63
|
+
## Source dispatch
|
|
64
|
+
|
|
65
|
+
Detect the queue type from `$ARGUMENTS` and route:
|
|
66
|
+
|
|
67
|
+
| If `$ARGUMENTS` is... | Queue type | Per-item dispatch |
|
|
68
|
+
|------------------------|------------|---------------------|
|
|
69
|
+
| A Notion **database** URL or database ID | PRD queue (Notion) | Invoke `lisa-notion-prd-intake` (which scans the DB for Status=Ready, claims the first eligible PRD, runs `lisa-plan` via the dry-run validate → branch → write pipeline, then exits) |
|
|
70
|
+
| A Confluence **space** URL or space key (e.g. `https://acme.atlassian.net/wiki/spaces/PRD` or `PRD`) | PRD queue (Confluence) | Invoke `lisa-confluence-prd-intake` (which CQL-queries the space for `label = "prd-ready"`, claims the first eligible PRD by relabeling to `prd-in-review`, runs the dry-run validate → branch → write pipeline, then exits) |
|
|
71
|
+
| A Confluence **parent page** URL or page ID (the page whose descendants are PRDs) | PRD queue (Confluence, narrowed) | Invoke `lisa-confluence-prd-intake` with the parent ID (CQL: `ancestor = <id> AND label = "prd-ready"`) |
|
|
72
|
+
| A Linear **workspace** URL (e.g. `https://linear.app/acme`) | PRD queue (Linear) | Invoke `lisa-linear-prd-intake` (which queries `list_projects({label: "prd-ready"})` across the workspace, claims the first eligible project by relabeling to `prd-in-review`, runs the dry-run validate → branch → write pipeline, then exits) |
|
|
73
|
+
| A Linear **team** URL (e.g. `https://linear.app/acme/team/ENG/projects`) or a token already routed as a Linear team key | PRD queue (Linear, narrowed) | Invoke `lisa-linear-prd-intake` with the team key (`list_projects({team, label: "prd-ready"})`) |
|
|
74
|
+
| The literal token `linear` | PRD queue (Linear, default workspace) | Invoke `lisa-linear-prd-intake linear` — only valid if `linear.workspace` is configured in `.lisa.config.json` |
|
|
75
|
+
| A JIRA project key (e.g. `SE`) | Work queue (JIRA) | Invoke `lisa-jira-build-intake` (which scans the project for Status=Ready, claims the first eligible ticket via In Progress, runs `lisa-implement`, transitions to On Dev on success, then exits) |
|
|
76
|
+
| A full JQL filter (e.g. `project = SE AND component = "frontend"`) | Work queue (JIRA, narrowed) | Invoke `lisa-jira-build-intake` with the JQL |
|
|
77
|
+
| A GitHub **repository** URL or `org/repo` token (e.g. `https://github.com/acme/product-prds` or `acme/product-prds`) when used for **PRDs** | PRD queue (GitHub) | Invoke `lisa-github-prd-intake` (which queries `gh issue list --label prd-ready`, claims the first eligible PRD by relabeling to `prd-in-review`, runs the dry-run validate → branch → write pipeline, then exits). PRD discovery is independent of the destination tracker — the resulting tickets land wherever `.lisa.config.json` `tracker` says. |
|
|
78
|
+
| A GitHub **repository** URL or `org/repo` token when `tracker = github` is configured (build-queue mode) | Work queue (GitHub) | Invoke `lisa-tracker-build-intake` which dispatches to `lisa-github-build-intake` (which queries `gh issue list --label status:ready`, optionally narrows by the resolved assignee filter, claims the first eligible issue via `status:in-progress`, runs `lisa-implement`, relabels to `status:on-dev` on success, then exits). |
|
|
79
|
+
| The literal token `github` | Defaults to `.lisa.config.json` `github.org` / `github.repo`. Routes by **the `intake_mode` flag** in `$ARGUMENTS` (`prd` or `build`); if the flag is absent, prefer the PRD queue when both label namespaces are present, otherwise pick whichever exists. | Invoke the matching skill (`lisa-github-prd-intake` or `lisa-tracker-build-intake`). |
|
|
80
|
+
|
|
81
|
+
Disambiguation rules:
|
|
82
|
+
|
|
83
|
+
- A `notion.so` / `notion.site` URL → Notion queue.
|
|
84
|
+
- An Atlassian Confluence URL containing `/wiki/spaces/<KEY>` with no `/pages/...` segment → Confluence space queue.
|
|
85
|
+
- An Atlassian Confluence URL containing `/wiki/spaces/<KEY>/pages/<ID>/...` → Confluence parent-page queue (the page is the parent whose descendants are PRDs). If the user actually meant "this single page is a PRD, plan it", route to `lisa-plan` instead — this skill is batch-only.
|
|
86
|
+
- A `linear.app` URL → Linear queue. If the path is `/<workspace>` only or `/<workspace>/team/<KEY>/...`, route here. If the path includes `/project/<slug>-<id>` it's a single-PRD URL — direct the caller to `lisa-plan` instead, this skill is batch-only.
|
|
87
|
+
- The literal token `linear` (case-insensitive) → Linear queue, default workspace from `linear.workspace` in `.lisa.config.json`.
|
|
88
|
+
- A `github.com` URL or an `<org>/<repo>` token → GitHub queue. The PRD-vs-build dispatch is determined by which label namespace the repo currently uses: PRD-side (`prd-ready`) → `lisa-github-prd-intake`; build-side (`status:ready` and `tracker = github` in `.lisa.config.json`) → `lisa-tracker-build-intake`. If both namespaces are present, prefer the PRD queue unless `$ARGUMENTS` includes `intake_mode=build`. If the URL points at a single issue (`https://github.com/<org>/<repo>/issues/<n>`), this skill is batch-only — direct the caller to `lisa-plan` (for a single PRD issue) or `lisa-implement` (for a single build issue).
|
|
89
|
+
- The literal token `github` (case-insensitive) → GitHub queue, default repo from `.lisa.config.json` `github.org` / `github.repo`.
|
|
90
|
+
- A bare alphanumeric token that matches the JIRA project key regex (uppercase letters / digits / hyphen, ≤10 chars — typically the value of `jira.project` in `.lisa.config.json`) is treated as a JIRA project key by default. A token that does not match the regex is treated as a Confluence space key. If it does not resolve as a Confluence space key either, attempt to resolve as a Linear team key via `lisa-linear-access operation: list-teams({query})` before giving up. The only time to stop and ask is when the token resolves to more than one of {JIRA project, Confluence space, Linear team, GitHub `org/repo`} simultaneously — in that overlap the user must disambiguate which queue to scan.
|
|
91
|
+
- An `<org>/<repo>` token (slash-separated, both halves are GitHub-name-shaped) → GitHub queue.
|
|
92
|
+
- A string starting with `project = ` or containing JQL operators (`AND`, `OR`, `=`, `!=`, `~`, etc.) → JQL filter.
|
|
93
|
+
|
|
94
|
+
The single-item skills (`lisa-plan`, `lisa-implement`) and the per-vendor batch skills (`lisa-notion-prd-intake`, `lisa-confluence-prd-intake`, `lisa-linear-prd-intake`, `lisa-github-prd-intake`, `lisa-jira-build-intake`, `lisa-github-build-intake`) are internal — Intake is the public entry point. Developers schedule `/lisa:intake <queue>`; the rest is composition.
|
|
95
|
+
|
|
96
|
+
## Cycle behavior
|
|
97
|
+
|
|
98
|
+
1. **Resolve the queue** — fetch the database/project metadata, confirm the Status property/workflow has the expected `Ready` value.
|
|
99
|
+
2. **Pre-flight check** — for JIRA, confirm `In Progress` and `On Dev` are reachable transitions before doing any per-ticket work. Stop with a clear error if the workflow is misconfigured.
|
|
100
|
+
3. **Find Ready items** — query the queue. Empty → exit cleanly with `"No items with Status=Ready. Nothing to do."` This is the common idle case for a scheduled run.
|
|
101
|
+
4. **Process the first eligible Ready item only** (claim-first ordering for idempotency):
|
|
102
|
+
- Notion PRDs → `lisa-notion-prd-intake` handles per-item: claim (Status=In Review), dry-run validate, branch to Blocked or Ticketed, coverage audit
|
|
103
|
+
- Confluence PRDs → `lisa-confluence-prd-intake` handles per-item: claim (relabel to `prd-in-review`), dry-run validate, branch to `prd-blocked` or `prd-ticketed`, coverage audit
|
|
104
|
+
- Linear PRDs → `lisa-linear-prd-intake` handles per-item: claim (relabel project to `prd-in-review`), dry-run validate, branch to `prd-blocked` or `prd-ticketed` (with a sentinel feedback issue under each project hosting clarifying-question comments), coverage audit
|
|
105
|
+
- GitHub PRDs → `lisa-github-prd-intake` handles per-item: claim (relabel issue to `prd-in-review`), dry-run validate, branch to `prd-blocked` or `prd-ticketed` (with clarifying-question comments posted directly on the PRD issue), coverage audit
|
|
106
|
+
- JIRA tickets → `lisa-jira-build-intake` handles per-item: claim, dispatch to `lisa-jira-agent`, transition to On Dev on success
|
|
107
|
+
- GitHub build issues (when `tracker = github`) → `lisa-tracker-build-intake` → `lisa-github-build-intake` handles per-item: optional ready-queue assignee filtering, claim (relabel to `status:in-progress`), dispatch to `lisa-github-agent`, relabel to `status:on-dev` on success
|
|
108
|
+
- Duplicate-already-fixed build tickets are the one build-intake closeout exception: when `ticket-triage` returns `DUPLICATE_ALREADY_FIXED` with a canonical item and empirical base-branch evidence, the vendor build-intake skill closes the claimed ticket as a duplicate without opening a PR. This does not apply to `BLOCKED`, ambiguous, duplicate-of-open, or otherwise human-owned terminal dispositions.
|
|
109
|
+
- **Closing the PRD loop:** beyond claiming one Ready PRD, every PRD scanner also runs the closure rollup (`ticketed → shipped`, Phase 3f) and **dispatches `lisa-verify-prd` for one shipped PRD** (Phase 3g) each cycle — so a shipped PRD does not sit unverified. On pass the PRD goes `shipped → verified`; on fail it is re-opened `shipped → ticketed` with **build-ready fix tickets** that auto-build and trigger a re-verify (never `blocked`). The scanner only dispatches; `lisa-verify-prd` owns the transition (per the `prd-lifecycle-rollup` rule's "Closing the loop" section), and the self-healing loop continues until the PRD verifies.
|
|
110
|
+
5. **Stop after one item** — a claimed Ready item, a safe-blocked container, or a per-item error ends the *ready-claim* portion of the cycle. The per-vendor PRD scanner still runs its rollup and one verify-prd dispatch. Remaining Ready items stay untouched for later scheduler invocations.
|
|
111
|
+
6. **Summary report** — the single processed/skipped/error item, total processed, total errors. Before returning, record intake usage on the persisted cycle-summary artifact via `lisa-usage-accounting` so the summary carries a direct `lisa-intake` entry in the canonical `## Lisa Usage` section. If the claimed / skipped work item's parent-child graph is already known, prefer `record_and_rollup` so ancestor totals refresh in the same cycle; otherwise still write the direct entry, and if runtime usage is unavailable, use `source: unavailable` with nullable token/cost fields instead of skipping the row.
|
|
112
|
+
|
|
113
|
+
## Schedule examples
|
|
114
|
+
|
|
115
|
+
```text
|
|
116
|
+
/schedule "every 30 minutes" /lisa:intake https://www.notion.so/<workspace>/<database-id>
|
|
117
|
+
/schedule "every 30 minutes" /lisa:intake https://acme.atlassian.net/wiki/spaces/PRD
|
|
118
|
+
/schedule "every 30 minutes" /lisa:intake https://linear.app/acme
|
|
119
|
+
/schedule "every 30 minutes" /lisa:intake https://linear.app/acme/team/ENG/projects
|
|
120
|
+
/schedule "every 30 minutes" /lisa:intake https://github.com/acme/product-prds
|
|
121
|
+
/schedule "every 30 minutes" /lisa:intake acme/product-prds
|
|
122
|
+
/schedule "every 30 minutes" /lisa:intake SE
|
|
123
|
+
/schedule "every 30 minutes" /lisa:intake acme/frontend-v2 intake_mode=build
|
|
124
|
+
/schedule "every 30 minutes" /lisa:intake acme/frontend-v2 intake_mode=build assignee=codyswanngt
|
|
125
|
+
/schedule "every hour" /lisa:intake "project = SE AND component = 'frontend'"
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## Rules
|
|
129
|
+
|
|
130
|
+
- Never run a cycle without an explicit queue. Side effects too high to default.
|
|
131
|
+
- Never modify the source/destination lifecycles directly — Intake delegates per-item to the vendor adapter, which owns status transitions.
|
|
132
|
+
- Never run two Intake cycles concurrently against overlapping queues — concurrent claims could race. The scheduling layer is responsible for serialization.
|
|
133
|
+
- Stop and surface failures rather than retry-loop.
|