@karmaniverous/stan-cli 0.11.5 → 0.11.7
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 +15 -14
- package/dist/cjs/index.js +1 -1
- package/dist/cli/stan.js +80 -7
- package/dist/mjs/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -100,7 +100,7 @@ scripts:
|
|
|
100
100
|
typecheck: npm run typecheck
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
See [STAN Configuration](
|
|
103
|
+
See [STAN Configuration](./docs-src/configuration.md) for more!
|
|
104
104
|
|
|
105
105
|
---
|
|
106
106
|
|
|
@@ -130,7 +130,7 @@ See [STAN Configuration](https://docs.karmanivero.us/stan/documents/Stan_Configu
|
|
|
130
130
|
stan patch -f file.patch # from file
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
-
See [CLI Usage & Examples](
|
|
133
|
+
See [CLI Usage & Examples](./docs-src/cli-examples.md) for more!
|
|
134
134
|
|
|
135
135
|
---
|
|
136
136
|
|
|
@@ -138,23 +138,24 @@ See [CLI Usage & Examples](https://docs.karmanivero.us/stan/documents/CLI_Usage_
|
|
|
138
138
|
|
|
139
139
|
- [API reference](https://docs.karmanivero.us/stan)
|
|
140
140
|
- Guides:
|
|
141
|
-
- [Getting Started](
|
|
142
|
-
- [The STAN Loop](
|
|
143
|
-
- [CLI Usage & Examples](
|
|
144
|
-
- [Migration — Namespaced Configuration](
|
|
145
|
-
- [Stan Configuration](
|
|
146
|
-
- [Patch Workflow & Diagnostics](
|
|
147
|
-
- [Archives & Snapshots](
|
|
141
|
+
- [Getting Started](./docs-src/getting-started.md) — Install the CLI, initialize a repo, and attach archives in chat. Recommended chat setup: import the STAN GPT agent into TypingMind (bootloader included; requires GPT‑5 access) via [this link](https://www.typingmind.com/characters/c-01K5X5RVA4N1DWBQWWJBYDNX2W).
|
|
142
|
+
- [The STAN Loop](./docs-src/the-stan-loop.md) — How Build & Snapshot → Share & Baseline → Discuss & Patch work together.
|
|
143
|
+
- [CLI Usage & Examples](./docs-src/cli-examples.md) — Common flags and invocation patterns, including `-p`, `-P`, `-S`, `-A`, and `-c`.
|
|
144
|
+
- [Migration — Namespaced Configuration](./docs-src/migration.md) — Upgrade legacy configs using `stan init` (backs up `.bak`; supports `--dry-run`).
|
|
145
|
+
- [Stan Configuration](./docs-src/configuration.md) — All config keys, includes/excludes semantics, and phase‑scoped CLI defaults.
|
|
146
|
+
- [Patch Workflow & Diagnostics](./docs-src/patch-workflow.md) — Unified diff policy, diagnostics envelopes, and assistant expectations.
|
|
147
|
+
- [Archives & Snapshots](./docs-src/archives-and-snapshots.md) — What goes into `archive.tar`/`archive.diff.tar`, combine mode, and snapshot history. Additional references:
|
|
148
148
|
|
|
149
149
|
- The following documents are maintained by STAN and live under `<stanPath>/system/` in your repo:
|
|
150
150
|
- `stan.project.md` contains your evolving project requirements.
|
|
151
151
|
- `stan-todo.md` contains your evolving development plan.
|
|
152
|
+
|
|
152
153
|
- Case studies:
|
|
153
|
-
- [rrstack](
|
|
154
|
-
- Comparison: [Why STAN Over Alternatives?](
|
|
155
|
-
- Tutorial: [Quickstart (End‑to‑End)](
|
|
154
|
+
- [rrstack](./docs-src/case-studies/rrstack.md) — how STAN enabled rapid development in a couple of days.
|
|
155
|
+
- Comparison: [Why STAN Over Alternatives?](./docs-src/why-stan-over-alternatives.md)
|
|
156
|
+
- Tutorial: [Quickstart (End‑to‑End)](./docs-src/tutorial-quickstart.md)
|
|
156
157
|
- FAQ: answers to common questions and pitfalls.
|
|
157
|
-
- Contributing: [Dev Quickstart](
|
|
158
|
+
- Contributing: [Dev Quickstart](./contributing.md)
|
|
158
159
|
|
|
159
160
|
---
|
|
160
161
|
|
|
@@ -168,7 +169,7 @@ See [CLI Usage & Examples](https://docs.karmanivero.us/stan/documents/CLI_Usage_
|
|
|
168
169
|
|
|
169
170
|
## Contributing
|
|
170
171
|
|
|
171
|
-
- See the [Contributing — Dev Quickstart](
|
|
172
|
+
- See the [Contributing — Dev Quickstart](./contributing.md) for local setup and workflow tips.
|
|
172
173
|
|
|
173
174
|
- Keep the loop simple. Each stage ends with one command.
|
|
174
175
|
- Favor small, testable modules; treat >300 LOC as design feedback.
|