tiki/config/init_tiki.md
2026-01-17 11:08:53 -05:00

1.9 KiB

id title type status priority tags
TIKI-xxxxxx Welcome to tiki-land! story todo 0
info
ideas
setup

Hello! こんにちは

tikis are a lightweight issue-tracking and project management tool check it out: https://github.com/boolean-maybe/tiki


Features

  • stored in git and always in sync
  • built-in terminal UI
  • AI native
  • rich Markdown format

Git managed

tikis (short for tickets) are just Markdown files in your repository

🌳 /projects/my-app ├─ 📁 .doc │ └─ 📁 tiki │ ├─ 📝 tiki-k3x9m2.md │ ├─ 📝 tiki-7wq4na.md │ ├─ 📝 tiki-p8j1fz.md │ └─ 📝 tiki-5r2bvh.md ├─ 📁 src │ ├─ 📁 components │ │ ├─ 📜 Header.tsx │ │ ├─ 📜 Footer.tsx │ │ └─ 📝 README.md ├─ 📝 README.md ├─ 📋 package.json └─ 📄 LICENSE

Built-in terminal UI

A built-in tiki command displays a nice Scrum/Kanban board and a searchable Backlog view

Ready In progress Waiting Completed
Task 1 Task 1 Task 3
Task 4 Task 5
Task 6

AI native

since they are simple Markdown files they can also be easily manipulated via AI. For example, you can use Claude Code with skills to search, create, view, update and delete tikis

hey Claude show me a tiki TIKI-m7n2xk change it from story to a bug and assign priority 1

Rich Markdown format

Since a tiki description is in Markdown you can use all of its rich formatting options

  1. Headings
  2. Emphasis
    • bold
    • italic
  3. Lists
  4. Links
  5. Blockquotes

You can also add a code block:

def calculate_average(numbers):
    if not numbers:
        return 0
    return sum(numbers) / len(numbers)

Happy tiking!