@taladari/codeos
v0.1.3
Published
AI-native development framework CLI
Maintainers
Readme
CodeOS CLI
AI-native development framework that orchestrates LLMs into structured software workflows.
Installation
npm install -g @taladari/codeosQuick Start
# Initialize CodeOS in your project
codeos init
# Authenticate with GitHub (OAuth Device Flow)
codeos auth login
# Create a blueprint
codeos blueprint "Add user authentication"
# Run a workflow
codeos run build
# Create a GitHub Pull Request
codeos pr <runId> --title "Add authentication feature"Commands
Authentication
codeos auth login- Authenticate with GitHub using OAuthcodeos auth logout- Sign out of GitHubcodeos auth status- Check authentication status
Workflow Management
codeos init- Initialize CodeOS in current repositorycodeos run <workflow>- Run a workflow (e.g., build)codeos runs- List all workflow runscodeos resume <runId>- Resume a failed workflowcodeos retry <runId> <step>- Retry from specific stepcodeos inspect <runId>- Inspect workflow details
GitHub Integration
codeos pr <runId>- Create GitHub Pull Requestcodeos github setup- Check GitHub integration
Blueprints
codeos blueprint <title>- Create a new blueprint
Configuration
Create a codeos.yml file in your project root:
project:
language: typescript
package_manager: pnpm
workflow: build
workflows:
build:
steps:
- role: planner
- role: builder
- role: verifier
- role: reviewer
gates:
- lint
- typecheck
- test
providers:
llm: claude
integrations:
github:
repo: owner/nameRequirements
- Node.js 18+
- Git repository with GitHub remote
- GitHub authentication (OAuth or token)
Documentation
Visit https://github.com/taladari/codeos for full documentation.
