한국어: ko/TUTORIAL.md
Complete Steps 1-5 and you’ll have a fully operational agentic team running a real sprint. This is the fastest way to understand what genasis does.
curl -fsSL https://raw.githubusercontent.com/claude-genasis/genasis/main/install.sh | sh
mkdir my-first-project && cd my-first-project
genasis init --trial
This creates a blank project, installs the default agent team, and opens the trial demo app in your browser. The demo shows an animated sprint simulation: agents picking up tickets, posting in chat, moving kanban cards.
From the demo app, you can also request a trial Plane + Mattermost environment — no server setup needed.
genasis example prd
This creates PRD.md — a realistic product requirements document that your
agent team can immediately start working on. The PRD describes a simple
todo-app with authentication, CRUD operations, and a responsive UI.
genasis init
The PM agent reads PRD.md, decomposes it into Plane tickets, assigns roles,
and the team begins working. You can watch the progress in Plane and
Mattermost.
genasis monitor
Open the Ratatui TUI dashboard to see real-time progress: which agents are working on what, token usage, ticket lifecycle, and chat activity.
You’ve mastered the basics. Your agentic team just ran a sprint from PRD to working code. Below are optional exercises to explore further.
These exercises build on the project you created above. Each one demonstrates a different genasis capability.
genasis example prd2
Generates PRD2.md with additional features: user login, admin backoffice,
and user management. The agents read PRD2, create new tickets, and extend
the existing codebase. This demonstrates incremental development with an
agentic team.
genasis example design
genasis design swap --from docs/design-system.md
Generates a new docs/design-system.md with different design tokens
(colors, typography, spacing). The swap triggers Plane issues for every UI
area that needs updating. Frontend agents pick up these issues automatically.
genasis agents browse
Browse the agent catalog and add specialists:
seo-specialist — audits pages for SEO, generates meta tagssre-engineer — sets up monitoring, health checksios-expert — adds mobile app supportmkdir another-project && cd another-project
genasis init --bootstrap
This time without --trial — connect to your own Plane and Mattermost
(self-hosted or trial server).
cd /path/to/existing-project
genasis attach
genasis detects your existing .claude/agents/*.md files and non-destructively
overlays Plane/Mattermost integration. Your agent definitions stay untouched
outside the marker fences.