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 +0 -13
- package/dist/secrets-pull.d.ts +1 -1
- package/dist/secrets-pull.js +1 -1
- package/package.json +1 -1
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
|
package/dist/secrets-pull.d.ts
CHANGED
|
@@ -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
|
|
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/dist/secrets-pull.js
CHANGED
|
@@ -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
|
|
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