iosm-cli 0.2.3 → 0.2.4

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 (54) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/README.md +32 -5
  3. package/dist/cli/args.d.ts +1 -1
  4. package/dist/cli/args.d.ts.map +1 -1
  5. package/dist/cli/args.js +1 -1
  6. package/dist/cli/args.js.map +1 -1
  7. package/dist/core/agent-profiles.d.ts +1 -1
  8. package/dist/core/agent-profiles.d.ts.map +1 -1
  9. package/dist/core/agent-profiles.js +9 -0
  10. package/dist/core/agent-profiles.js.map +1 -1
  11. package/dist/core/agent-session.d.ts +7 -0
  12. package/dist/core/agent-session.d.ts.map +1 -1
  13. package/dist/core/agent-session.js +58 -13
  14. package/dist/core/agent-session.js.map +1 -1
  15. package/dist/core/extensions/types.d.ts +1 -1
  16. package/dist/core/extensions/types.d.ts.map +1 -1
  17. package/dist/core/extensions/types.js.map +1 -1
  18. package/dist/core/orchestration-limits.d.ts +6 -0
  19. package/dist/core/orchestration-limits.d.ts.map +1 -0
  20. package/dist/core/orchestration-limits.js +6 -0
  21. package/dist/core/orchestration-limits.js.map +1 -0
  22. package/dist/core/sdk.d.ts +6 -1
  23. package/dist/core/sdk.d.ts.map +1 -1
  24. package/dist/core/sdk.js +34 -6
  25. package/dist/core/sdk.js.map +1 -1
  26. package/dist/core/subagents.d.ts.map +1 -1
  27. package/dist/core/subagents.js +21 -7
  28. package/dist/core/subagents.js.map +1 -1
  29. package/dist/core/tools/edit.d.ts +8 -4
  30. package/dist/core/tools/edit.d.ts.map +1 -1
  31. package/dist/core/tools/edit.js +18 -3
  32. package/dist/core/tools/edit.js.map +1 -1
  33. package/dist/core/tools/index.d.ts +9 -7
  34. package/dist/core/tools/index.d.ts.map +1 -1
  35. package/dist/core/tools/task.d.ts +10 -3
  36. package/dist/core/tools/task.d.ts.map +1 -1
  37. package/dist/core/tools/task.js +404 -149
  38. package/dist/core/tools/task.js.map +1 -1
  39. package/dist/core/tools/todo.d.ts +10 -10
  40. package/dist/core/tools/todo.d.ts.map +1 -1
  41. package/dist/core/tools/todo.js +135 -17
  42. package/dist/core/tools/todo.js.map +1 -1
  43. package/dist/modes/interactive/components/footer.d.ts +1 -1
  44. package/dist/modes/interactive/components/footer.d.ts.map +1 -1
  45. package/dist/modes/interactive/components/footer.js +8 -8
  46. package/dist/modes/interactive/components/footer.js.map +1 -1
  47. package/dist/modes/interactive/interactive-mode.d.ts +9 -0
  48. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  49. package/dist/modes/interactive/interactive-mode.js +214 -14
  50. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  51. package/docs/cli-reference.md +4 -0
  52. package/docs/configuration.md +5 -1
  53. package/docs/interactive-mode.md +5 -1
  54. package/package.json +1 -1
@@ -329,16 +329,20 @@ iosm --no-extensions --no-skills --no-prompt-templates
329
329
  | `full` | Default — all tools, full capabilities |
330
330
  | `plan` | Read-only architecture/planning |
331
331
  | `iosm` | IOSM artifact context and synchronization |
332
+ | `meta` | Full tools + orchestration-first execution contract |
332
333
  | `explore` | Exploratory analysis |
333
334
  | `iosm_analyst` | IOSM metric deep-dive |
334
335
  | `iosm_verifier` | IOSM verification specialist |
335
336
  | `cycle_planner` | Cycle planning specialist |
336
337
 
338
+ **Meta mode quality note:** for complex orchestration use modern models with large context windows (`>=128k`, ideally `>=200k`) and high token limits. Smaller models degrade orchestration stability and synthesis quality.
339
+
337
340
  **Examples:**
338
341
 
339
342
  ```bash
340
343
  iosm --profile plan # Planning mode
341
344
  iosm --profile iosm # IOSM mode
345
+ iosm --profile meta # Orchestration-first mode
342
346
  iosm --offline # No network
343
347
  iosm --session-trace # Enable tracing
344
348
  iosm --verbose # Verbose startup
@@ -248,6 +248,7 @@ Profiles control the agent's behavior, available tools, and system prompt.
248
248
  | `full` | All built-ins (read, bash, edit, write, grep, find, ls, rg, fd, ast_grep, comby, jq, yq, semgrep, sed, semantic_search) | Default full development capabilities |
249
249
  | `plan` | Read-only (read, grep, find, ls) | Architecture planning and code review |
250
250
  | `iosm` | All + IOSM context | IOSM cycle execution with artifact synchronization |
251
+ | `meta` | Full tools + orchestration-first contract | Adaptive multi-agent/delegate execution with verification closure |
251
252
 
252
253
  ### Advanced Profiles
253
254
 
@@ -258,15 +259,18 @@ Profiles control the agent's behavior, available tools, and system prompt.
258
259
  | `iosm_verifier` | IOSM quality gate verification |
259
260
  | `cycle_planner` | IOSM cycle planning specialist |
260
261
 
262
+ > `meta` profile recommendation: for orchestration-heavy work, prefer modern models with large context windows (`>=128k`, ideally `>=200k`) and high output limits. This improves delegate routing, contract retention, and synthesis reliability.
263
+
261
264
  ### Usage
262
265
 
263
266
  ```bash
264
267
  # CLI flag
265
268
  iosm --profile plan
266
269
  iosm --profile iosm
270
+ iosm --profile meta
267
271
 
268
272
  # Interactive: cycle with Shift+Tab
269
- # full → plan → iosm → full → ...
273
+ # full → plan → iosm → meta → full → ...
270
274
 
271
275
  # In orchestration
272
276
  /orchestrate --profiles explore,full,iosm_verifier
@@ -289,7 +289,7 @@ Runtime artifacts:
289
289
 
290
290
  | Key | Action |
291
291
  |-----|--------|
292
- | `Shift+Tab` | Cycle profile (full → plan → iosm) |
292
+ | `Shift+Tab` | Cycle profile (full → plan → iosm → meta) |
293
293
  | `Shift+Ctrl+T` | Cycle thinking level |
294
294
  | `Ctrl+P` | Next model in rotation |
295
295
  | `Shift+Ctrl+P` | Previous model in rotation |
@@ -337,6 +337,10 @@ Profiles change the agent's behavior, available tools, and system prompt:
337
337
  | `full` | All built-ins (read, bash, edit, write, grep, find, ls, rg, fd, ast_grep, comby, jq, yq, semgrep, sed, semantic_search) | Default development work |
338
338
  | `plan` | Read-only (read, grep, find, ls) | Architecture planning, code review |
339
339
  | `iosm` | All + IOSM context | IOSM cycle execution with artifact sync |
340
+ | `meta` | Full toolset + orchestration-first contract | Adaptive multi-agent/delegate execution with verification closure |
341
+
342
+ > `meta` profile recommendation: use modern high-capability models with large context windows (`>=128k`, ideally `>=200k`) and high output limits.
343
+ > This directly impacts orchestration quality (delegate fan-out, constraint retention, and final synthesis reliability).
340
344
 
341
345
  ### Advanced Profiles (via `--profile` or orchestration)
342
346
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iosm-cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Standalone IOSM CLI with agent tooling, session management, and IOSM artifact orchestration",
5
5
  "type": "module",
6
6
  "iosmConfig": {