sandstream-kit 1.0.0 → 1.0.1

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 CHANGED
@@ -584,19 +584,6 @@ For Cline, add the same config to your `cline_mcp_settings.json`.
584
584
  }
585
585
  ```
586
586
 
587
- ## OpenRouter API Key Setup
588
-
589
- kit uses OpenRouter for AI model access via the OpenCode CLI. To set up:
590
-
591
- 1. Get your API key from [OpenRouter](https://openrouter.ai/keys)
592
- 2. Add it to your `.env.local` file:
593
- ```bash
594
- OPENROUTER_API_KEY=<your-openrouter-key>
595
- ```
596
- 3. The key is automatically loaded by `opencode.json`
597
-
598
- **Security Note:** Never commit your API key to git. It's configured as an environment variable in `opencode.json` and should only exist in `.env.local`.
599
-
600
587
  ## Community & Support
601
588
 
602
589
  ### Getting Help
@@ -2,7 +2,7 @@
2
2
  * `kit secrets pull --from <platform> --env <env>` — read env-vars
3
3
  * from a deploy-platform (Vercel / Fly / Cloudflare / GitHub Actions)
4
4
  * and write them into the local vault. Closes the "I forgot what
5
- * value is in Vercel" gap that drove the kjorre incident.
5
+ * value is in the deploy platform" gap that drives real-world secret incidents.
6
6
  *
7
7
  * Read-only by nature of the source side (vendor REST is GET-only here).
8
8
  * Write side honors KIT_READ_ONLY=1 via writeSecretToBackend.
@@ -2,7 +2,7 @@
2
2
  * `kit secrets pull --from <platform> --env <env>` — read env-vars
3
3
  * from a deploy-platform (Vercel / Fly / Cloudflare / GitHub Actions)
4
4
  * and write them into the local vault. Closes the "I forgot what
5
- * value is in Vercel" gap that drove the kjorre incident.
5
+ * value is in the deploy platform" gap that drives real-world secret incidents.
6
6
  *
7
7
  * Read-only by nature of the source side (vendor REST is GET-only here).
8
8
  * Write side honors KIT_READ_ONLY=1 via writeSecretToBackend.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sandstream-kit",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "developer kit. zero LLM, local-first, multi-vault. one command from git clone to working dev environment.",
5
5
  "license": "MIT",
6
6
  "type": "module",