Official context repository for Reccaller AI - version-controlled context configurations and recipes for better AI-assisted development.
Base URL: https://contexts.reccaller.ai
This repository now supports both contexts (for AI-assisted development environments) and recipes (for RecCall shortcuts and automation).
contexts/
├── manifest.json # Recipe manifest with shortcuts and metadata
├── contexts/ # Context configurations
│ ├── default.json
│ ├── python.json
│ └── typescript-react.json
├── git/ # Git-related recipes
│ ├── sync-main.json
│ ├── create-feature-branch.json
│ └── cleanup-branches.json
├── development/ # Development recipes
├── deployment/ # Deployment recipes
├── debugging/ # Debugging recipes
├── code-review/ # Code review recipes
├── testing/ # Testing recipes
├── database/ # Database recipes
├── security/ # Security recipes
├── devops/ # DevOps recipes
├── frontend/ # Frontend recipes
├── backend/ # Backend recipes
├── project-management/ # Project management recipes
└── additional/ # Additional utilities
Browse available recipes via the manifest:
curl https://contexts.reccaller.ai/manifest.json
Browse all available contexts:
curl https://contexts.reccaller.ai/index.json
# Get a specific context
curl https://contexts.reccaller.ai/contexts/typescript-react.json
# Get a specific recipe
curl https://contexts.reccaller.ai/git/sync-main.json
# Get the manifest
curl https://contexts.reccaller.ai/manifest.json
Each recipe is a JSON file with the following structure:
{
"shortcut": "sync-main",
"context": "Switch to main branch and pull latest changes...",
"category": "git",
"description": "Sync main branch with latest remote changes"
}
Each context is a JSON file with the following structure:
{
"version": "1.0.0",
"id": "unique-id",
"name": "Human Readable Name",
"description": "What this context is for",
"updated": "2025-10-27",
"patterns": ["*.ts", "*.tsx"],
"rules": [
"Rule 1",
"Rule 2"
],
"preferences": {
"key": "value"
}
}
Want to add your own context?
contexts/index.jsonAll contexts are version controlled via Git. Each update creates a commit for tracking changes.
MIT License - see main repository for details.