@distributionos/cli 0.1.7 → 0.1.8
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 +1 -1
- package/package.json +1 -1
- package/src/constants.js +5 -3
- package/src/plan.js +1 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ Installer for connecting an app repo to DistributionOS.
|
|
|
6
6
|
npx @distributionos/cli setup --app <appId>
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
Default setup opens the DistributionOS MCP OAuth approval flow when needed, then prints a
|
|
9
|
+
Default setup opens the DistributionOS MCP OAuth approval flow when needed, then prints a setup review first. In an interactive terminal, approve the plan to apply the managed setup changes. In non-interactive agent runs, use `--apply` only after reviewing the setup output.
|
|
10
10
|
|
|
11
11
|
Agents that support installable skills can also load the public DistributionOS agent skill before using the CLI:
|
|
12
12
|
|
package/package.json
CHANGED
package/src/constants.js
CHANGED
|
@@ -48,9 +48,11 @@ export const PRIVATE_ROUTE_PATTERNS = [
|
|
|
48
48
|
'/products/**',
|
|
49
49
|
'/project/**',
|
|
50
50
|
'/projects/**',
|
|
51
|
-
'/workspace/**',
|
|
52
|
-
'/workspaces/**',
|
|
53
|
-
'/
|
|
51
|
+
'/workspace/**',
|
|
52
|
+
'/workspaces/**',
|
|
53
|
+
'/workflow/**',
|
|
54
|
+
'/workflows/**',
|
|
55
|
+
'/customer/**',
|
|
54
56
|
'/customers/**',
|
|
55
57
|
'/client/**',
|
|
56
58
|
'/clients/**',
|
package/src/plan.js
CHANGED
|
@@ -39,7 +39,7 @@ export async function createSetupPlan(options) {
|
|
|
39
39
|
return {
|
|
40
40
|
appId,
|
|
41
41
|
cwd,
|
|
42
|
-
mode: options.apply ? 'apply' : '
|
|
42
|
+
mode: options.apply ? 'apply' : 'review',
|
|
43
43
|
packageName: CLI_PACKAGE_NAME,
|
|
44
44
|
futureCommand: buildSetupCommand(appId),
|
|
45
45
|
localCommand: `npm run cli:setup -- --app ${appId}`,
|