@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 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 plan 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 dry-run output.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@distributionos/cli",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "DistributionOS repo setup CLI for agent onboarding and first-party analytics.",
5
5
  "homepage": "https://distributionos.dev",
6
6
  "repository": {
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
- '/customer/**',
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' : 'dry-run',
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}`,