{"_id":"@appliqation/create-agents","name":"@appliqation/create-agents","dist-tags":{"latest":"0.1.0"},"versions":{"0.1.0":{"name":"@appliqation/create-agents","version":"0.1.0","description":"Interactive installer that scaffolds a local folder of Appliqation standalone agents (autotest, autopilot, scriptgen, defect-fix, heal-selector, visual-regression, explorer, pr-raise, dashboard) with a working .env and ready-to-run CLI/CI commands.","type":"module","license":"MIT","author":{"name":"Appliqation"},"homepage":"https://github.com/appliqation/agents-installer#readme","repository":{"type":"git","url":"git+https://github.com/appliqation/agents-installer.git"},"bin":{"create-appliqation-agents":"dist/cli.js"},"engines":{"node":">=20"},"scripts":{"dev":"tsx src/cli.ts","build":"tsc -p tsconfig.build.json && chmod +x dist/cli.js","typecheck":"tsc -p tsconfig.json --noEmit","test":"vitest run","test:watch":"vitest"},"dependencies":{"prompts":"^2.4.2"},"devDependencies":{"@types/node":"^22.10.2","@types/prompts":"^2.4.9","tsx":"^4.19.2","typescript":"^5.7.2","vitest":"^2.1.8"},"gitHead":"b7dc5f175dbe24a7bda2ffc1c49f147f6b359e2d","_id":"@appliqation/create-agents@0.1.0","bugs":{"url":"https://github.com/appliqation/agents-installer/issues"},"_nodeVersion":"23.10.0","_npmVersion":"11.7.0","dist":{"integrity":"sha512-c9CKi8fz/m4R+1+OkY8fS1ppxotmTcniztNZr7KPmpLvYnySsoMOQn3qWBD1wbqfbUwON35fkBfretU2ezkyIA==","shasum":"3c6bc83d8830fab57b295275eed12f5949503c36","tarball":"https://registry.npmjs.org/@appliqation/create-agents/-/create-agents-0.1.0.tgz","fileCount":10,"unpackedSize":32206,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIG6yERVANiNwmV9MHK18YD7dYJTJ7S9o7pCX3Zuj4e58AiEAhdll5uVH2uHg0p4YXQ4UEVAMe0foq1f2YQFxppu2qm8="}]},"_npmUser":{"name":"archana6","email":"accounts@appliqation.io"},"directories":{},"maintainers":[{"name":"archana6","email":"accounts@appliqation.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/create-agents_0.1.0_1788508623757_0.32909439993311085"},"_hasShrinkwrap":false}},"time":{"created":"2026-09-04T07:57:03.411Z","0.1.0":"2026-09-04T07:57:03.887Z","modified":"2026-09-04T07:57:04.293Z"},"maintainers":[{"name":"archana6","email":"accounts@appliqation.io"}],"description":"Interactive installer that scaffolds a local folder of Appliqation standalone agents (autotest, autopilot, scriptgen, defect-fix, heal-selector, visual-regression, explorer, pr-raise, dashboard) with a working .env and ready-to-run CLI/CI commands.","homepage":"https://github.com/appliqation/agents-installer#readme","repository":{"type":"git","url":"git+https://github.com/appliqation/agents-installer.git"},"author":{"name":"Appliqation"},"bugs":{"url":"https://github.com/appliqation/agents-installer/issues"},"license":"MIT","readme":"# @appliqation/create-agents\n\nAn interactive installer for the [Appliqation standalone agent family](https://github.com/appliqation) — [Autotest](https://github.com/appliqation/autotest), [Autopilot](https://github.com/appliqation/autopilot), [Scriptgen](https://github.com/appliqation/scriptgen), [Defect Fix](https://github.com/appliqation/defect-fix), [Heal Selector](https://github.com/appliqation/heal-selector), [Visual Regression](https://github.com/appliqation/visual-regression), [Explorer](https://github.com/appliqation/explorer), [PR Raise](https://github.com/appliqation/pr-raise), and [Dashboard](https://github.com/appliqation/dashboard). It answers a few questions and scaffolds a local folder with exactly the agents you picked, a working `.env`, and ready-to-run terminal/CI commands.\n\nNothing here replaces the [manual install](https://docs.appliqation.io/#/agents-install) path (`npm init -y && npm install @appliqation/autotest`) — it's the same steps, just asked as questions instead of typed by hand, plus a generated `README.md`/CI workflow tailored to what you chose.\n\n## Use it\n\n```bash\nnpx @appliqation/create-agents\n```\n\nor, using npm's own initializer convention:\n\n```bash\nnpm create @appliqation/agents\n```\n\n## What it asks\n\n1. **What to call the suite** — becomes the folder name and the generated `package.json`'s `name`.\n2. **Which LLM** — Anthropic, OpenAI, DeepSeek, or GLM. Prompts for the right API key, and for DeepSeek/GLM, the model ID too (this family has no default model for either, on purpose — see each agent's own `config/env.ts`).\n3. **Which agents** — a checklist, each with a one-paragraph description of what it does and what installing it actually commits you to (write access to your repo, to Appliqation, or to GitHub). Pick any combination: testing only, testing plus defect-fixing, everything except PR Raise, all nine. Picking PR Raise asks for a `GITHUB_TOKEN`; picking Dashboard asks where its audit trail should live (a local JSONL file or MongoDB).\n4. **Confirm**, then it writes the folder, runs `npm install` for exactly the packages you picked, and installs Chromium only if a browser-driving agent is among them.\n\n## What you get\n\nInside the new folder:\n\n- `package.json` — the agents you picked, nothing else.\n- `.env` — filled in with what you entered, ready to use.\n- `.env.example` — the same variable names with secrets blanked out; the one to commit and to mirror into your CI secrets.\n- `README.md` — one section per agent with its real CLI invocation forms, plus a copy-paste GitHub Actions workflow already wired to the agents and env vars you chose.\n\n## Why a separate installer, not a flag on Autopilot\n\nThe nine agents are meant to be picked up independently — `appliqation-autotest` alone is a complete, safe starting point, per the [learning-order docs](https://docs.appliqation.io/#/agents-learning-order). This tool's only job is the one-time folder setup every one of them needs (a `.env`, the right packages, the right CI wiring); it has no opinion on your test cases and never runs an agent itself.\n\n## Development\n\n```bash\ngit clone https://github.com/appliqation/agents-installer.git\ncd agents-installer\nnpm install\nnpm run dev            # runs the wizard via tsx, no build needed\nnpm run typecheck\nnpm test\n```\n\n`src/scaffold.ts` holds the pure, fully-tested builders (`.env`, `README.md`, the CI YAML); `src/cli.ts` is the thin interactive wrapper around them (`prompts`-based, not unit-tested directly, mirroring how every sibling agent keeps its own Commander wiring out of test scope).\n\n## License\n\nMIT — see [LICENSE](./LICENSE).\n","readmeFilename":"README.md","_rev":"1-649b0aa3214a2f5ed95ebd3411060f8d"}