pressship 0.1.12 → 0.1.14

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 (57) hide show
  1. package/README.md +13 -0
  2. package/assets/web/app.js +7322 -0
  3. package/assets/web/harness-sdk-icon-mono.svg +33 -0
  4. package/assets/web/harness-sdk-icon.svg +120 -0
  5. package/assets/web/index.html +392 -0
  6. package/assets/web/style.css +7906 -0
  7. package/dist/cli.js +14 -0
  8. package/dist/cli.js.map +1 -1
  9. package/dist/plugin/demo.d.ts +75 -4
  10. package/dist/plugin/demo.js +520 -31
  11. package/dist/plugin/demo.js.map +1 -1
  12. package/dist/utils/paths.d.ts +5 -0
  13. package/dist/utils/paths.js +15 -0
  14. package/dist/utils/paths.js.map +1 -1
  15. package/dist/web/ai-assistance.d.ts +70 -0
  16. package/dist/web/ai-assistance.js +262 -0
  17. package/dist/web/ai-assistance.js.map +1 -0
  18. package/dist/web/index.d.ts +9 -0
  19. package/dist/web/index.js +34 -0
  20. package/dist/web/index.js.map +1 -0
  21. package/dist/web/jobs.d.ts +33 -0
  22. package/dist/web/jobs.js +155 -0
  23. package/dist/web/jobs.js.map +1 -0
  24. package/dist/web/open-url.d.ts +1 -0
  25. package/dist/web/open-url.js +13 -0
  26. package/dist/web/open-url.js.map +1 -0
  27. package/dist/web/plugin-check-state.d.ts +47 -0
  28. package/dist/web/plugin-check-state.js +107 -0
  29. package/dist/web/plugin-check-state.js.map +1 -0
  30. package/dist/web/plugin-check.d.ts +11 -0
  31. package/dist/web/plugin-check.js +124 -0
  32. package/dist/web/plugin-check.js.map +1 -0
  33. package/dist/web/ports.d.ts +2 -0
  34. package/dist/web/ports.js +38 -0
  35. package/dist/web/ports.js.map +1 -0
  36. package/dist/web/registry.d.ts +49 -0
  37. package/dist/web/registry.js +106 -0
  38. package/dist/web/registry.js.map +1 -0
  39. package/dist/web/release.d.ts +87 -0
  40. package/dist/web/release.js +417 -0
  41. package/dist/web/release.js.map +1 -0
  42. package/dist/web/server.d.ts +31 -0
  43. package/dist/web/server.js +1453 -0
  44. package/dist/web/server.js.map +1 -0
  45. package/dist/web/settings.d.ts +36 -0
  46. package/dist/web/settings.js +72 -0
  47. package/dist/web/settings.js.map +1 -0
  48. package/dist/web/version-state.d.ts +28 -0
  49. package/dist/web/version-state.js +118 -0
  50. package/dist/web/version-state.js.map +1 -0
  51. package/dist/wordpress-org/publish.d.ts +1 -0
  52. package/dist/wordpress-org/publish.js +4 -2
  53. package/dist/wordpress-org/publish.js.map +1 -1
  54. package/dist/wordpress-org/submit.d.ts +1 -0
  55. package/dist/wordpress-org/submit.js +7 -5
  56. package/dist/wordpress-org/submit.js.map +1 -1
  57. package/package.json +4 -1
package/README.md CHANGED
@@ -94,6 +94,7 @@ Playwright Chromium is installed automatically the first time browser automation
94
94
  | `pressship info` | Inspect local plugin metadata or hosted WordPress.org plugin info. |
95
95
  | `pressship ls` | List plugins for the saved account or a public WordPress.org profile. |
96
96
  | `pressship get` | Checkout or update a WordPress.org plugin SVN working copy. |
97
+ | `pressship studio` | Start Pressship Studio for plugin operations, editing, and Playground previews. |
97
98
  | `pressship status` | Read review state from the logged-in developer dashboard. |
98
99
  | `pressship version <patch\|minor\|major>` | Bump the plugin header version and readme stable tag together. |
99
100
  | `pressship verify` | Run readme validation and Plugin Check without creating a zip. |
@@ -251,6 +252,18 @@ pressship publish
251
252
 
252
253
  When Pressship runs from the SVN checkout root, it treats `trunk/` as the plugin directory, bumps the version there, and routes `publish` to the SVN release flow.
253
254
 
255
+ ## Pressship Studio
256
+
257
+ ```bash
258
+ pressship studio
259
+ pressship studio --no-open
260
+ pressship studio --port 9478
261
+ ```
262
+
263
+ `studio` starts a localhost-only Pressship Studio workspace. It lists plugins from the saved WordPress.org session, remembers local plugin paths, clones and updates WordPress.org SVN checkouts, shows plugin metadata and readmes, opens local plugins in a VS Code-style editor, streams Playground output into the Studio terminal, previews Playground in an iframe, checks version state, bumps patch/minor/major versions, and runs dry-run-first publish/release flows.
264
+
265
+ By default it binds to `127.0.0.1`, generates a per-run token for mutating API requests, and uses the same local Pressship config directory as the CLI.
266
+
254
267
  ## Inspecting submission state
255
268
 
256
269
  ```bash