smartlisa 0.1.14 → 0.1.16

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lisa",
3
3
  "description": "Project planning with milestones, epics, and stories. Break down work, track progress, and implement with full context.",
4
- "version": "0.1.14",
4
+ "version": "0.1.16",
5
5
  "author": {
6
6
  "name": "Rodrigo Klosowski",
7
7
  "url": "https://rklosowski.com/"
package/README.md CHANGED
@@ -3,19 +3,19 @@
3
3
  [![npm version](https://img.shields.io/npm/v/smartlisa.svg)](https://www.npmjs.com/package/smartlisa)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- ```
7
- _ ___ ____ _
8
- | | |_ _/ ___| / \
9
- | | | |\___ \ / _ \
10
- | |___ | | ___) / ___ \
11
- |_____|___|____/_/ \_\
6
+ **[Read the blog post: Why I Built Lisa](https://blog.rklosowski.com/why-i-built-lisa-a-project-manager-for-the-age-of-ai-agents/)**
12
7
 
13
- "I'll handle the planning, you handle the coding."
8
+ ![Lisa Banner](lisa-banner.jpg)
14
9
 
15
- AI-powered planning for Claude Code
16
- ```
10
+ *Lisa keeps it organized. The Ralphs get it done.*
11
+
12
+ ---
13
+
14
+ **Meet Lisa.** The smart AI project manager that never loses context. She breaks down complex projects into **Milestones → Epics → Stories** and hands off tasks — to Claude, your dev team, Linear, or a swarm of [Ralph Wiggum loops](https://github.com/ghuntley/how-to-ralph-wiggum) running overnight.
17
15
 
18
- Lisa is the smart one. She breaks down complex projects into **Milestones Epics Stories** and hands off tasks to Claude, one story at a time.
16
+ **One planner. Any executor.** Whether it's a senior engineer, a junior dev, or an AI agent bumping into walls until tests pass Lisa doesn't care who picks up the card. She just needs it done.
17
+
18
+ **The new bottleneck isn't coding.** AI writes code faster than teams can plan and review it. Lisa helps PMs, tech leads, and solo devs break work into well-scoped stories *before* the Ralphs start running — so you're not scrambling to keep up with your own agents.
19
19
 
20
20
  ## Installation
21
21
 
@@ -25,6 +25,15 @@ Lisa is the smart one. She breaks down complex projects into **Milestones → Ep
25
25
  npm install -g smartlisa
26
26
  ```
27
27
 
28
+ ```
29
+ _ ___ ____ _
30
+ | | |_ _/ ___| / \
31
+ | | | |\___ \ / _ \
32
+ | |___ | | ___) / ___ \
33
+ |_____|___|____/_/ \_\
34
+
35
+ ```
36
+
28
37
  ### Claude Code Skills
29
38
 
30
39
  Lisa works as a Claude Code skill. Choose one installation method:
@@ -74,35 +83,77 @@ lisa status show E1.S2 # Details for a specific item
74
83
  lisa discover init # Start a new project
75
84
  lisa discover # Continue discovery
76
85
 
77
- lisa plan milestones # View roadmap
78
- lisa plan add-epic # Add a feature
86
+ lisa plan milestones # View roadmap
87
+ lisa plan add-epic # Add a feature
79
88
  lisa plan generate-stories # Create stories from PRD
80
89
 
81
- lisa feedback mark E1.S2 done # Update status
82
- lisa validate # Check plan integrity
90
+ lisa feedback mark E1.S2 done # Update status
91
+ lisa validate # Check plan integrity
92
+ ```
93
+
94
+ ### LLM as Runtime
95
+
96
+ Lisa treats the AI as an operating system. Every command returns structured context that both humans and agents can read — same interface, same data, different consumer.
97
+
98
+ ```
99
+ $ lisa status board --milestone M1
100
+
101
+ ═══ Lisa Board ═══
102
+
103
+ TODO IN_PROGRESS REVIEW DONE
104
+ ─────────────────────────────────────────────────
105
+ E1.S3 E1.S2 E1.S1
106
+ E2.S1
107
+ E2.S2
108
+ ```
109
+
110
+ ```
111
+ $ lisa status show E1.S2
112
+
113
+ ═══ Story: E1.S2 ═══
114
+ Add login form
115
+
116
+ Epic: Authentication
117
+ Status: in_progress
118
+ Type: feature
119
+
120
+ Description
121
+ Create login form with email/password fields and validation
122
+
123
+ Acceptance Criteria
124
+ [ ] Email field with format validation
125
+ [ ] Password field with show/hide toggle
126
+ [ ] "Remember me" checkbox persists session
127
+ [ ] Error messages display below fields
128
+ [ ] Loading spinner during submission
129
+
130
+ Architecture Context (from architecture.md)
131
+ ## Authentication Flow
132
+ - JWT tokens stored in httpOnly cookies
133
+ - Refresh token rotation on each request
134
+ ...
83
135
  ```
84
136
 
137
+ Context resets. Agents don't remember. **Lisa does.** Any agent can pick up where the last one left off — just run `lisa status` and get full context.
138
+
85
139
  ## How It Works
86
140
 
87
141
  ```
88
142
  Project
89
- └── Milestone (M1) # "MVP", "Beta", "Launch"
90
- └── Epic (E1) # "Auth", "Payments"
91
- └── Story (E1.S1) # "Add login form"
143
+ └── Milestone (M1) # "MVP", "Beta", "Launch"
144
+ └── Epic (E1) # "Auth", "Payments"
145
+ ├── prd.md # Full requirements
146
+ ├── architecture.md # Technical design
147
+ └── Story (E1.S1) # "Add login form"
92
148
  ```
93
149
 
150
+ Each epic carries a full **PRD** and **architecture doc** — the complete context an agent needs to make good decisions. No more "I don't have enough context" excuses.
151
+
94
152
  Stories flow: `todo → in_progress → review → done`
95
153
 
96
- All data lives in `.lisa/` — version it, share it, let Claude pick up where you left off.
154
+ All data lives in `.lisa/` — version it, share it, let any agent pick up where the last one left off.
97
155
 
98
- ## Development
99
156
 
100
- ```bash
101
- npm install
102
- npm run dev # Watch mode
103
- npm test # Run tests
104
- npm run ci # Full checks
105
- ```
106
157
 
107
158
  ## License
108
159
 
package/dist/cli.js CHANGED
@@ -5594,7 +5594,7 @@ async function validateEpic(state, options) {
5594
5594
  // src/core/commands/version.ts
5595
5595
  async function version() {
5596
5596
  const data = {
5597
- version: "0.1.14",
5597
+ version: "0.1.16",
5598
5598
  name: "smartlisa",
5599
5599
  homepage: "https://smartlisa.com",
5600
5600
  repository: "https://github.com/klosowsk/lisa.git"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smartlisa",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "AI-powered planning system for Claude Code",
5
5
  "type": "module",
6
6
  "license": "MIT",