@appfleet-cli/cli 0.1.0
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 +14 -0
- package/dist/appfleet.d.ts +4 -0
- package/dist/appfleet.js +12253 -0
- package/dist/audit.d.ts +10 -0
- package/dist/audit.js +85 -0
- package/dist/billing-cost.d.ts +8 -0
- package/dist/billing-cost.js +186 -0
- package/dist/cloud-session.d.ts +124 -0
- package/dist/cloud-session.js +1819 -0
- package/dist/command-registry.d.ts +18 -0
- package/dist/command-registry.js +1067 -0
- package/dist/demo-fixture.d.ts +11 -0
- package/dist/demo-fixture.js +39 -0
- package/dist/generate-cli-docs.d.ts +1 -0
- package/dist/generate-cli-docs.js +94 -0
- package/dist/health.d.ts +8 -0
- package/dist/health.js +60 -0
- package/dist/local-vault.d.ts +75 -0
- package/dist/local-vault.js +1169 -0
- package/dist/operations.d.ts +8 -0
- package/dist/operations.js +220 -0
- package/dist/project-memory.d.ts +138 -0
- package/dist/project-memory.js +1529 -0
- package/dist/prototype-inject.d.ts +21 -0
- package/dist/prototype-inject.js +170 -0
- package/dist/provider-integrations.d.ts +8 -0
- package/dist/provider-integrations.js +197 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# AppFleet CLI
|
|
2
|
+
|
|
3
|
+
This package owns the production-shaped `appfleet` binary.
|
|
4
|
+
|
|
5
|
+
The package build emits `dist/appfleet.js` from the checked TypeScript command
|
|
6
|
+
registry and keeps the same zero-secret boundaries as repo-local execution.
|
|
7
|
+
Packaging is dry-run verified with:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
pnpm --filter @appfleet-cli/cli pack:dry-run
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The binary stores safe project/session metadata only unless a command explicitly
|
|
14
|
+
uses the encrypted local vault and user-provided unlock material.
|