@inspecto-dev/cli 0.3.3 → 0.3.5

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 (46) hide show
  1. package/.turbo/turbo-build.log +7 -7
  2. package/.turbo/turbo-test.log +10594 -4044
  3. package/CHANGELOG.md +28 -0
  4. package/dist/bin.js +36 -2
  5. package/dist/{chunk-LJOKPCPD.js → chunk-7ABJRH3F.js} +1701 -182
  6. package/dist/index.d.ts +69 -4
  7. package/dist/index.js +7 -1
  8. package/package.json +3 -3
  9. package/src/bin.ts +49 -1
  10. package/src/commands/dev-config.ts +109 -0
  11. package/src/commands/doctor.ts +189 -9
  12. package/src/commands/init.ts +10 -3
  13. package/src/commands/integration-automation.ts +2 -0
  14. package/src/commands/integration-host-ide.ts +18 -15
  15. package/src/commands/integration-install.ts +100 -5
  16. package/src/commands/onboard.ts +80 -15
  17. package/src/detect/build-tool.ts +212 -15
  18. package/src/detect/framework.ts +3 -0
  19. package/src/detect/package-manager.ts +1 -1
  20. package/src/index.ts +1 -0
  21. package/src/inject/gitignore.ts +13 -2
  22. package/src/instructions.ts +33 -7
  23. package/src/onboarding/apply.ts +255 -28
  24. package/src/onboarding/nextjs-guidance.ts +257 -0
  25. package/src/onboarding/nuxt-guidance.ts +129 -0
  26. package/src/onboarding/planner.ts +337 -10
  27. package/src/onboarding/session.ts +127 -31
  28. package/src/onboarding/target-resolution.ts +79 -3
  29. package/src/onboarding/umi-guidance.ts +139 -0
  30. package/src/types.ts +58 -3
  31. package/tests/apply.test.ts +553 -0
  32. package/tests/build-tool.test.ts +199 -0
  33. package/tests/dev-config.test.ts +73 -0
  34. package/tests/doctor.test.ts +130 -0
  35. package/tests/init.test.ts +17 -0
  36. package/tests/install-wrapper.test.ts +56 -0
  37. package/tests/instructions.test.ts +10 -6
  38. package/tests/integration-host-ide.test.ts +20 -0
  39. package/tests/integration-install.test.ts +193 -0
  40. package/tests/nextjs-guidance.test.ts +128 -0
  41. package/tests/nuxt-guidance.test.ts +67 -0
  42. package/tests/onboard.test.ts +511 -0
  43. package/tests/plan.test.ts +283 -21
  44. package/tests/runner-script.test.ts +120 -1
  45. package/tests/session-resolve.test.ts +116 -0
  46. package/tests/session.test.ts +120 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @inspecto-dev/cli
2
2
 
3
+ ## 0.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 2be449f: fix: improve cli onboarding and default extension handling
8
+ - Updated dependencies [2be449f]
9
+ - @inspecto-dev/types@0.3.5
10
+
11
+ ## 0.3.4
12
+
13
+ ### Patch Changes
14
+
15
+ - 58780b8: Improve Inspecto onboarding reliability across assistant integrations.
16
+ - add stable build target selection via candidate IDs
17
+ - improve webpack and rspack config detection, including wrapper-script resolution
18
+ - support legacy Rspack and Webpack 4 onboarding with explicit manual follow-up
19
+ - persist configured host IDE into project settings and clarify doctor precedence on IDE mismatches
20
+ - preserve selected host IDE and assistant provider defaults when onboarding a subproject target
21
+
22
+ - a7cbda9: Improve inspect mode's `Fix UI` flow by attaching CSS context automatically.
23
+ - automatically include captured CSS context for the built-in `fix-ui` intent
24
+ - keep the header CSS toggle as an explicit override for non-UI intents
25
+ - add regression coverage to preserve the new intent-specific behavior
26
+
27
+ - Updated dependencies [58780b8]
28
+ - Updated dependencies [a7cbda9]
29
+ - @inspecto-dev/types@0.3.4
30
+
3
31
  ## 0.3.3
4
32
 
5
33
  ### Patch Changes
package/dist/bin.js CHANGED
@@ -1,6 +1,9 @@
1
1
  import {
2
2
  apply,
3
3
  detect,
4
+ devLink,
5
+ devStatus,
6
+ devUnlink,
4
7
  doctor,
5
8
  init,
6
9
  installIntegration,
@@ -11,7 +14,7 @@ import {
11
14
  printIntegrationPath,
12
15
  reportCommandError,
13
16
  teardown
14
- } from "./chunk-LJOKPCPD.js";
17
+ } from "./chunk-7ABJRH3F.js";
15
18
 
16
19
  // src/bin.ts
17
20
  import { cac } from "cac";
@@ -30,6 +33,34 @@ function exitWithError(error, options = {}) {
30
33
  }
31
34
  function createCli(_argv = process.argv) {
32
35
  const cli = cac("inspecto");
36
+ cli.command("dev <subcommand>", "Manage project-local Inspecto development overrides").option("--cli-bin <path>", "Point this project at a local CLI dist/bin.js").option("--repo <path>", "Point this project at a local Inspecto repository root").option("--json", "Print machine-readable JSON output", { default: false }).option("--debug", "Enable debug mode to show full error traces", { default: false }).action(async (subcommand, options) => {
37
+ try {
38
+ if (subcommand === "link") {
39
+ if (!options.cliBin && !options.repo) {
40
+ throw new Error("The `dev link` subcommand requires --cli-bin <path> or --repo <path>.");
41
+ }
42
+ await devLink({
43
+ ...options.cliBin ? { cliBin: options.cliBin } : {},
44
+ ...options.repo ? { devRepo: options.repo } : {},
45
+ json: options.json ?? false
46
+ });
47
+ return;
48
+ }
49
+ if (subcommand === "status") {
50
+ await devStatus(options.json ?? false);
51
+ return;
52
+ }
53
+ if (subcommand === "unlink") {
54
+ await devUnlink(options.json ?? false);
55
+ return;
56
+ }
57
+ throw new Error(
58
+ "Usage:\n inspecto dev link [--cli-bin <path>] [--repo <path>]\n inspecto dev status [--json]\n inspecto dev unlink [--json]"
59
+ );
60
+ } catch (error) {
61
+ exitWithError(error, options);
62
+ }
63
+ });
33
64
  cli.command("init", "Set up Inspecto in your project").option("--shared", "Share .inspecto/settings.json with your team via Git", { default: false }).option("--skip-install", "Skip npm dependency installation", { default: false }).option("--dry-run", "Preview changes without modifying files", { default: false }).option("--provider <provider>", "Set default provider (e.g. copilot, claude-code)").option("--no-extension", "Skip VS Code extension installation", { default: false }).option("--packages <names>", "(Monorepo) Comma-separated list of packages to inject").option("--force", "Force initialization even if environment is unsupported", {
34
65
  default: false
35
66
  }).option("--debug", "Enable debug mode to show full error traces", { default: false }).action(async (options) => {
@@ -56,7 +87,10 @@ function createCli(_argv = process.argv) {
56
87
  exitWithError(error, options);
57
88
  }
58
89
  });
59
- cli.command("onboard", "Run assistant-oriented Inspecto onboarding in one structured flow").option("--json", "Print machine-readable JSON output", { default: false }).option("--target <packagePath>", "Select a monorepo target package explicitly").option("--yes", "Accept a lightweight confirmation gate automatically", { default: false }).option("--shared", "Write shared Inspecto settings instead of local-only settings").option("--skip-install", "Skip npm dependency installation").option("--dry-run", "Preview changes without modifying files").option("--no-extension", "Skip IDE extension installation").option("--debug", "Enable debug mode to show full error traces", { default: false }).action(async (options) => {
90
+ cli.command("onboard", "Run assistant-oriented Inspecto onboarding in one structured flow").option("--json", "Print machine-readable JSON output", { default: false }).option(
91
+ "--target <candidateIdOrPath>",
92
+ "Select the build target to onboard using a returned candidateId or compatible config path"
93
+ ).option("--yes", "Accept a lightweight confirmation gate automatically", { default: false }).option("--shared", "Write shared Inspecto settings instead of local-only settings").option("--skip-install", "Skip npm dependency installation").option("--dry-run", "Preview changes without modifying files").option("--no-extension", "Skip IDE extension installation").option("--debug", "Enable debug mode to show full error traces", { default: false }).action(async (options) => {
60
94
  try {
61
95
  await onboard({
62
96
  json: options.json ?? false,