@codyswann/lisa 1.81.5 → 1.81.7
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/package.json +1 -1
- package/plugins/lisa/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa/agents/architecture-specialist.md +0 -1
- package/plugins/lisa/agents/bug-fixer.md +0 -1
- package/plugins/lisa/agents/builder.md +0 -1
- package/plugins/lisa/agents/debug-specialist.md +0 -1
- package/plugins/lisa/agents/jira-agent.md +0 -1
- package/plugins/lisa/agents/learner.md +1 -2
- package/plugins/lisa/agents/performance-specialist.md +0 -1
- package/plugins/lisa/agents/product-specialist.md +0 -1
- package/plugins/lisa/agents/quality-specialist.md +0 -1
- package/plugins/lisa/agents/security-specialist.md +0 -1
- package/plugins/lisa/agents/skill-evaluator.md +0 -1
- package/plugins/lisa/agents/test-specialist.md +0 -1
- package/plugins/lisa/agents/verification-specialist.md +0 -1
- package/plugins/lisa-cdk/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-expo/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-nestjs/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-rails/.claude-plugin/plugin.json +1 -1
- package/plugins/lisa-typescript/.claude-plugin/plugin.json +1 -1
- package/plugins/src/base/agents/architecture-specialist.md +0 -1
- package/plugins/src/base/agents/bug-fixer.md +0 -1
- package/plugins/src/base/agents/builder.md +0 -1
- package/plugins/src/base/agents/debug-specialist.md +0 -1
- package/plugins/src/base/agents/jira-agent.md +0 -1
- package/plugins/src/base/agents/learner.md +1 -2
- package/plugins/src/base/agents/performance-specialist.md +0 -1
- package/plugins/src/base/agents/product-specialist.md +0 -1
- package/plugins/src/base/agents/quality-specialist.md +0 -1
- package/plugins/src/base/agents/security-specialist.md +0 -1
- package/plugins/src/base/agents/skill-evaluator.md +0 -1
- package/plugins/src/base/agents/test-specialist.md +0 -1
- package/plugins/src/base/agents/verification-specialist.md +0 -1
package/package.json
CHANGED
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"lodash": ">=4.18.1"
|
|
77
77
|
},
|
|
78
78
|
"name": "@codyswann/lisa",
|
|
79
|
-
"version": "1.81.
|
|
79
|
+
"version": "1.81.7",
|
|
80
80
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
81
81
|
"main": "dist/index.js",
|
|
82
82
|
"exports": {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: architecture-specialist
|
|
3
3
|
description: Architecture specialist agent. Designs implementation approaches, traces data flow, identifies files to modify, maps dependencies, finds reusable code, evaluates design patterns, and flags breaking changes.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- codebase-research
|
|
7
6
|
- task-decomposition
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: bug-fixer
|
|
3
3
|
description: Bug fix agent. Reproduces bugs as failing tests, implements fixes via TDD, and verifies the fix resolves the issue without introducing regressions.
|
|
4
|
-
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
5
4
|
skills:
|
|
6
5
|
- bug-triage
|
|
7
6
|
- tdd-implementation
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: debug-specialist
|
|
3
3
|
description: Debug specialist agent. Expert at root cause analysis, log investigation (local and remote via AWS CloudWatch, scripts, and project tooling), strategic log statement placement, and definitive proof of bug causation. Finds what is causing the problem without a doubt.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- reproduce-bug
|
|
7
6
|
- root-cause-analysis
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jira-agent
|
|
3
3
|
description: JIRA lifecycle agent. Reads tickets, determines intent (Bug → Implement/Fix, Story/Task → Implement/Build, Epic → Plan, Spike → Implement/Investigate), delegates to the appropriate flow, syncs progress at milestones, and posts evidence at completion.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- jira-sync
|
|
7
6
|
- jira-evidence
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: learner
|
|
3
3
|
description: Post-implementation learning agent. Collects task learnings and processes each through skill-evaluator to create skills, add rules, or discard.
|
|
4
|
-
tools: Read, Write, Edit, Grep, Glob, Bash, Skill, Task, TaskList, TaskGet
|
|
5
4
|
---
|
|
6
5
|
|
|
7
6
|
# Learner Agent
|
|
@@ -18,7 +17,7 @@ You run the "learn" phase after implementation. Collect discoveries from the tea
|
|
|
18
17
|
|
|
19
18
|
### Step 2: Evaluate Each Learning
|
|
20
19
|
|
|
21
|
-
Invoke `skill-evaluator` (via
|
|
20
|
+
Invoke `skill-evaluator` (via Agent tool with `subagent_type: "skill-evaluator"`) for each learning:
|
|
22
21
|
|
|
23
22
|
- **CREATE SKILL** -- broad, reusable, complex, stable, not redundant. Invoke `/skill-creator`.
|
|
24
23
|
- **ADD TO RULES** -- simple rule to append to `.claude/rules/PROJECT_RULES.md`.
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: performance-specialist
|
|
3
3
|
description: Performance specialist agent. Identifies N+1 queries, inefficient algorithms, memory leaks, missing indexes, unnecessary re-renders, bundle size issues, and other software performance problems. Recommends optimizations with evidence.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- performance-review
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: product-specialist
|
|
3
3
|
description: Product/UX specialist agent. Defines user flows in Gherkin, writes acceptance criteria from user perspective, identifies UX concerns and error states, and empirically verifies behavior matches requirements.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- acceptance-criteria
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: quality-specialist
|
|
3
3
|
description: Code quality specialist agent. Reviews correctness, coding philosophy compliance (immutability, function structure), test coverage, and documentation. Explains findings in beginner-friendly plain English, ranked by severity.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- quality-review
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: security-specialist
|
|
3
3
|
description: Security specialist agent. Performs threat modeling (STRIDE), reviews code for OWASP Top 10 vulnerabilities, checks auth/validation/secrets handling, and recommends mitigations.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- security-review
|
|
7
6
|
- security-zap-scan
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: skill-evaluator
|
|
3
3
|
description: Evaluates instructions, rules, patterns, and knowledge to determine if they warrant creating a new skill. Use when discovering reusable patterns, receiving new guidelines, or identifying knowledge that could benefit future sessions. This agent decides whether content is broad and reusable enough to justify skill creation.
|
|
4
|
-
tools: Read, Grep, Glob, Skill
|
|
5
4
|
---
|
|
6
5
|
|
|
7
6
|
# Skill Evaluator Agent
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: test-specialist
|
|
3
3
|
description: Test specialist agent. Designs test strategy (matrix, edge cases, coverage targets, TDD sequence), writes comprehensive unit and integration tests, and reviews test quality. Tests behavior, not implementation details.
|
|
4
|
-
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
5
4
|
skills:
|
|
6
5
|
- test-strategy
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: verification-specialist
|
|
3
3
|
description: Verification specialist agent. Discovers project tooling and executes verification for all required types. Plans and executes empirical proof that work is done by running the actual system and observing results.
|
|
4
|
-
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
5
4
|
skills:
|
|
6
5
|
- verification-lifecycle
|
|
7
6
|
- jira-journey
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: architecture-specialist
|
|
3
3
|
description: Architecture specialist agent. Designs implementation approaches, traces data flow, identifies files to modify, maps dependencies, finds reusable code, evaluates design patterns, and flags breaking changes.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- codebase-research
|
|
7
6
|
- task-decomposition
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: bug-fixer
|
|
3
3
|
description: Bug fix agent. Reproduces bugs as failing tests, implements fixes via TDD, and verifies the fix resolves the issue without introducing regressions.
|
|
4
|
-
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
5
4
|
skills:
|
|
6
5
|
- bug-triage
|
|
7
6
|
- tdd-implementation
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: debug-specialist
|
|
3
3
|
description: Debug specialist agent. Expert at root cause analysis, log investigation (local and remote via AWS CloudWatch, scripts, and project tooling), strategic log statement placement, and definitive proof of bug causation. Finds what is causing the problem without a doubt.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- reproduce-bug
|
|
7
6
|
- root-cause-analysis
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: jira-agent
|
|
3
3
|
description: JIRA lifecycle agent. Reads tickets, determines intent (Bug → Implement/Fix, Story/Task → Implement/Build, Epic → Plan, Spike → Implement/Investigate), delegates to the appropriate flow, syncs progress at milestones, and posts evidence at completion.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- jira-sync
|
|
7
6
|
- jira-evidence
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: learner
|
|
3
3
|
description: Post-implementation learning agent. Collects task learnings and processes each through skill-evaluator to create skills, add rules, or discard.
|
|
4
|
-
tools: Read, Write, Edit, Grep, Glob, Bash, Skill, Task, TaskList, TaskGet
|
|
5
4
|
---
|
|
6
5
|
|
|
7
6
|
# Learner Agent
|
|
@@ -18,7 +17,7 @@ You run the "learn" phase after implementation. Collect discoveries from the tea
|
|
|
18
17
|
|
|
19
18
|
### Step 2: Evaluate Each Learning
|
|
20
19
|
|
|
21
|
-
Invoke `skill-evaluator` (via
|
|
20
|
+
Invoke `skill-evaluator` (via Agent tool with `subagent_type: "skill-evaluator"`) for each learning:
|
|
22
21
|
|
|
23
22
|
- **CREATE SKILL** -- broad, reusable, complex, stable, not redundant. Invoke `/skill-creator`.
|
|
24
23
|
- **ADD TO RULES** -- simple rule to append to `.claude/rules/PROJECT_RULES.md`.
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: performance-specialist
|
|
3
3
|
description: Performance specialist agent. Identifies N+1 queries, inefficient algorithms, memory leaks, missing indexes, unnecessary re-renders, bundle size issues, and other software performance problems. Recommends optimizations with evidence.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- performance-review
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: product-specialist
|
|
3
3
|
description: Product/UX specialist agent. Defines user flows in Gherkin, writes acceptance criteria from user perspective, identifies UX concerns and error states, and empirically verifies behavior matches requirements.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- acceptance-criteria
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: quality-specialist
|
|
3
3
|
description: Code quality specialist agent. Reviews correctness, coding philosophy compliance (immutability, function structure), test coverage, and documentation. Explains findings in beginner-friendly plain English, ranked by severity.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- quality-review
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: security-specialist
|
|
3
3
|
description: Security specialist agent. Performs threat modeling (STRIDE), reviews code for OWASP Top 10 vulnerabilities, checks auth/validation/secrets handling, and recommends mitigations.
|
|
4
|
-
tools: Read, Grep, Glob, Bash
|
|
5
4
|
skills:
|
|
6
5
|
- security-review
|
|
7
6
|
- security-zap-scan
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: skill-evaluator
|
|
3
3
|
description: Evaluates instructions, rules, patterns, and knowledge to determine if they warrant creating a new skill. Use when discovering reusable patterns, receiving new guidelines, or identifying knowledge that could benefit future sessions. This agent decides whether content is broad and reusable enough to justify skill creation.
|
|
4
|
-
tools: Read, Grep, Glob, Skill
|
|
5
4
|
---
|
|
6
5
|
|
|
7
6
|
# Skill Evaluator Agent
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: test-specialist
|
|
3
3
|
description: Test specialist agent. Designs test strategy (matrix, edge cases, coverage targets, TDD sequence), writes comprehensive unit and integration tests, and reviews test quality. Tests behavior, not implementation details.
|
|
4
|
-
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
5
4
|
skills:
|
|
6
5
|
- test-strategy
|
|
7
6
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: verification-specialist
|
|
3
3
|
description: Verification specialist agent. Discovers project tooling and executes verification for all required types. Plans and executes empirical proof that work is done by running the actual system and observing results.
|
|
4
|
-
tools: Read, Write, Edit, Bash, Grep, Glob
|
|
5
4
|
skills:
|
|
6
5
|
- verification-lifecycle
|
|
7
6
|
- jira-journey
|