@karmaniverous/stan-cli 0.12.1 → 0.12.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 +6 -6
- package/dist/cjs/index.js +1 -1
- package/dist/cli/stan.js +228 -129
- package/dist/mjs/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# STAN — STAN Tames Autoregressive Nonsense
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/@karmaniverous/stan-cli)  <!-- TYPEDOC_EXCLUDE --> [](https://docs.karmanivero.us/stan) [](https://github.com/karmaniverous/stan-cli/tree/main/CHANGELOG.md)<!-- /TYPEDOC_EXCLUDE --> [](https://github.com/karmaniverous/stan-cli/tree/main/LICENSE)
|
|
5
|
+
[](https://www.npmjs.com/package/@karmaniverous/stan-cli)  <!-- TYPEDOC_EXCLUDE --> [](https://docs.karmanivero.us/stan) [](https://github.com/karmaniverous/stan-cli/tree/main/CHANGELOG.md)<!-- /TYPEDOC_EXCLUDE --> [](https://github.com/karmaniverous/stan-cli/tree/main/LICENSE)
|
|
6
6
|
|
|
7
7
|

|
|
8
8
|
|
|
@@ -33,7 +33,7 @@ stan init
|
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
- Creates stan.config.yml and scaffolds STAN docs under <stanPath> (default .stan).
|
|
36
|
-
- Adds sensible .gitignore entries for <stanPath> subfolders (including imports/).
|
|
36
|
+
- Adds sensible .gitignore entries for <stanPath> subfolders (including imports/).
|
|
37
37
|
|
|
38
38
|
### 3. Run the loop
|
|
39
39
|
|
|
@@ -138,23 +138,23 @@ See [CLI Usage & Examples](./guides/cli-examples.md) for more!
|
|
|
138
138
|
|
|
139
139
|
- [API reference](https://docs.karmanivero.us/stan)
|
|
140
140
|
- Guides:
|
|
141
|
-
- [Getting Started](./guides/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://
|
|
141
|
+
- [Getting Started](./guides/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.2 access) via [this link](https://cloud.typingmind.com/characters/c-01KDYW9NG2KGMFN7FTC4MHRSKB).
|
|
142
142
|
- [The STAN Loop](./guides/the-stan-loop.md) — How Build & Snapshot → Share & Baseline → Discuss & Patch work together.
|
|
143
143
|
- [CLI Usage & Examples](./guides/cli-examples.md) — Common flags and invocation patterns, including `-p`, `-P`, `-S`, `-A`, and `-c`.
|
|
144
144
|
- [Migration — Namespaced Configuration](./guides/migration.md) — Upgrade legacy configs using `stan init` (backs up `.bak`; supports `--dry-run`).
|
|
145
145
|
- [Stan Configuration](./guides/configuration.md) — All config keys, includes/excludes semantics, and phase‑scoped CLI defaults.
|
|
146
146
|
- [Patch Workflow & Diagnostics](./guides/patch-workflow.md) — Unified diff policy, diagnostics envelopes, and assistant expectations.
|
|
147
147
|
- [Archives & Snapshots](./guides/archives-and-snapshots.md) — What goes into `archive.tar`/`archive.diff.tar`, combine mode, and snapshot history. Additional references:
|
|
148
|
-
- [Bootloader & Assistant Setup](./guides/bootloader.md) — How the assistant loads `.stan/system/stan.system.md` from attached archives.
|
|
148
|
+
- [Bootloader & Assistant Setup](./guides/bootloader.md) — How the assistant loads `.stan/system/stan.system.md` from attached archives.
|
|
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
|
-
- `stan.todo.md` contains your evolving development plan.
|
|
151
|
+
- `stan.todo.md` contains your evolving development plan.
|
|
152
152
|
|
|
153
153
|
- Case studies:
|
|
154
154
|
- [rrstack](./guides/case-studies/rrstack.md) — how STAN enabled rapid development in a couple of days.
|
|
155
155
|
- Comparison: [Why STAN Over Alternatives?](./guides/why-stan-over-alternatives.md)
|
|
156
156
|
- Tutorial: [Quickstart (End‑to‑End)](./guides/tutorial-quickstart.md)
|
|
157
|
-
- [FAQ](./guides/faq.md) — answers to common questions and pitfalls.
|
|
157
|
+
- [FAQ](./guides/faq.md) — answers to common questions and pitfalls.
|
|
158
158
|
- Contributing: [Dev Quickstart](./contributing.md)
|
|
159
159
|
|
|
160
160
|
---
|