Your First Project
Initialize an existing project
Section titled “Initialize an existing project”Navigate to your project and run:
cd your-projectginko initThis creates:
.ginko/— Session data, config, and event logsCLAUDE.md— AI instructions tailored to your projectdocs/— Directory for epics, sprints, and ADRs
Options
Section titled “Options”ginko init --model claude # Optimize for Claude Codeginko init --model gpt # Optimize for GPT-based toolsginko init --model generic # Generic AI instructionsUpgrade existing installation
Section titled “Upgrade existing installation”If you already have ginko and want to update AI instructions:
ginko init --upgradeCreate a new project
Section titled “Create a new project”Start a brand new project with ginko pre-configured:
ginko create my-appTemplates
Section titled “Templates”ginko create my-app --template basic # Minimal setupginko create my-app --template react # React starterginko create my-app --template node # Node.js starterginko create my-app --template library # Library/package starterNon-interactive mode
Section titled “Non-interactive mode”For CI/automation:
ginko create my-app --template node --description "My API service" --non-interactiveProject charter
Section titled “Project charter”After initialization, ginko can guide you through creating a project charter — a structured document that captures your project’s goals, scope, and success criteria:
ginko charterThe charter helps your AI collaborator understand the bigger picture. It’s conversational — ginko asks questions and generates the charter from your answers.
ginko charter --view # View existing charterginko charter --edit # Edit charter conversationallyConnect to cloud
Section titled “Connect to cloud”If you’ve authenticated, initialize the knowledge graph:
ginko graph initThis connects your project to the cloud knowledge graph for semantic search and team features.