Quick Start Guide¶
Get your first Kiket workflow running in about five minutes.
1. Create an Account¶
- Visit kiket.dev/signup.
- Sign in with GitHub or email.
- Create your organization (e.g.,
acme).
2. Connect GitHub¶
- Go to Organization → Integrations → GitHub.
- Paste a personal access token with
repo,workflow, andadmin:repo_hookscopes. - Click Sync Repositories so Kiket can list repos during project creation.
3. Prepare a Repository¶
Create a repository (or reuse an existing one) and add a .kiket/ folder:
.kiket/workflows/default.yaml¶
workflow: development
version: 1
states:
- backlog
- in_progress:
auto_assign: true
wip_limit: 4
- review:
require_approval: 1
- done:
on_enter:
- run: close_issue
actions:
close_issue:
kind: system
command: issues.close
transitions:
- { from: backlog, to: in_progress }
- { from: in_progress, to: review }
- { from: review, to: done }
.kiket/boards/development.yaml¶
name: Development Board
workflow: development
columns:
- { key: backlog, name: Backlog }
- { key: in_progress, name: In Progress, wip_limit: 4 }
- { key: review, name: Review, wip_limit: 3 }
- { key: done, name: Done }
Commit and push the repository to GitHub.
4. Create a Project¶
- In Kiket, go to Projects → New Project.
- Select the repository you just prepared (you can pick multiple repos if needed).
- Confirm the project name and create it. Kiket provisions
WorkflowRepositoryandRepositoryrecords automatically.
5. Run the Initial Sync¶
- The sync job starts automatically. Watch progress in Project → Activity.
- Successful sync pulls workflows and boards into
storage/workflow_sources/and generates Kanban boards.
6. Create an Issue¶
- Open the new project.
- Click New Issue and add a title.
- Move the card across columns—each move executes the workflow transition defined in YAML.
7. Explore Analytics¶
In Analytics → Custom Query run:
You now have a repository-driven project with a workflow, board, and analytics ready to extend. Continue with Create Your First Workflow or Build Your First Extension for deeper dives.