From lisa
Methodology for breaking work into ordered tasks. Each task gets acceptance criteria, verification type, dependencies, and skills required.
npx claudepluginhub codyswanngt/lisa --plugin lisaThis skill uses the workspace's default tool permissions.
Break work into ordered, well-scoped tasks that can be independently implemented and verified.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Break work into ordered, well-scoped tasks that can be independently implemented and verified.
For each task, define what "done" looks like:
Each task must have a verification method. Choose the most appropriate:
| Verification Type | When to Use |
|---|---|
| Unit test | Pure logic, data transformations, utility functions |
| Integration test | Cross-module interactions, database operations, API contracts |
| E2E test | User-facing workflows, multi-service interactions |
| Manual verification | UI/UX behavior, visual correctness, one-time infrastructure changes |
| Build verification | Compilation, type checking, linting, bundle size |
| Deploy verification | Service health checks, smoke tests, monitoring dashboards |
Map each task to the skills needed to complete it. This enables delegation to specialized agents or helps identify what expertise is required.
## Task Breakdown
### Task 1: [imperative description]
- **Acceptance criteria:**
- [specific, measurable criterion]
- [specific, measurable criterion]
- **Verification:** [type] -- [how to verify]
- **Dependencies:** [none | task IDs that must complete first]
- **Skills:** [list of skills needed]
### Task 2: [imperative description]
- **Acceptance criteria:**
- [specific, measurable criterion]
- **Verification:** [type] -- [how to verify]
- **Dependencies:** [Task 1]
- **Skills:** [list of skills needed]
### Execution Order
1. [Task 1, Task 3] (parallel -- no dependencies)
2. [Task 2] (depends on Task 1)
3. [Task 4] (depends on Task 2, Task 3)
### External Dependencies
- [dependency] -- [who owns it] -- [current status]