Skip to content

Your First Project

Navigate to your project and run:

Terminal window
cd your-project
ginko init

This creates:

  • .ginko/ — Session data, config, and event logs
  • CLAUDE.md — AI instructions tailored to your project
  • docs/ — Directory for epics, sprints, and ADRs
Terminal window
ginko init --model claude # Optimize for Claude Code
ginko init --model gpt # Optimize for GPT-based tools
ginko init --model generic # Generic AI instructions

If you already have ginko and want to update AI instructions:

Terminal window
ginko init --upgrade

Start a brand new project with ginko pre-configured:

Terminal window
ginko create my-app
Terminal window
ginko create my-app --template basic # Minimal setup
ginko create my-app --template react # React starter
ginko create my-app --template node # Node.js starter
ginko create my-app --template library # Library/package starter

For CI/automation:

Terminal window
ginko create my-app --template node --description "My API service" --non-interactive

After initialization, ginko can guide you through creating a project charter — a structured document that captures your project’s goals, scope, and success criteria:

Terminal window
ginko charter

The charter helps your AI collaborator understand the bigger picture. It’s conversational — ginko asks questions and generates the charter from your answers.

Terminal window
ginko charter --view # View existing charter
ginko charter --edit # Edit charter conversationally

If you’ve authenticated, initialize the knowledge graph:

Terminal window
ginko graph init

This connects your project to the cloud knowledge graph for semantic search and team features.