Skip to main content

KATA Markdown™ toolkit for human-AI collaboration: schema, validation, and template in a single file

Project description

gospelo-kata — KATA Markdown™ for Human-AI Collaboration

License: MIT Python 3.11+ AI Collaborative KATA Markdown

A document format and toolkit designed for human-AI collaboration. KATA Markdown™ embeds schema, data, and template in a single file — readable and actionable by both humans and AI without special instructions.

Why gospelo-kata?

KATA Markdown™ is designed so that both humans and AI can read, understand, and work with the same document. The format is self-describing: AI can understand the template structure from the embedded schema and prompt without needing external instructions, while humans can read and edit the same file naturally. It acts as a harness for autonomous AI — schema, validation, and trust management guide AI output along safe, structured paths.

When generating documents with AI, you often face these problems:

  • No structure — AI outputs free-form text that's hard to validate or reuse
  • No round-trip — once rendered, you can't extract the original data back
  • No validation — schema violations go unnoticed until review
  • AI needs coaching — you have to explain the output format every time

gospelo-kata solves this with a single .kata.md file that contains everything: schema definition, structured data, and a Jinja2-compatible template (built-in engine, no external dependency). The embedded {#schema} and {#prompt} blocks let AI understand the template on its own — no separate instructions needed. Rendered output preserves data bindings via data-kata annotations, enabling round-trip extraction and automated validation.

Features

  • Human-AI collaborative format — both humans and AI can read, edit, and generate from the same file
  • Self-describing templates — embedded {#schema} and {#prompt} let AI understand the template without external instructions
  • Single-file format — schema, data, and template in one .kata.md file
  • YAML shorthand schemas — define types concisely (string!, enum(a,b,c), items[]!:)
  • Round-trip — extract structured data back from rendered documents
  • Lint — validate both templates and rendered output (20+ rules)
  • AI-friendlyassemble command lets AI generate only YAML data; the toolkit handles the rest
  • Multi-format output — Markdown, Excel, and HTML
  • VSCode extension — real-time lint, hover info, preview CSS
  • Zero external dependencies for core features (built-in Jinja2 3.1.6-compatible engine; PyYAML required, openpyxl optional for Excel)

Installation

pip install gospelo-kata

# With Excel support
pip install gospelo-kata[excel]

Requires Python 3.11+.

Quick Start

1. Create a document from scratch

cat > todo_tpl.kata.md << 'EOF'
{#schema
title: string!
items[]!:
  task: string!
  done: boolean
#}

{#data
title: Sprint Tasks
items:
  - task: Set up CI pipeline
    done: true
  - task: Write API tests
    done: false
  - task: Deploy to staging
    done: false
#}

# {{ title }}

| Task | Done |
|------|:----:|
{% for item in items %}| {{ item.task }} | {{ item.done }} |
{% endfor %}
EOF

gospelo-kata render todo_tpl.kata.md -o outputs/todo.kata.md
gospelo-kata lint outputs/todo.kata.md

2. Use a built-in template

# List available templates
gospelo-kata templates

# Initialize a project
gospelo-kata init --type checklist -o ./my-project/

3. AI workflow (recommended)

AI generates only the YAML data; assemble combines it with a built-in template:

# 1. Check schema
gospelo-kata show-schema checklist --format yaml

# 2. AI creates data.yml following the schema

# 3. Assemble template + data
gospelo-kata assemble --type checklist --data data.yml

# 4. Render and validate
gospelo-kata render checklist_tpl.kata.md -o outputs/checklist.kata.md
gospelo-kata lint outputs/checklist.kata.md

4. Extract data (round-trip)

gospelo-kata extract outputs/checklist.kata.md -o extracted.json

Reconstructs the original structured data from the rendered document.

KATA Markdown™ Format

A _tpl.kata.md file has three blocks:

{#schema
title: string!
version: string
categories[]!:
id: string!
name: string!
items[]!:
id: string!
status: enum(draft, pending, approve, reject)
tags: string[]
#}

{#data
title: Security Checklist
version: "1.0"
categories:

- id: auth
  name: Authentication
  items: - id: auth-01
  status: draft
  tags: [web, api]
  #}

{#prompt
Generate a security checklist with categories and items.
Each item needs an id, status (draft/pending/approve/reject), and tags.
#}

# {{ title }}

{% for cat in categories %}

## {{ cat.name }}

| ID                          | Status        | Tags              |
| --------------------------- | ------------- | ----------------- | ------------ | ------------- |
| {% for item in cat.items %} | {{ item.id }} | {{ item.status }} | {{ item.tags | join(", ") }} |

{% endfor %}
{% endfor %}

Schema Shorthand

Notation Meaning
string Optional string
string! Required string
int, number, boolean Typed values
enum(a, b, c) Enumeration
string[] String array
items[]!: Required array of objects (indent children)

Rendered Output

gospelo-kata render produces annotated Markdown:

  • <span data-kata="p-{path}">value</span> — data bindings
  • <div data-kata-each="collection"> — loop markers
  • <details> section with Schema + Data for reconstruction

Built-in Templates

Type Description
checklist Structured checklist with categories, status tracking, and automation levels
test_spec Test case specification with prerequisites and expected results
agenda Meeting agenda with decisions, action items, and time allocation

CLI Commands

Command Description
templates List available templates
init Initialize project from a template
render Render a .kata.md template to annotated output
assemble Combine built-in template + data file into _tpl.kata.md
lint Validate templates and rendered documents
extract Extract structured data from rendered output
validate Validate JSON/YAML data against a schema
generate Generate Markdown/Excel/HTML from JSON data
show-schema Display template schema
show-prompt Display AI prompt
fmt Auto-format data-kata spans
coverage Analyze checklist coverage
edit Browser-based data editor
workflow-status Track pipeline progress

See the CLI Reference for full details.

AI Integration

gospelo-kata is designed to work with AI assistants. The assemble command minimizes what AI needs to generate — just YAML data following the schema.

Supported AI tools:

  • Claude Code — skill files in skill/claude-code/
  • GitHub Copilot Chat — instructions via .github/copilot-instructions.md

The 3-step workflow (data.ymlassemblerender + lint) works reliably even with smaller models that have limited context windows.

VSCode Extension

Install from VS Marketplace. The kata-lint extension provides:

  • Real-time lint diagnostics in the Problems panel
  • Hover information for data-kata attributes
  • Preview CSS for kata-specific styles

See the VSCode Integration Guide.

Documentation

License

MIT — free for commercial use. Documents generated by this software and templates created by users are the intellectual property of their respective creators. When used with AI services, data may be transmitted to AI providers. See LICENSE.md for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gospelo_kata-0.2.1.tar.gz (84.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gospelo_kata-0.2.1-py3-none-any.whl (93.4 kB view details)

Uploaded Python 3

File details

Details for the file gospelo_kata-0.2.1.tar.gz.

File metadata

  • Download URL: gospelo_kata-0.2.1.tar.gz
  • Upload date:
  • Size: 84.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for gospelo_kata-0.2.1.tar.gz
Algorithm Hash digest
SHA256 e8f178e30b9d07f34f4edb76569e44ef9d92ebb8ec7b5d2127b4640b00dd2ff9
MD5 d18b99b40c3c64f8ebe38daad2248061
BLAKE2b-256 db5dc0b9bd3404be1eb3d70e66ddacda96beb0410ecc437eecc9be176e3eb977

See more details on using hashes here.

File details

Details for the file gospelo_kata-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: gospelo_kata-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 93.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for gospelo_kata-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 4deb237bd29a86047099c09a5afd40f644b44045426841b6dd1fa6feac736c1f
MD5 8f1062bc3185638ed7f88ebed373b517
BLAKE2b-256 e06e93d4102f780995f260534589792665f986b4f2ff93b37dee3be0596c96b1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page