@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.
- package/LICENSE +674 -0
- package/dist/cli.d.ts +3 -3
- package/dist/cli.js +4 -4
- package/dist/cli.js.map +1 -1
- package/dist/config-reference.d.ts.map +1 -1
- package/dist/config-reference.js +20 -5
- package/dist/config-reference.js.map +1 -1
- package/dist/configured-agent.js +3 -1
- package/dist/configured-agent.js.map +1 -1
- package/dist/doctor.d.ts +5 -5
- package/dist/doctor.js +54 -20
- package/dist/doctor.js.map +1 -1
- package/dist/readiness-probe-worker.d.ts.map +1 -1
- package/dist/readiness-probe-worker.js +5 -2
- package/dist/readiness-probe-worker.js.map +1 -1
- package/dist/readiness-probe.d.ts.map +1 -1
- package/dist/readiness-probe.js +7 -0
- package/dist/readiness-probe.js.map +1 -1
- package/package.json +16 -16
- package/schema/mono-agent.config.schema.json +28 -4
- package/skills/mono-agent-composer/references/config-blueprint.md +83 -8
- package/skills/mono-agent-composer/references/discovery-questions.md +6 -4
- package/skills/mono-agent-composer/references/feature-coverage.md +90 -76
- package/skills/mono-agent-composer/references/package-map.md +3 -1
- package/skills/mono-agent-composer/references/playbooks.md +11 -8
- package/dist/notify-runtime.d.ts +0 -26
- package/dist/notify-runtime.d.ts.map +0 -1
- package/dist/notify-runtime.js +0 -27
- package/dist/notify-runtime.js.map +0 -1
- package/dist/notify-tool.d.ts +0 -51
- package/dist/notify-tool.d.ts.map +0 -1
- package/dist/notify-tool.js +0 -182
- package/dist/notify-tool.js.map +0 -1
- package/dist/recipes/base.d.ts +0 -15
- package/dist/recipes/base.d.ts.map +0 -1
- package/dist/recipes/base.js +0 -51
- package/dist/recipes/base.js.map +0 -1
- package/dist/recipes/catalog.d.ts +0 -4
- package/dist/recipes/catalog.d.ts.map +0 -1
- package/dist/recipes/catalog.js +0 -525
- package/dist/recipes/catalog.js.map +0 -1
- package/dist/recipes/index.d.ts +0 -11
- package/dist/recipes/index.d.ts.map +0 -1
- package/dist/recipes/index.js +0 -14
- package/dist/recipes/index.js.map +0 -1
- package/dist/recipes/types.d.ts +0 -70
- package/dist/recipes/types.d.ts.map +0 -1
- package/dist/recipes/types.js +0 -15
- package/dist/recipes/types.js.map +0 -1
- package/dist/setup.d.ts +0 -29
- package/dist/setup.d.ts.map +0 -1
- package/dist/setup.js +0 -97
- 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
|
|
229
|
-
* refuse on any `error` section. `waiting` (e.g.
|
|
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
|
|
3379
|
-
* refuse on any `error` section. `waiting` (e.g.
|
|
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();
|