Skip to content

Kiket Documentation

Build Automation That Regulators Trust

Kiket is the workflow-as-code platform for teams who need speed without sacrificing compliance. Define workflows in Git, extend with any language, and prove every decision with blockchain-anchored audit trails.

  • I'm New to Kiket


    Get hands-on in 5 minutes. Create a project, define your first workflow, and see configuration-as-code in action.

    Quick Start

  • I Want to Build an Extension


    Extend Kiket with custom integrations. Use any language, deploy anywhere—your code, your infrastructure.

    Extension Development

  • I Need to Prove Compliance


    Blockchain audit trails, explainable AI, and evidence chains that auditors can verify independently.

    Compliance & Audit

  • I'm Migrating from Another Tool


    Moving from Jira, GitHub Projects, or another platform? We'll help you bring your data and workflows.

    Migration Guides


Why Teams Choose Kiket

Ship Faster

Deploy marketplace copilots in minutes, not months. Pre-built solutions for planning, intake, capacity management, and more—ready to customize.

Stay Flexible

Everything as code. Workflows, boards, dashboards, and AI prompts live in your Git repository. Review changes in PRs, roll back instantly, own your configuration forever.

Scale Confidently

Explainable AI with full reasoning traces. Blockchain-anchored audit trails that auditors verify independently. Built for teams where compliance isn't optional.


Platform Overview

graph LR
    subgraph Your Repository
        A[".kiket/workflows/"]
        B[".kiket/boards/"]
        C[".kiket/analytics/"]
    end

    subgraph Kiket Platform
        D[Sync Engine]
        E[Workflow Engine]
        F[Analytics Engine]
        G[AI Agents]
    end

    subgraph Your Infrastructure
        H[Extensions]
        I[Webhooks]
    end

    A --> D
    B --> D
    C --> D
    D --> E
    D --> F
    E --> G
    E --> H
    E --> I
    F --> J[Dashboards]
    G --> K[Audit Trail]
    K --> L[Blockchain Anchor]

    style D fill:#7C3AED,stroke:#fff,color:#fff
    style E fill:#7C3AED,stroke:#fff,color:#fff
    style F fill:#7C3AED,stroke:#fff,color:#fff
    style G fill:#7C3AED,stroke:#fff,color:#fff
    style H fill:#F59E0B,stroke:#fff,color:#000
    style I fill:#F59E0B,stroke:#fff,color:#000
    style L fill:#10B981,stroke:#fff,color:#fff

How it works:

  1. Define workflows, boards, and analytics in YAML files in your repository
  2. Sync automatically when you push—Kiket validates and applies your configuration
  3. Execute workflows with built-in AI agents or custom extensions
  4. Audit every action with tamper-proof blockchain-anchored logs

What You Can Build

Workflow Automation

Define state machines, approval gates, and automated actions:

workflow: change-request
states:
  - draft
  - review:
      require_approval: 2
      approvers: [security-team, engineering-lead]
  - approved
  - deployed

transitions:
  - from: draft
    to: review
    when: "fields.risk_assessment != null"
  - from: review
    to: approved
    when: all_approvals_received
    actions:
      - notify_stakeholders
      - create_audit_record

Custom Boards

Configure Kanban boards with filters, WIP limits, and custom views:

board: sprint-board
columns:
  - name: Backlog
    states: [backlog]
  - name: In Progress
    states: [in_progress]
    wip_limit: 5
  - name: Review
    states: [review]
  - name: Done
    states: [done, deployed]
    collapsed: true

Analytics Queries

Query your workflow data with SQL:

query: cycle-time-by-team
sql: |
  SELECT
    team,
    AVG(cycle_time_hours) as avg_cycle_time,
    PERCENTILE_CONT(0.95) WITHIN GROUP (ORDER BY cycle_time_hours) as p95
  FROM workflow_metrics
  WHERE completed_at > CURRENT_DATE - INTERVAL '30 days'
  GROUP BY team

Documentation Sections


Get Help


Ready to build automation that scales? Start with the Quick Start →