"Can you...?" → "Yes you can!"
Your completely autonomous network that navigates universal infrastructure and project management across the ChittyOS ecosystem
ChittyCan is a unified command-line tool that helps you manage every aspect of your development workflow:
- 📋 Project Tracking - Sync between Notion databases and GitHub Projects
- ☁️ Cloud Infrastructure - Manage Cloudflare Workers, DNS, KV, R2, Durable Objects
- 🗄️ Database Management - Neon PostgreSQL schemas, migrations, and deployments
- 🤖 AI Tools - Configure MCP servers and Claude Code settings
- 📁 File Management - Organize Google Drive and rclone remotes
- ⏱️ Smart Nudges - Shell hooks remind you to update trackers after git commits
- 🔄 Two-Way Sync - Keep Notion Actions and GitHub Issues in perfect sync
# Install globally
npm install -g chittycan
# Or run directly
npx chittycan
# Initialize with interactive config
can configChittyCan supports natural language for 14+ popular CLIs. Just tell it what you want in plain English (quotes optional):
# GitHub CLI
can gh create a PR for my bug fix
can gh list all my open issues
can gh clone the repo chittyapps/chittycan
# Docker
can docker list all running containers
can docker stop the nginx container
can docker show logs for app container
# Git
can git commit all changes with message fixed auth
can git create a new branch called feature/login
# Kubernetes
can kubectl get all pods in production namespace
can kubectl scale my deployment to 3 replicas
# Quotes work too (useful for preserving exact phrasing)
can gh "create a PR titled 'Fix: auth bug'"
can git "commit everything with message 'v2.0 release'"
# And more: npm, aws, gcloud, az, terraform, helm, cargo, pip, yarn, pnpmHow it works: ChittyCan proxies natural language commands to the full chitty CLI, which uses AI to interpret and execute the actual commands.
Note: Natural language commands require the full chitty CLI. If not installed, ChittyCan shows upgrade instructions.
Interactive rclone-style config for managing "remotes" (Notion databases, GitHub projects):
# Open interactive config menu
can config
# Add a Notion database remote
# Choose: New remote → Notion database
# Enter your database URL: https://notion.so/DATABASE_ID?v=VIEW_ID
# Add a GitHub project remote
# Choose: New remote → GitHub project
# List all remotes
can remote list
# Open a remote
can open tracker
can open tracker actions # Open specific viewGet reminded to update your tracker after important commands:
# Install zsh hooks
can hook install zsh
# Now you'll get nudges after:
# - git commit
# - git merge
# - wrangler deploy
# - npm publish
# Manual checkpoint
ai_checkpoint "Finished OAuth implementation"
# Press Ctrl-G to open tracker anytimeKeep your Notion Actions and GitHub Issues in perfect sync:
# Setup sync (interactive)
can sync setup
# Preview changes without applying
can sync run --dry-run
# Run sync
can sync run
# Check sync status
can sync statusMapping:
- Notion Status "To Do" ↔ GitHub open + label:todo
- Notion Status "In Progress" ↔ GitHub open + label:in-progress
- Notion Status "Done" ↔ GitHub closed + label:done
- Notion Status "Archived" ↔ GitHub closed + label:archived
Conflict Resolution:
- Automatically detects when both Notion and GitHub changed
- Sets Sync State to "conflict" in Notion
- Manual resolution required
# Cloudflare Workers
can cf worker list
can cf worker deploy chittyauth --env production
can cf worker tail chittyconnect
can cf worker secrets set chittyauth JWT_SECRET
# DNS
can cf dns list chitty.cc
can cf dns add chitty.cc A new-service 1.2.3.4
# KV / R2
can cf kv list --namespace CACHE
can cf r2 list --bucket documents# List databases
can neon db list
# Run migrations
can neon migrate up
can neon migrate down
# Schema diff
can neon schema diff production staging
# Quick query
can neon query "SELECT * FROM identities LIMIT 5"# List installed MCP servers
can mcp list
# Install a new MCP server
can mcp install @modelcontextprotocol/server-filesystem
# Configure Claude Code
can claude config
can claude remote add my-api https://api.example.com# rclone integration
can rclone remote add gdrive
can rclone sync local:./docs gdrive:/ChittyOS/docs
# Google Drive organization
can gdrive tree
can gdrive mkdir "ChittyOS/Projects"npm install -g chittycangit clone https://github.com/YOUR_USERNAME/chittycan
cd chittycan
npm install
npm run build
npm linkAll config is stored in ~/.config/chitty/config.json:
{
"remotes": {
"tracker": {
"type": "notion-database",
"url": "https://notion.so/DATABASE_ID?v=VIEW_ID",
"databaseId": "DATABASE_ID",
"views": {
"actions": "https://notion.so/DATABASE_ID?v=VIEW_ID",
"projects": "https://notion.so/DATABASE_ID?v=VIEW_ID"
}
},
"chittyos": {
"type": "github-project",
"owner": "YOUR_USERNAME",
"repo": "chittyos",
"projectNumber": 1
}
},
"nudges": {
"enabled": true,
"intervalMinutes": 45
},
"sync": {
"enabled": true,
"notionToken": "secret_...",
"githubToken": "ghp_...",
"mappings": [
{
"notionRemote": "tracker",
"githubRemote": "chittyos"
}
]
}
}can config # Interactive config menu
can remote list # List all remotes
can open <name> [view] # Open remote in browsercan nudge now # Interactive nudge
can nudge quiet # Quick reminder
can checkpoint [message] # Save checkpoint
can checkpoints [limit] # List recent checkpointscan hook install zsh # Install zsh hooks
can hook uninstall zsh # Uninstall zsh hookscan sync setup # Configure sync
can sync run [--dry-run] # Run sync
can sync status # Show sync config- Multi-Model Architecture - Pop any AI model at any juncture
- GitHub App Setup - Create GitHub App for webhooks and API access
- Notion Integration - Connect Notion databases
- Two-Way Sync - Configure bidirectional sync
chittycan/
├── src/
│ ├── commands/ # Command implementations
│ │ ├── config.ts # Interactive rclone-style config
│ │ ├── open.ts # Open remotes
│ │ ├── nudge.ts # Nudges and reminders
│ │ ├── checkpoint.ts # Checkpoint logging
│ │ ├── hook.ts # Shell hook management
│ │ └── sync.ts # Two-way sync
│ ├── lib/ # Core libraries
│ │ ├── config.ts # Config management
│ │ ├── notion.ts # Notion API client
│ │ ├── github.ts # GitHub API client
│ │ └── sync.ts # Sync worker
│ ├── types/ # TypeScript types
│ └── zsh/ # Shell snippets
│ └── snippets.zsh # Zsh hooks
├── bin/
│ └── can.js # CLI entry point
└── tests/ # Test suite
Coming soon - web dashboard for:
- Visual project status
- Sync history and conflicts
- Infrastructure monitoring
- AI usage analytics
Expose ChittyCan via Model Context Protocol:
{
"mcpServers": {
"chittycan": {
"command": "can",
"args": ["mcp"]
}
}
}- Interactive config (rclone-style)
- Notion remote management
- GitHub remote management
- Shell hooks (zsh)
- Nudges and checkpoints
- Two-way sync engine
- Cloudflare Workers management
- DNS configuration
- KV/R2 operations
- Neon database management
- Schema migrations
- MCP server management
- Claude Code configuration
- rclone integration
- Google Drive organization
- Web dashboard
- MCP server implementation
- Real-time webhook handler
- Analytics and reporting
Contributions welcome! Please:
- Fork the repo
- Create a feature branch
- Make your changes
- Add tests
- Submit a PR
MIT
C.A.N. has dual meanings:
- Chitty Autonomous Navigator - Emphasizes autonomous navigation across platforms
- ChittyCan Completely Autonomous Network - Emphasizes the self-managing networked ecosystem
"Can you...?" → "Yes you can!"
ChittyCan embodies the spirit of empowerment - it's your completely autonomous network that seamlessly navigates across platforms, managing infrastructure, syncing data, and keeping you productive. When someone asks "Can you manage my cloud infrastructure from the command line?" or "Can you keep my Notion and GitHub in sync?", the answer is always a confident "Yes you can!"
The name works on multiple levels:
- 🤖 Completely Autonomous - Smart nudges, auto-sync, proactive reminders, self-managing agents
- 🌐 Network - Interconnected ecosystem of ChittyOS services + 80+ external platforms
- 🧭 Navigator - Seamlessly moves between Notion, GitHub, Cloudflare, Neon, Linear, and more
- ✅ Can - Empowering affirmation that you can accomplish anything
The killer feature: You can pop any AI model at any juncture in your networked async workstream and it just works.
Your Workflow:
┌─────────────┐
│ Task 1 │ ─── Claude Sonnet (code generation)
└─────────────┘
│
┌─────────────┐
│ Task 2 │ ─── GPT-4 (analysis via ChittyConnect proxy)
└─────────────┘
│
┌─────────────┐
│ Task 3 │ ─── Llama Scout (routing via ChittyRouter)
└─────────────┘
│
┌─────────────┐
│ Task 4 │ ─── Claude Code (implementation)
└─────────────┘
Why this matters:
- 🎯 Right tool for the job - Use the best model for each specific task
- 💰 Cost optimization - Cheap models for simple tasks, powerful models for complex ones
- 🔄 No lock-in - Switch providers without changing your workflow
- ⚡ Async + Networked - Models work on different tasks simultaneously across the network
- 🛡️ Resilience - If one model is down, fallback chain kicks in automatically
# Step 1: ChittyRouter uses Llama Scout to triage incoming email
can router inbox process --agent triage
# Step 2: ChittyConnect proxies to GPT-4 for document analysis
can connect proxy openai "Analyze this contract for key terms"
# Step 3: Local Claude Code generates response
can router agent invoke response --email abc123 --draft
# Step 4: ChittyID mints credential with any available model
can id credential issue --type VerifiedDocument
# All working together in one async networked workflow ✨Any model can plug into:
- 📧 ChittyRouter agents - Email triage, priority, response, document analysis
- 🔌 ChittyConnect proxies - OpenAI, Anthropic, local models
- 🤖 MCP servers - Claude Code, Claude Desktop, custom tools
- 📝 Smart nudges - Local AI suggesting what to update
- 🔄 Sync engine - AI-powered conflict resolution
- 🎯 ChittyRegistry scripts - Model-driven automation
- ChittyOS - Legal technology platform
- ChittyID - Identity service
- ChittyConnect - AI-intelligent integration spine
Built with ❤️ for the ChittyOS ecosystem