@traqr/cli
v0.1.9
Published
CLI for Claude Code — persistent memory, worktree slots, autonomous CI/CD, skill templates.
Maintainers
Readme
@traqr/cli
CLI for the TraqrOS developer platform. Project initialization, template rendering, and service health checks.
Most users don't need to run CLI commands directly — Claude reads the @traqr/core README and sets up your project automatically. The CLI is a manual fallback for users without AI assistants.
Commands
traqr render (AI-First Path)
Non-interactive template generation from .traqr/config.json. This is what Claude runs after writing your config.
npx traqr render # Generate all files (skip existing)
npx traqr render --dry-run # Preview without writing
npx traqr render --force # Overwrite existing filestraqr init (Interactive Fallback)
Interactive project setup wizard for manual configuration:
- Detects git remote, package manager, framework
- Prompts for project name, description, org/repo
- Choose a starter pack (solo/smart/production/full)
- Renders all templates and writes to disk
- Creates
.traqr/config.json
npx traqr inittraqr status
Show project config summary and check running services.
npx traqr status
# Project: My Project
# Config: /path/to/.traqr/config.json
# Tier: 2 (smart)
# Score: 65/100Programmatic API
import { writeFiles } from '@traqr/cli'
const result = await writeFiles(files, baseDir, { dryRun: false, force: true })
console.log(`Written: ${result.written.length}, Skipped: ${result.skipped.length}`)