with one click
setup-software-factory
// Set up .continue/checks and .continue/agents in a project using create-software-factory. Runs the interactive wizard or imports from an existing repo.
// Set up .continue/checks and .continue/agents in a project using create-software-factory. Runs the interactive wizard or imports from an existing repo.
| name | setup-software-factory |
| description | Set up .continue/checks and .continue/agents in a project using create-software-factory. Runs the interactive wizard or imports from an existing repo. |
| metadata | {"author":"continuedev","version":"1.0.0"} |
You are setting up AI-powered checks and agents in a project using create-software-factory. This tool scaffolds .continue/checks/ and .continue/agents/ markdown files that define automated PR review checks and event-triggered agents.
Verify the environment:
node --version)npx create-software-factory
This launches an interactive wizard. Walk the user through selecting:
Recommend starting with Code Review and Security checks as a baseline.
If the user has a reference repo with good checks/agents:
npx create-software-factory --from owner/repo
For private repos:
npx create-software-factory --from owner/repo --token ghp_xxxxx
The CLI fetches .continue/checks/ and .continue/agents/ from the repo and lets the user select which files to import.
After the CLI runs, check the generated files:
ls .continue/checks/
ls .continue/agents/
Each file is a markdown file with YAML frontmatter containing name and description. Agent files may also have an on: field defining their trigger.
Review the content of each file and ask the user if they want to customize any of the instructions for their specific project context. Common customizations:
Stage and commit the new .continue/ files:
git add .continue/
git commit -m "feat: add Continue checks and agents"
If the user wants to verify the setup works:
ai-merge label)If the user wants to create custom checks or agents beyond the built-in templates:
.continue/checks/ with name and description frontmatter.continue/agents/ with name, description, and optionally on: frontmatternpx fails to find the package โ Try npx create-software-factory@latest to force the latest version--token) or may not have .continue/ files