|
| 1 | +{ |
| 2 | + "schema_version": 1, |
| 3 | + "id": "io.pilot.miren", |
| 4 | + "display_name": "Miren", |
| 5 | + "tagline": "Operate the Miren PaaS from an agent: deploy apps, run the server, and debug them", |
| 6 | + "description_md": "Miren is a deployment platform for small teams. This app is the app-store front door for the `miren` CLI, letting an agent drive a Miren PaaS over IPC.\n\nWhat an agent gets:\n- **Deploy lifecycle** — `miren.deploy` (non-interactive build + deploy), `miren.deploy.analyze` (detect the stack/services without building), and `miren.rollback`.\n- **Inspect apps** — `miren.apps`, `miren.app` (status), `miren.app.history`, and `miren.logs` (JSON).\n- **Server & diagnostics** — `miren.server.install`/`miren.server.status`, `miren.doctor`, `miren.whoami`, and `miren.debug.connection`/`miren.debug.advertise`.\n- **Full CLI surface** — `miren.exec` runs any verbatim `miren` argv (addon, auth, env, route, cluster, disk, sandbox, and more).\n\nGood to know:\n- Structured JSON is returned wherever the CLI offers it (e.g. pass `--json`).\n- Discover the live surface at runtime with `miren.help` — every method, its parameters, and its latency class (fast / med / slow).\n- Server-side commands need a configured cluster; without one, calls return a structured error (`{stdout,stderr,exit}`) telling the agent what to do next.\n- Runs on macOS and Linux (arm64 + amd64); the miren CLI is staged and sha-pinned on install.", |
| 7 | + "vendor": { |
| 8 | + "name": "Miren", |
| 9 | + "url": "https://miren.dev", |
| 10 | + "publisher_pubkey": "ed25519:uOzIK15+q/Iy67FASGoOEPg53vZo285/szq9v7PuksU=" |
| 11 | + }, |
| 12 | + "homepage": "https://miren.dev", |
| 13 | + "source_url": "https://github.com/mirendev", |
| 14 | + "license": "Proprietary", |
| 15 | + "categories": [ |
| 16 | + "infrastructure", |
| 17 | + "devops", |
| 18 | + "platform" |
| 19 | + ], |
| 20 | + "keywords": [ |
| 21 | + "miren", |
| 22 | + "paas", |
| 23 | + "deploy", |
| 24 | + "server", |
| 25 | + "debug", |
| 26 | + "infrastructure", |
| 27 | + "devops", |
| 28 | + "logs", |
| 29 | + "apps", |
| 30 | + "cli" |
| 31 | + ], |
| 32 | + "size": { |
| 33 | + "bundle_bytes": 2850932, |
| 34 | + "installed_bytes": 5020350 |
| 35 | + }, |
| 36 | + "compat": { |
| 37 | + "min_pilot_version": "1.0.0", |
| 38 | + "runtimes": [ |
| 39 | + "go" |
| 40 | + ] |
| 41 | + }, |
| 42 | + "methods": [ |
| 43 | + { |
| 44 | + "name": "miren.exec", |
| 45 | + "summary": "Run any miren subcommand. Payload is {\"args\":[...]} — the verbatim miren argv. Use this for the full CLI surface beyond the curated methods below (addon, auth, env, route, cluster, disk, sandbox, etc.). Run `miren help` or `miren <command> --help` for the surface. Example args: [\"app\",\"list\",\"--json\"]. Note: interactive subcommands (e.g. `app run`, `login`) and long-running ones (e.g. `server start`) are not suitable over IPC." |
| 46 | + }, |
| 47 | + { |
| 48 | + "name": "miren.apps", |
| 49 | + "summary": "List all applications on the cluster (alias for `app list`)." |
| 50 | + }, |
| 51 | + { |
| 52 | + "name": "miren.app", |
| 53 | + "summary": "Show the current status of one application. Provide the app name." |
| 54 | + }, |
| 55 | + { |
| 56 | + "name": "miren.app.history", |
| 57 | + "summary": "Show an application's deployment history." |
| 58 | + }, |
| 59 | + { |
| 60 | + "name": "miren.logs", |
| 61 | + "summary": "Read recent logs for an application as JSON." |
| 62 | + }, |
| 63 | + { |
| 64 | + "name": "miren.deploy", |
| 65 | + "summary": "Build and deploy the app in the current directory (non-interactive, --force)." |
| 66 | + }, |
| 67 | + { |
| 68 | + "name": "miren.deploy.analyze", |
| 69 | + "summary": "Analyze the app's detected stack/services without building or deploying." |
| 70 | + }, |
| 71 | + { |
| 72 | + "name": "miren.rollback", |
| 73 | + "summary": "Roll an application back to its previous deployed version." |
| 74 | + }, |
| 75 | + { |
| 76 | + "name": "miren.doctor", |
| 77 | + "summary": "Diagnose the miren environment and connectivity." |
| 78 | + }, |
| 79 | + { |
| 80 | + "name": "miren.whoami", |
| 81 | + "summary": "Show the current authenticated user and cluster." |
| 82 | + }, |
| 83 | + { |
| 84 | + "name": "miren.server.install", |
| 85 | + "summary": "Install the miren server as a systemd service on this host (Linux only)." |
| 86 | + }, |
| 87 | + { |
| 88 | + "name": "miren.server.status", |
| 89 | + "summary": "Show miren server service status (Linux only)." |
| 90 | + }, |
| 91 | + { |
| 92 | + "name": "miren.debug.connection", |
| 93 | + "summary": "Test connectivity and authentication with the miren server." |
| 94 | + }, |
| 95 | + { |
| 96 | + "name": "miren.debug.advertise", |
| 97 | + "summary": "Show which addresses the server would advertise and why." |
| 98 | + }, |
| 99 | + { |
| 100 | + "name": "miren.help", |
| 101 | + "summary": "Discovery: every method with params, kind, and latency class." |
| 102 | + } |
| 103 | + ], |
| 104 | + "changelog": [ |
| 105 | + { |
| 106 | + "Version": "0.1.0", |
| 107 | + "Date": "", |
| 108 | + "Notes": [ |
| 109 | + "Operate the Miren PaaS from an agent: deploy and roll back apps; inspect status, logs, and history; run the server; and diagnose connectivity — plus a passthrough exec for any miren subcommand." |
| 110 | + ] |
| 111 | + } |
| 112 | + ], |
| 113 | + "links": [ |
| 114 | + { |
| 115 | + "label": "Source", |
| 116 | + "url": "https://github.com/mirendev" |
| 117 | + }, |
| 118 | + { |
| 119 | + "label": "Website", |
| 120 | + "url": "https://miren.dev" |
| 121 | + } |
| 122 | + ] |
| 123 | +} |
0 commit comments