@deskwork/cli 0.9.5 → 0.9.7

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,21 @@
1
+ ## @deskwork/cli
2
+
3
+ Editorial calendar lifecycle CLI for the [deskwork](https://github.com/audiocontrol-org/deskwork) Claude Code plugin. Drives the editorial pipeline: capture ideas, plan drafts, run a structured review loop, publish, and track distribution.
4
+
5
+ ### Audience
6
+
7
+ This package backs the [`deskwork`](https://github.com/audiocontrol-org/deskwork/tree/main/plugins/deskwork) Claude Code plugin shell. Direct npm install of `@deskwork/cli` into a non-deskwork host is unusual — the canonical entry point is the plugin shell, which `npm install`s this package on first run and dispatches via its bin shim.
8
+
9
+ If you want the editorial calendar lifecycle inside Claude Code, follow the marketplace install instructions at the [marketplace repo](https://github.com/audiocontrol-org/deskwork#install).
10
+
11
+ ### Subcommands
12
+
13
+ The CLI exposes a single dispatcher that routes to ~17 subcommands: `add`, `plan`, `outline`, `draft`, `publish`, `ingest`, `review-start`, `iterate`, `approve`, `review-cancel`, `review-help`, `review-report`, `shortform-start`, `distribute`, `customize`, `doctor`, `install`. Each maps to a Claude Code skill under the `/deskwork:` namespace; the skills are the operator-facing surface and documented in the plugin shell.
14
+
15
+ ### Source
16
+
17
+ Repository: [`audiocontrol-org/deskwork`](https://github.com/audiocontrol-org/deskwork). The CLI source lives at [`packages/cli/`](https://github.com/audiocontrol-org/deskwork/tree/main/packages/cli); shared core logic in [`@deskwork/core`](https://www.npmjs.com/package/@deskwork/core); the optional web studio in [`@deskwork/studio`](https://www.npmjs.com/package/@deskwork/studio).
18
+
19
+ ### License
20
+
21
+ GPL-3.0-or-later — same as the monorepo. See [`LICENSE`](https://github.com/audiocontrol-org/deskwork/blob/main/LICENSE) for details.
@@ -2,9 +2,9 @@
2
2
  * deskwork customize — copy a plugin-default file into the project's
3
3
  * `.deskwork/<category>/<name>.ts` so the operator can edit it.
4
4
  *
5
- * Phase 23f. Categories:
6
- * - templates → copies `packages/studio/src/pages/<name>.ts`
7
- * - doctor → copies `packages/core/src/doctor/rules/<name>.ts`
5
+ * Categories:
6
+ * - templates → copies `<@deskwork/studio>/dist/pages/<name>.ts`
7
+ * - doctor → copies `<@deskwork/core>/dist/doctor/rules/<name>.ts`
8
8
  * - prompts → reserved (no default-source mapping yet)
9
9
  *
10
10
  * Usage (after the dispatcher injects projectRoot):
@@ -13,7 +13,7 @@
13
13
  * The command:
14
14
  * 1. Resolves the plugin-default source file via `import.meta.resolve`
15
15
  * against the published package paths so it works in both
16
- * workspace dev and marketplace install.
16
+ * workspace dev and npm-installed plugins.
17
17
  * 2. Copies the source verbatim into
18
18
  * `<projectRoot>/.deskwork/<category>/<name>.ts`, creating the
19
19
  * directory tree as needed.
@@ -28,20 +28,5 @@
28
28
  * have defaults (best-effort).
29
29
  * - Destination file already exists → exit 1, refuse to overwrite.
30
30
  */
31
- /**
32
- * Add `@deskwork/studio/server.ts` resolution support. The studio
33
- * package's `package.json` lists `bin: { "deskwork-studio": "./src/server.ts" }`
34
- * but no top-level `exports.server.ts`. We work around that by
35
- * resolving the package root through `package.json#main` if available;
36
- * here we cheat and use the studio's own `import.meta` from the
37
- * compiled bundle. To keep this implementation simple, we resolve via
38
- * the studio package's `package.json` root and then join the source
39
- * tree path.
40
- *
41
- * (This doc-comment reserves the explanation; the actual logic above
42
- * uses `@deskwork/studio/server.ts`. Studio's package.json must list
43
- * an exports entry for that subpath. If it doesn't yet, resolveDefaultSource
44
- * will throw a clear error and the test will catch the omission.)
45
- */
46
31
  export declare function run(argv: string[]): Promise<void>;
47
32
  //# sourceMappingURL=customize.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"customize.d.ts","sourceRoot":"","sources":["../../src/commands/customize.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AAiHH;;;;;;;;;;;;;;GAcG;AAEH,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA8DvD"}
1
+ {"version":3,"file":"customize.d.ts","sourceRoot":"","sources":["../../src/commands/customize.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AAwHH,wBAAsB,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CA8DvD"}
@@ -2,9 +2,9 @@
2
2
  * deskwork customize — copy a plugin-default file into the project's
3
3
  * `.deskwork/<category>/<name>.ts` so the operator can edit it.
4
4
  *
5
- * Phase 23f. Categories:
6
- * - templates → copies `packages/studio/src/pages/<name>.ts`
7
- * - doctor → copies `packages/core/src/doctor/rules/<name>.ts`
5
+ * Categories:
6
+ * - templates → copies `<@deskwork/studio>/dist/pages/<name>.ts`
7
+ * - doctor → copies `<@deskwork/core>/dist/doctor/rules/<name>.ts`
8
8
  * - prompts → reserved (no default-source mapping yet)
9
9
  *
10
10
  * Usage (after the dispatcher injects projectRoot):
@@ -13,7 +13,7 @@
13
13
  * The command:
14
14
  * 1. Resolves the plugin-default source file via `import.meta.resolve`
15
15
  * against the published package paths so it works in both
16
- * workspace dev and marketplace install.
16
+ * workspace dev and npm-installed plugins.
17
17
  * 2. Copies the source verbatim into
18
18
  * `<projectRoot>/.deskwork/<category>/<name>.ts`, creating the
19
19
  * directory tree as needed.
@@ -72,15 +72,18 @@ function resolvePackageRoot(packageName) {
72
72
  * Find the source-of-truth file for a customize request. Returns an
73
73
  * absolute path or throws. The mapping per category:
74
74
  *
75
- * templates → @deskwork/studio package root, then src/pages/<name>.ts.
76
- * doctor → @deskwork/core package root, then src/doctor/rules/<name>.ts.
75
+ * templates → @deskwork/studio package root, then dist/pages/<name>.ts.
76
+ * doctor → @deskwork/core package root, then dist/doctor/rules/<name>.ts.
77
77
  * prompts → throws (reserved).
78
78
  *
79
- * Note: this assumes the published package ships its `src/` tree.
80
- * Phase 26b's `files: ["dist", ...]` whitelist drops `src/`, so the
81
- * customize command currently works only against workspace-symlinked
82
- * packages (the dev path). A follow-up issue tracks shipping the
83
- * customize sources alongside dist or vendoring template snapshots.
79
+ * The build pipeline (`packages/studio/package.json` and
80
+ * `packages/core/package.json` build scripts) copies the `.ts` source
81
+ * files verbatim from `src/<category>/` into `dist/<category>/`
82
+ * alongside the compiled `.js`/`.d.ts`. This keeps the customize
83
+ * anchor inside the package's `files` whitelist (`["dist", ...]`),
84
+ * so customize works for npm-installed adopters as well as workspace
85
+ * dev. Adopters get the readable `.ts` content because cp preserves
86
+ * it byte-for-byte.
84
87
  */
85
88
  function resolveDefaultSource(category, name) {
86
89
  if (category === 'prompts') {
@@ -88,7 +91,7 @@ function resolveDefaultSource(category, name) {
88
91
  }
89
92
  if (category === 'templates') {
90
93
  const studioRoot = resolvePackageRoot('@deskwork/studio');
91
- const candidate = resolve(studioRoot, 'src', 'pages', `${name}.ts`);
94
+ const candidate = resolve(studioRoot, 'dist', 'pages', `${name}.ts`);
92
95
  if (!existsSync(candidate)) {
93
96
  throw new Error(`no built-in template named "${name}". Available templates: ${listAvailable(dirname(candidate))}`);
94
97
  }
@@ -96,7 +99,7 @@ function resolveDefaultSource(category, name) {
96
99
  }
97
100
  // doctor
98
101
  const coreRoot = resolvePackageRoot('@deskwork/core');
99
- const candidate = resolve(coreRoot, 'src', 'doctor', 'rules', `${name}.ts`);
102
+ const candidate = resolve(coreRoot, 'dist', 'doctor', 'rules', `${name}.ts`);
100
103
  if (!existsSync(candidate)) {
101
104
  throw new Error(`no built-in doctor rule named "${name}". Available rules: ${listAvailable(dirname(candidate))}`);
102
105
  }
@@ -110,27 +113,16 @@ function resolveDefaultSource(category, name) {
110
113
  function listAvailable(dir) {
111
114
  if (!existsSync(dir))
112
115
  return '(none — broken install)';
116
+ // Filter to .ts files, excluding TypeScript declaration files (.d.ts)
117
+ // and source maps. The customize anchor is the verbatim source-copy
118
+ // shipped under dist/<category>/<name>.ts; declaration files alongside
119
+ // it would surface as bogus "available templates" entries.
113
120
  const entries = readdirSync(dir)
114
- .filter((n) => n.endsWith('.ts'))
121
+ .filter((n) => n.endsWith('.ts') && !n.endsWith('.d.ts'))
115
122
  .map((n) => n.slice(0, -'.ts'.length))
116
123
  .sort();
117
124
  return entries.join(', ');
118
125
  }
119
- /**
120
- * Add `@deskwork/studio/server.ts` resolution support. The studio
121
- * package's `package.json` lists `bin: { "deskwork-studio": "./src/server.ts" }`
122
- * but no top-level `exports.server.ts`. We work around that by
123
- * resolving the package root through `package.json#main` if available;
124
- * here we cheat and use the studio's own `import.meta` from the
125
- * compiled bundle. To keep this implementation simple, we resolve via
126
- * the studio package's `package.json` root and then join the source
127
- * tree path.
128
- *
129
- * (This doc-comment reserves the explanation; the actual logic above
130
- * uses `@deskwork/studio/server.ts`. Studio's package.json must list
131
- * an exports entry for that subpath. If it doesn't yet, resolveDefaultSource
132
- * will throw a clear error and the test will catch the omission.)
133
- */
134
126
  export async function run(argv) {
135
127
  // Argv shape after dispatcher inject:
136
128
  // [<project-root>, <category>, <name>]
@@ -1 +1 @@
1
- {"version":3,"file":"customize.js","sourceRoot":"","sources":["../../src/commands/customize.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"customize.js","sourceRoot":"","sources":["../../src/commands/customize.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deskwork/cli",
3
- "version": "0.9.5",
3
+ "version": "0.9.7",
4
4
  "type": "module",
5
5
  "description": "Editorial calendar + review CLI for the deskwork plugin",
6
6
  "homepage": "https://github.com/audiocontrol-org/deskwork#readme",
@@ -33,7 +33,7 @@
33
33
  "typecheck": "tsc --noEmit"
34
34
  },
35
35
  "dependencies": {
36
- "@deskwork/core": "*"
36
+ "@deskwork/core": "0.9.7"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/node": "^22.10.0",