smartlisa 0.1.14 → 0.1.15

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.15",
5
5
  "author": {
6
6
  "name": "Rodrigo Klosowski",
7
7
  "url": "https://rklosowski.com/"
package/README.md CHANGED
@@ -3,19 +3,17 @@
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
+ ![Lisa Banner](lisa-banner.jpg)
12
7
 
13
- "I'll handle the planning, you handle the coding."
8
+ *Lisa keeps it organized. The Ralphs get it done.*
14
9
 
15
- AI-powered planning for Claude Code
16
- ```
10
+ ---
11
+
12
+ **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
13
 
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.
14
+ **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.
15
+
16
+ **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
17
 
20
18
  ## Installation
21
19
 
@@ -25,6 +23,15 @@ Lisa is the smart one. She breaks down complex projects into **Milestones → Ep
25
23
  npm install -g smartlisa
26
24
  ```
27
25
 
26
+ ```
27
+ _ ___ ____ _
28
+ | | |_ _/ ___| / \
29
+ | | | |\___ \ / _ \
30
+ | |___ | | ___) / ___ \
31
+ |_____|___|____/_/ \_\
32
+
33
+ ```
34
+
28
35
  ### Claude Code Skills
29
36
 
30
37
  Lisa works as a Claude Code skill. Choose one installation method:
@@ -74,35 +81,77 @@ lisa status show E1.S2 # Details for a specific item
74
81
  lisa discover init # Start a new project
75
82
  lisa discover # Continue discovery
76
83
 
77
- lisa plan milestones # View roadmap
78
- lisa plan add-epic # Add a feature
84
+ lisa plan milestones # View roadmap
85
+ lisa plan add-epic # Add a feature
79
86
  lisa plan generate-stories # Create stories from PRD
80
87
 
81
- lisa feedback mark E1.S2 done # Update status
82
- lisa validate # Check plan integrity
88
+ lisa feedback mark E1.S2 done # Update status
89
+ lisa validate # Check plan integrity
90
+ ```
91
+
92
+ ### LLM as Runtime
93
+
94
+ 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.
95
+
96
+ ```
97
+ $ lisa status board --milestone M1
98
+
99
+ ═══ Lisa Board ═══
100
+
101
+ TODO IN_PROGRESS REVIEW DONE
102
+ ─────────────────────────────────────────────────
103
+ E1.S3 E1.S2 E1.S1
104
+ E2.S1
105
+ E2.S2
106
+ ```
107
+
108
+ ```
109
+ $ lisa status show E1.S2
110
+
111
+ ═══ Story: E1.S2 ═══
112
+ Add login form
113
+
114
+ Epic: Authentication
115
+ Status: in_progress
116
+ Type: feature
117
+
118
+ Description
119
+ Create login form with email/password fields and validation
120
+
121
+ Acceptance Criteria
122
+ [ ] Email field with format validation
123
+ [ ] Password field with show/hide toggle
124
+ [ ] "Remember me" checkbox persists session
125
+ [ ] Error messages display below fields
126
+ [ ] Loading spinner during submission
127
+
128
+ Architecture Context (from architecture.md)
129
+ ## Authentication Flow
130
+ - JWT tokens stored in httpOnly cookies
131
+ - Refresh token rotation on each request
132
+ ...
83
133
  ```
84
134
 
135
+ 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.
136
+
85
137
  ## How It Works
86
138
 
87
139
  ```
88
140
  Project
89
- └── Milestone (M1) # "MVP", "Beta", "Launch"
90
- └── Epic (E1) # "Auth", "Payments"
91
- └── Story (E1.S1) # "Add login form"
141
+ └── Milestone (M1) # "MVP", "Beta", "Launch"
142
+ └── Epic (E1) # "Auth", "Payments"
143
+ ├── prd.md # Full requirements
144
+ ├── architecture.md # Technical design
145
+ └── Story (E1.S1) # "Add login form"
92
146
  ```
93
147
 
148
+ 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.
149
+
94
150
  Stories flow: `todo → in_progress → review → done`
95
151
 
96
- All data lives in `.lisa/` — version it, share it, let Claude pick up where you left off.
152
+ All data lives in `.lisa/` — version it, share it, let any agent pick up where the last one left off.
97
153
 
98
- ## Development
99
154
 
100
- ```bash
101
- npm install
102
- npm run dev # Watch mode
103
- npm test # Run tests
104
- npm run ci # Full checks
105
- ```
106
155
 
107
156
  ## License
108
157
 
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.15",
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.15",
4
4
  "description": "AI-powered planning system for Claude Code",
5
5
  "type": "module",
6
6
  "license": "MIT",