@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 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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ import { Command } from "commander";
3
+ export declare function runAppFleetCli(argv: string[]): Promise<number>;
4
+ export declare function createAppFleetProgram(): Command;