@tommy-ca/lazypi 0.9.0 → 0.10.0
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/README.md +20 -8
- package/bin/lazypi.mjs +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ LazyPi will:
|
|
|
13
13
|
1. Install `pi` for you if it isn't installed yet.
|
|
14
14
|
2. Ask if you want to install all the packages or choose which to install.
|
|
15
15
|
|
|
16
|
-
That setup is the harness core — isolated sub-agents, a structured ask gate, skill visibility, $ skill mention, a long-objective gate, side chat, context budgeting, code simplification review, web research, FFF search, a workflow engine for sub-agent fan-out, and ponytail discipline review. A
|
|
16
|
+
That setup is the harness core — isolated sub-agents, a structured ask gate, skill visibility, $ skill mention, a long-objective gate, side chat, context budgeting, code simplification review, web research, FFF search, a workflow engine for sub-agent fan-out, and ponytail discipline review. A five-package optional tier (targeted LSP diagnostics, interactive shell overlays, autonomous research loops, structured todo tracking, markdown-backed memory) installs on request with `--only optional`. Other extras (skill arguments, memory, MCP, themes) install on demand with `pi install`.
|
|
17
17
|
|
|
18
18
|
That's it. Once done - run `pi` and experience a feature rich coding agent experience.
|
|
19
19
|
|
|
@@ -84,13 +84,25 @@ Shared nav and footer are in `docs/_includes/`. Layouts are in `docs/_layouts/`.
|
|
|
84
84
|
|
|
85
85
|
## Releasing
|
|
86
86
|
|
|
87
|
-
LazyPi
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
-
|
|
93
|
-
|
|
87
|
+
LazyPi ships from `master` with a manual, gate-checked release flow:
|
|
88
|
+
|
|
89
|
+
- Run the gates: `npm test` and `npm run spec:validate`
|
|
90
|
+
- Bump: `npm version <semver> --no-git-tag-version`, commit `<semver>`,
|
|
91
|
+
tag `v<semver>`, push commit and tag
|
|
92
|
+
- Publish interactively (`npm publish --access public`) — the npm account
|
|
93
|
+
enforces 2FA, so publish needs a TTY for the OTP or device-auth flow.
|
|
94
|
+
If publish 404s on the scoped package, the stored token has expired:
|
|
95
|
+
clear it and `npm login` again (npm masks invalid tokens as 404)
|
|
96
|
+
- Create the GitHub release for the tag
|
|
97
|
+
- Validate the published artifact from a neutral directory (outside the
|
|
98
|
+
checkout): `npx -y @tommy-ca/lazypi@<version> --version` and
|
|
99
|
+
`bunx @tommy-ca/lazypi@<version> --version` must both report the
|
|
100
|
+
released version, then `status`/`install --yes` must be idempotent.
|
|
101
|
+
|
|
102
|
+
The repo also carries a release-please workflow intended for CI trusted
|
|
103
|
+
publishing, but it is **not provisioned** (no `NPM_TOKEN` secret), so it
|
|
104
|
+
is not the current publish path. Wire the secret and test the workflow
|
|
105
|
+
before treating releases as automated.
|
|
94
106
|
|
|
95
107
|
---
|
|
96
108
|
|
package/bin/lazypi.mjs
CHANGED
|
@@ -50,6 +50,7 @@ export const PACKAGES = [
|
|
|
50
50
|
{ id: "interactive-shell", category: "optional", source: "npm:pi-interactive-shell", description: "Interactive shell overlays", hint: "Run CLIs and agents in TUI overlays: interactive, hands-free, dispatch supervision." },
|
|
51
51
|
{ id: "autoresearch", category: "optional", source: "npm:pi-autoresearch", legacySources: ["git:github.com/davebcn87/pi-autoresearch"], description: "Autonomous experiment loops", hint: "Iterative optimization runs with hooks, finalize, and convergence tracking." },
|
|
52
52
|
{ id: "todos", category: "optional", source: "npm:pi-manage-todo-list", legacySources: ["git:github.com/tintinweb/pi-manage-todo-list"], description: "Structured todo tracking", hint: "Track multi-step work with live progress widgets and session persistence." },
|
|
53
|
+
{ id: "memory", category: "optional", source: "npm:pi-memory-md", legacySources: ["git:github.com/VandeeFeng/pi-memory-md"], description: "Markdown-backed memory", hint: "Letta-like git-backed memory: persistent context, prompt append, multi-project spaces." },
|
|
53
54
|
];
|
|
54
55
|
|
|
55
56
|
// ---------------------------------------------------------------------------
|
|
@@ -204,7 +205,7 @@ ${bold("Default behaviour:")}
|
|
|
204
205
|
|
|
205
206
|
${bold("Categories:")}
|
|
206
207
|
core the harness control plane: sub-agents, workflows, ask gate, skill visibility, $ mention, goal, side chat, context budget, simplify, web research, fff search, ponytail discipline
|
|
207
|
-
optional only when selected (--only optional, picker, or the everything flow): lsp diagnostics, interactive-shell overlays, autoresearch loops, todo tracking
|
|
208
|
+
optional only when selected (--only optional, picker, or the everything flow): lsp diagnostics, interactive-shell overlays, autoresearch loops, todo tracking, markdown memory
|
|
208
209
|
Non-catalog extras (pi install npm:<source>): skill-args, memory, mcp,
|
|
209
210
|
ralph-wiggum, curated-themes (65 dark themes)
|
|
210
211
|
|