@skrr-ai/cli 0.1.14 → 0.1.15

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 (90) hide show
  1. package/dist/base-command.d.ts +14 -0
  2. package/dist/base-command.js +60 -1
  3. package/dist/commands/agents/create.d.ts +1 -0
  4. package/dist/commands/agents/create.js +6 -1
  5. package/dist/commands/agents/instructions/add.d.ts +21 -0
  6. package/dist/commands/agents/instructions/add.js +115 -0
  7. package/dist/commands/agents/instructions/disable.d.ts +13 -0
  8. package/dist/commands/agents/instructions/disable.js +50 -0
  9. package/dist/commands/agents/instructions/edit.d.ts +16 -0
  10. package/dist/commands/agents/instructions/edit.js +79 -0
  11. package/dist/commands/agents/instructions/enable.d.ts +13 -0
  12. package/dist/commands/agents/instructions/enable.js +50 -0
  13. package/dist/commands/agents/instructions/move.d.ts +15 -0
  14. package/dist/commands/agents/instructions/move.js +61 -0
  15. package/dist/commands/agents/instructions/preview.d.ts +13 -0
  16. package/dist/commands/agents/instructions/preview.js +59 -0
  17. package/dist/commands/agents/instructions/remove.d.ts +13 -0
  18. package/dist/commands/agents/instructions/remove.js +49 -0
  19. package/dist/commands/agents/instructions/set.d.ts +17 -0
  20. package/dist/commands/agents/instructions/set.js +79 -0
  21. package/dist/commands/agents/instructions/show.d.ts +15 -0
  22. package/dist/commands/agents/instructions/show.js +76 -0
  23. package/dist/commands/agents/instructions/upgrade.d.ts +16 -0
  24. package/dist/commands/agents/instructions/upgrade.js +77 -0
  25. package/dist/commands/agents/show.js +5 -0
  26. package/dist/commands/agents/triggers/policy.js +8 -2
  27. package/dist/commands/agents/update.d.ts +1 -0
  28. package/dist/commands/agents/update.js +8 -2
  29. package/dist/commands/daemon/index.js +2 -0
  30. package/dist/commands/daemon/recover-offline-queue.d.ts +9 -0
  31. package/dist/commands/daemon/recover-offline-queue.js +24 -0
  32. package/dist/commands/daemon/start.js +29 -1
  33. package/dist/commands/instruction-blocks/create.d.ts +19 -0
  34. package/dist/commands/instruction-blocks/create.js +94 -0
  35. package/dist/commands/instruction-blocks/delete.d.ts +13 -0
  36. package/dist/commands/instruction-blocks/delete.js +35 -0
  37. package/dist/commands/instruction-blocks/list.d.ts +13 -0
  38. package/dist/commands/instruction-blocks/list.js +71 -0
  39. package/dist/commands/instruction-blocks/show.d.ts +12 -0
  40. package/dist/commands/instruction-blocks/show.js +35 -0
  41. package/dist/commands/instruction-blocks/update.d.ts +23 -0
  42. package/dist/commands/instruction-blocks/update.js +94 -0
  43. package/dist/commands/spaces/auto-executor/preview.d.ts +1 -0
  44. package/dist/commands/spaces/auto-executor/preview.js +62 -3
  45. package/dist/commands/spaces/auto-executor/update.d.ts +4 -0
  46. package/dist/commands/spaces/auto-executor/update.js +78 -7
  47. package/dist/commands/spaces/capacity.js +14 -2
  48. package/dist/commands/spaces/update.d.ts +4 -0
  49. package/dist/commands/spaces/update.js +49 -2
  50. package/dist/commands/tasks/complete.d.ts +12 -5
  51. package/dist/commands/tasks/complete.js +50 -28
  52. package/dist/commands/tasks/continue-ready.js +9 -1
  53. package/dist/commands/tasks/create.d.ts +1 -0
  54. package/dist/commands/tasks/create.js +25 -1
  55. package/dist/commands/tasks/deliverable/add.d.ts +23 -0
  56. package/dist/commands/tasks/deliverable/add.js +70 -0
  57. package/dist/commands/tasks/events/append.d.ts +1 -1
  58. package/dist/commands/tasks/events/append.js +4 -4
  59. package/dist/commands/tasks/expectations.d.ts +12 -0
  60. package/dist/commands/tasks/expectations.js +92 -0
  61. package/dist/commands/tasks/judge.d.ts +29 -0
  62. package/dist/commands/tasks/judge.js +68 -0
  63. package/dist/commands/tasks/report.d.ts +1 -1
  64. package/dist/commands/tasks/report.js +3 -3
  65. package/dist/commands/tasks/update.d.ts +1 -0
  66. package/dist/commands/tasks/update.js +34 -4
  67. package/dist/commands/tasks/waive.d.ts +25 -0
  68. package/dist/commands/tasks/waive.js +58 -0
  69. package/dist/lib/agent-config.js +5 -0
  70. package/dist/lib/agent-instructions.d.ts +15 -0
  71. package/dist/lib/agent-instructions.js +55 -0
  72. package/dist/lib/command-hygiene.d.ts +6 -1
  73. package/dist/lib/command-hygiene.js +49 -29
  74. package/dist/lib/exec-runtime-binary.d.ts +13 -0
  75. package/dist/lib/exec-runtime-binary.js +45 -0
  76. package/dist/lib/git-task.d.ts +37 -0
  77. package/dist/lib/git-task.js +151 -0
  78. package/dist/lib/instruction-blocks.d.ts +29 -0
  79. package/dist/lib/instruction-blocks.js +159 -0
  80. package/dist/lib/runtime-start-verification.d.ts +49 -0
  81. package/dist/lib/runtime-start-verification.js +108 -0
  82. package/dist/lib/task-execution.d.ts +18 -2
  83. package/dist/lib/task-execution.js +19 -14
  84. package/dist/lib/task-transcript.js +1 -1
  85. package/dist/lib/tasks.d.ts +50 -0
  86. package/dist/lib/tasks.js +66 -1
  87. package/dist/node_modules/@skrr-ai/data-provider/index.js +2027 -1904
  88. package/dist/node_modules/@skrr-ai/inference-broker/package.json +1 -1
  89. package/oclif.manifest.json +13706 -11858
  90. package/package.json +4 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.