@promptscript/cli 1.4.6 → 1.5.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.
Files changed (43) hide show
  1. package/README.md +71 -14
  2. package/index.js +26799 -21184
  3. package/package.json +1 -1
  4. package/skills/promptscript/SKILL.md +93 -6
  5. package/src/cli.d.ts.map +1 -1
  6. package/src/commands/compile.d.ts.map +1 -1
  7. package/src/commands/diff.d.ts.map +1 -1
  8. package/src/commands/init.d.ts.map +1 -1
  9. package/src/commands/lock.d.ts +16 -0
  10. package/src/commands/lock.d.ts.map +1 -0
  11. package/src/commands/migrate.d.ts +11 -0
  12. package/src/commands/migrate.d.ts.map +1 -0
  13. package/src/commands/registry/add.d.ts +6 -0
  14. package/src/commands/registry/add.d.ts.map +1 -0
  15. package/src/commands/registry/index.d.ts.map +1 -1
  16. package/src/commands/registry/list.d.ts +6 -0
  17. package/src/commands/registry/list.d.ts.map +1 -0
  18. package/src/commands/resolve-cmd.d.ts +9 -0
  19. package/src/commands/resolve-cmd.d.ts.map +1 -0
  20. package/src/commands/update.d.ts +13 -0
  21. package/src/commands/update.d.ts.map +1 -0
  22. package/src/commands/upgrade.d.ts +8 -0
  23. package/src/commands/upgrade.d.ts.map +1 -0
  24. package/src/commands/validate.d.ts +9 -0
  25. package/src/commands/validate.d.ts.map +1 -1
  26. package/src/commands/vendor.d.ts +14 -0
  27. package/src/commands/vendor.d.ts.map +1 -0
  28. package/src/index.d.ts +2 -0
  29. package/src/index.d.ts.map +1 -1
  30. package/src/types.d.ts +60 -0
  31. package/src/types.d.ts.map +1 -1
  32. package/src/utils/ai-tools-detector.d.ts +12 -1
  33. package/src/utils/ai-tools-detector.d.ts.map +1 -1
  34. package/src/utils/backup.d.ts +8 -0
  35. package/src/utils/backup.d.ts.map +1 -0
  36. package/src/utils/clipboard.d.ts +2 -0
  37. package/src/utils/clipboard.d.ts.map +1 -0
  38. package/src/utils/conflict-detector.d.ts +10 -0
  39. package/src/utils/conflict-detector.d.ts.map +1 -0
  40. package/src/utils/markers.d.ts +16 -0
  41. package/src/utils/markers.d.ts.map +1 -0
  42. package/src/utils/migration-prompt.d.ts +7 -0
  43. package/src/utils/migration-prompt.d.ts.map +1 -0
package/README.md CHANGED
@@ -50,8 +50,11 @@ prs import CLAUDE.md
50
50
  # Preview the conversion without writing files
51
51
  prs import .cursorrules --dry-run
52
52
 
53
- # Auto-detect and migrate during project init
54
- prs init --migrate
53
+ # Migrate during project init (interactive gateway)
54
+ prs init
55
+
56
+ # Or use the dedicated migrate command
57
+ prs migrate
55
58
  ```
56
59
 
57
60
  ---
@@ -94,17 +97,28 @@ Run `prs compile` and get correctly formatted output for every AI tool your team
94
97
 
95
98
  ## Commands
96
99
 
97
- | Command | Description |
98
- | :---------------------- | :------------------------------------------- |
99
- | `prs init` | Initialize project with auto-detection |
100
- | `prs compile` | Compile to target AI tool formats |
101
- | `prs compile -w` | Watch mode - recompile on changes |
102
- | `prs compile --dry-run` | Preview changes without writing files |
103
- | `prs validate` | Validate `.prs` files with detailed errors |
104
- | `prs diff` | Show diff between source and compiled output |
105
- | `prs import` | Import existing AI instruction files to .prs |
106
- | `prs pull` | Pull updates from registry |
107
- | `prs update-check` | Check for newer CLI versions |
100
+ | Command | Description |
101
+ | :---------------------- | :-------------------------------------------------- |
102
+ | `prs init` | Initialize project with auto-detection |
103
+ | `prs compile` | Compile to target AI tool formats |
104
+ | `prs compile -w` | Watch mode - recompile on changes |
105
+ | `prs compile --dry-run` | Preview changes without writing files |
106
+ | `prs validate` | Validate `.prs` files with detailed errors |
107
+ | `prs validate --fix` | Auto-fix syntax version mismatches |
108
+ | `prs upgrade` | Upgrade all `.prs` files to latest syntax version |
109
+ | `prs upgrade --dry-run` | Preview upgrade changes without writing files |
110
+ | `prs diff` | Show diff between source and compiled output |
111
+ | `prs import` | Import existing AI instruction files to .prs |
112
+ | `prs migrate` | Migrate existing AI instructions to PromptScript |
113
+ | `prs migrate --static` | Non-interactive static import of all detected files |
114
+ | `prs migrate --llm` | Generate AI-assisted migration prompt |
115
+ | `prs check` | Check configuration and dependencies health |
116
+ | `prs serve` | Start local development server for playground |
117
+ | `prs registry init` | Create a new PromptScript registry |
118
+ | `prs registry validate` | Validate registry structure and manifest |
119
+ | `prs registry publish` | Publish registry to remote |
120
+ | `prs pull` | Pull updates from registry |
121
+ | `prs update-check` | Check for newer CLI versions |
108
122
 
109
123
  ## Key Features
110
124
 
@@ -117,7 +131,7 @@ Run `prs compile` and get correctly formatted output for every AI tool your team
117
131
  - **Overwrite protection** - never accidentally clobbers hand-written files
118
132
  - **Validation** - catch errors before they reach your AI tools
119
133
  - **Registry support** - share configs via Git registries (private or public)
120
- - **AI-assisted migration** - convert existing `CLAUDE.md`, `.cursorrules`, etc.
134
+ - **Migration** - static import or AI-assisted migration of existing `CLAUDE.md`, `.cursorrules`, etc.
121
135
  - **Bundled language skill** - AI agents learn PromptScript syntax via injected SKILL.md
122
136
 
123
137
  ## Supported Targets
@@ -171,6 +185,8 @@ Options:
171
185
  -i, --interactive Force interactive mode
172
186
  -y, --yes Skip prompts, use defaults
173
187
  -f, --force Force reinitialize even if already initialized
188
+ --auto-import Automatically import existing instruction files (static)
189
+ --backup Create .prs-backup/ before migration
174
190
  ```
175
191
 
176
192
  **Auto-detection:** Project name, languages, frameworks, and existing AI tool configurations.
@@ -193,6 +209,8 @@ Options:
193
209
  --dry-run Preview changes without writing files
194
210
  --force Force overwrite existing files without prompts
195
211
  --registry <path> Path or URL to registry
212
+ -c, --config <path> Path to custom config file
213
+ --cwd <dir> Working directory (project root)
196
214
  --verbose Show detailed compilation progress
197
215
  --debug Show debug information (includes verbose)
198
216
  ```
@@ -228,8 +246,47 @@ prs validate [options]
228
246
  Options:
229
247
  --strict Treat warnings as errors
230
248
  --format <format> Output format (text, json)
249
+ --fix Auto-fix syntax version mismatches (bumps declared
250
+ version to the minimum required by used blocks)
251
+ ```
252
+
253
+ `--fix` is conservative: it only raises the `syntax` field in `@meta` to the
254
+ lowest version that satisfies all blocks used in the file. It never downgrades
255
+ and never changes anything other than the version string.
256
+
257
+ ### Upgrade
258
+
259
+ ```bash
260
+ prs upgrade [options]
261
+
262
+ Options:
263
+ --dry-run Preview changes without writing files
231
264
  ```
232
265
 
266
+ Upgrades all `.prs` files in the project to the latest known syntax version.
267
+ Unlike `prs validate --fix` (which only bumps to the minimum required version),
268
+ `upgrade` is aggressive: it sets every file to `LATEST_SYNTAX_VERSION`
269
+ unconditionally. Use `--dry-run` to preview the changes before applying them.
270
+
271
+ ### Migrate
272
+
273
+ ```bash
274
+ prs migrate [options]
275
+
276
+ Options:
277
+ --static Non-interactive static import of all detected files
278
+ --llm Generate AI-assisted migration prompt
279
+ --files <files...> Specific files to import
280
+ ```
281
+
282
+ Alias/shortcut to the init migration path. Detects existing AI instruction files
283
+ (CLAUDE.md, .cursorrules, copilot-instructions.md, etc.) and offers static or
284
+ AI-assisted import into PromptScript format.
285
+
286
+ - `--static` imports all detected candidates without prompts (equivalent to `prs init -y --auto-import`)
287
+ - `--llm` generates a kick-start prompt for AI-assisted migration and copies it to clipboard
288
+ - `--files` selectively imports only specified files
289
+
233
290
  ### Pull Updates
234
291
 
235
292
  ```bash