@stackwright-pro/launch-stackwright-pro 0.4.0-alpha.2 → 0.4.0-alpha.3
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 +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -15,14 +15,16 @@ to automatically wire up Pro features:
|
|
|
15
15
|
- MCP server configuration in `.code-puppy.json`
|
|
16
16
|
- Role-based dev scripts (`dev:admin`, `dev:analyst`, `dev:viewer`)
|
|
17
17
|
3. **Post-processing** → Copies Pro templates, adds auth config, generates README
|
|
18
|
+
4. **Auto-install** → `pnpm install` runs automatically after scaffolding —
|
|
19
|
+
citizen developers get a project ready to use without knowing what a package manager is
|
|
18
20
|
|
|
19
21
|
## Quick Start
|
|
20
22
|
|
|
21
23
|
```bash
|
|
22
|
-
|
|
24
|
+
pnpx @stackwright-pro/launch-stackwright-pro my-app -y
|
|
25
|
+
# Dependencies install automatically (~7s)
|
|
23
26
|
cd my-app
|
|
24
|
-
|
|
25
|
-
pnpm dev
|
|
27
|
+
uvx stackwright-pro-raft # Start the otter raft
|
|
26
28
|
```
|
|
27
29
|
|
|
28
30
|
### With an OpenAPI Spec
|
|
@@ -128,7 +130,7 @@ For local development (before PyPI publish):
|
|
|
128
130
|
|
|
129
131
|
```bash
|
|
130
132
|
pip install -e ./python[tui]
|
|
131
|
-
python -m stackwright_pro.raft.
|
|
133
|
+
python -m stackwright_pro.raft.cli foreman
|
|
132
134
|
```
|
|
133
135
|
|
|
134
|
-
The raft uses a Rich terminal UI for all user interaction and calls code-puppy as a one-shot subprocess for creative LLM tasks. It reads otter configs from `node_modules/@stackwright-pro/otters/`.
|
|
136
|
+
The raft uses a Rich terminal UI for all user interaction and calls code-puppy as a one-shot subprocess for creative LLM tasks. It reads otter configs from `node_modules/@stackwright-pro/otters/`. Note: `server` starts the passive Clarification Protocol HTTP listener (for agentic/remote use). `cli foreman` is the interactive entry point that runs the full otter orchestration pipeline.
|
package/package.json
CHANGED