@insforge/cli 0.1.79 → 0.1.81
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 +10 -8
- package/dist/index.js +206 -502
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -674,17 +674,19 @@ Skill files are written to per-agent directories (e.g. `.claude/`, `.cursor/`, `
|
|
|
674
674
|
|
|
675
675
|
The CLI reports anonymous usage events to [PostHog](https://posthog.com) so we can understand which features are being used and prioritize improvements.
|
|
676
676
|
|
|
677
|
-
|
|
677
|
+
We capture only non-sensitive metadata: the command name, subcommand, outcome (`success`, `applied`, `aborted`, `dry_run`, `no_changes`, `all_skipped`, `error`), flag shape (e.g. `dry_run`, `json_mode`), section names from `insforge.toml` schema (e.g. `auth.smtp`), region, and an OSS-vs-cloud flag. We never send SQL, TOML file contents, credentials, environment variable values, or any free text you type.
|
|
678
|
+
|
|
679
|
+
If you build the CLI from source without setting `POSTHOG_API_KEY` at build time, analytics become a no-op automatically.
|
|
678
680
|
|
|
679
681
|
## Environment Variables
|
|
680
682
|
|
|
681
|
-
| Variable | Description
|
|
682
|
-
| ----------------------- |
|
|
683
|
-
| `INSFORGE_ACCESS_TOKEN` | Override the stored access token
|
|
684
|
-
| `INSFORGE_PROJECT_ID` | Override the linked project ID
|
|
685
|
-
| `INSFORGE_API_URL` | Override the Platform API URL
|
|
686
|
-
| `INSFORGE_EMAIL` | Email for non-interactive login
|
|
687
|
-
| `INSFORGE_PASSWORD` | Password for non-interactive login
|
|
683
|
+
| Variable | Description |
|
|
684
|
+
| ----------------------- | --------------------------------------------------------------- |
|
|
685
|
+
| `INSFORGE_ACCESS_TOKEN` | Override the stored access token |
|
|
686
|
+
| `INSFORGE_PROJECT_ID` | Override the linked project ID |
|
|
687
|
+
| `INSFORGE_API_URL` | Override the Platform API URL |
|
|
688
|
+
| `INSFORGE_EMAIL` | Email for non-interactive login |
|
|
689
|
+
| `INSFORGE_PASSWORD` | Password for non-interactive login |
|
|
688
690
|
|
|
689
691
|
## Non-Interactive / CI Usage
|
|
690
692
|
|