@mono-agent/agent-app 0.11.2 → 0.11.3

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 (53) hide show
  1. package/LICENSE +674 -0
  2. package/dist/cli.d.ts +3 -3
  3. package/dist/cli.js +4 -4
  4. package/dist/cli.js.map +1 -1
  5. package/dist/config-reference.d.ts.map +1 -1
  6. package/dist/config-reference.js +20 -5
  7. package/dist/config-reference.js.map +1 -1
  8. package/dist/configured-agent.js +3 -1
  9. package/dist/configured-agent.js.map +1 -1
  10. package/dist/doctor.d.ts +5 -5
  11. package/dist/doctor.js +54 -20
  12. package/dist/doctor.js.map +1 -1
  13. package/dist/readiness-probe-worker.d.ts.map +1 -1
  14. package/dist/readiness-probe-worker.js +5 -2
  15. package/dist/readiness-probe-worker.js.map +1 -1
  16. package/dist/readiness-probe.d.ts.map +1 -1
  17. package/dist/readiness-probe.js +7 -0
  18. package/dist/readiness-probe.js.map +1 -1
  19. package/package.json +16 -16
  20. package/schema/mono-agent.config.schema.json +28 -4
  21. package/skills/mono-agent-composer/references/config-blueprint.md +83 -8
  22. package/skills/mono-agent-composer/references/discovery-questions.md +6 -4
  23. package/skills/mono-agent-composer/references/feature-coverage.md +90 -76
  24. package/skills/mono-agent-composer/references/package-map.md +3 -1
  25. package/skills/mono-agent-composer/references/playbooks.md +11 -8
  26. package/dist/notify-runtime.d.ts +0 -26
  27. package/dist/notify-runtime.d.ts.map +0 -1
  28. package/dist/notify-runtime.js +0 -27
  29. package/dist/notify-runtime.js.map +0 -1
  30. package/dist/notify-tool.d.ts +0 -51
  31. package/dist/notify-tool.d.ts.map +0 -1
  32. package/dist/notify-tool.js +0 -182
  33. package/dist/notify-tool.js.map +0 -1
  34. package/dist/recipes/base.d.ts +0 -15
  35. package/dist/recipes/base.d.ts.map +0 -1
  36. package/dist/recipes/base.js +0 -51
  37. package/dist/recipes/base.js.map +0 -1
  38. package/dist/recipes/catalog.d.ts +0 -4
  39. package/dist/recipes/catalog.d.ts.map +0 -1
  40. package/dist/recipes/catalog.js +0 -525
  41. package/dist/recipes/catalog.js.map +0 -1
  42. package/dist/recipes/index.d.ts +0 -11
  43. package/dist/recipes/index.d.ts.map +0 -1
  44. package/dist/recipes/index.js +0 -14
  45. package/dist/recipes/index.js.map +0 -1
  46. package/dist/recipes/types.d.ts +0 -70
  47. package/dist/recipes/types.d.ts.map +0 -1
  48. package/dist/recipes/types.js +0 -15
  49. package/dist/recipes/types.js.map +0 -1
  50. package/dist/setup.d.ts +0 -29
  51. package/dist/setup.d.ts.map +0 -1
  52. package/dist/setup.js +0 -97
  53. package/dist/setup.js.map +0 -1
package/dist/cli.d.ts CHANGED
@@ -225,9 +225,9 @@ export type PreflightResult = {
225
225
  * config. First the config FILE must exist (env vars alone are not enough — a
226
226
  * folder without a config is not a configured agent). Then run the structural
227
227
  * validation with `liveness:false` (network probes only yield `waiting`, never
228
- * `error`, so skipping them keeps the verdict but avoids ~6s of timeouts) and
229
- * refuse on any `error` section. `waiting` (e.g. Ollama/Phoenix not up yet) is
230
- * runtime-soft and never blocks.
228
+ * `error`, so skipping them keeps the verdict while avoiding bounded network
229
+ * timeouts) and refuse on any `error` section. `waiting` (e.g.
230
+ * Ollama/Supermemory/Phoenix not up yet) is runtime-soft and never blocks.
231
231
  */
232
232
  export declare function ensureStartable(args: ParsedCliArgs, env?: Record<string, string | undefined>, options?: {
233
233
  readonly cwd?: string;
package/dist/cli.js CHANGED
@@ -674,7 +674,7 @@ const HELP_COMMANDS = [
674
674
  ],
675
675
  },
676
676
  {
677
- signature: "mono-agent web [--host <addr>] [--port <n>] [--no-open] [--allow-non-loopback] [--show-auth-url] [--include-memory] [--max-runs <n>]",
677
+ signature: "mono-agent web [--host <addr>] [--port <n>] [--no-open] [--allow-non-loopback] [--show-auth-url] [--include-memory] [--max-runs <n>] [--config <path>] [--env-file <path>]",
678
678
  lines: [
679
679
  "Serve the read-only Session Recorder web PWA from any directory: a live",
680
680
  "flight-recorder over every agent's runs (prompt, reasoning, tools, cost).",
@@ -3375,9 +3375,9 @@ function colorDetail(status, detail) {
3375
3375
  * config. First the config FILE must exist (env vars alone are not enough — a
3376
3376
  * folder without a config is not a configured agent). Then run the structural
3377
3377
  * validation with `liveness:false` (network probes only yield `waiting`, never
3378
- * `error`, so skipping them keeps the verdict but avoids ~6s of timeouts) and
3379
- * refuse on any `error` section. `waiting` (e.g. Ollama/Phoenix not up yet) is
3380
- * runtime-soft and never blocks.
3378
+ * `error`, so skipping them keeps the verdict while avoiding bounded network
3379
+ * timeouts) and refuse on any `error` section. `waiting` (e.g.
3380
+ * Ollama/Supermemory/Phoenix not up yet) is runtime-soft and never blocks.
3381
3381
  */
3382
3382
  export async function ensureStartable(args, env = process.env, options = {}) {
3383
3383
  const cwd = options.cwd ?? process.cwd();