Phase 1: Schema/Terminology Definition

SkillMedia

Skill for defining terminology and data structures. Covers domain terminology, entities, relationships, and schema design.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Phase 1: Schema/Terminology Definition skill

What this skill tells your AI

The instructions your AI receives, as published by ww-w-ai/bkit-gemini in skills/phase-1-schema/SKILL.md and read by ahel’s review.

Define the language and data structures of your project

Purpose

Create a shared vocabulary and data model before writing any code.

Deliverables

1. Terminology Glossary

## Terms

| Term | Definition | Example |
|------|------------|---------|
| User | A registered account | john@email.com |
| Order | A purchase transaction | ORD-123 |
| Product | An item for sale | Blue Widget |

2. Entity Definitions

interface User {
  id: string;
  email: string;
  name: string;
  createdAt: Date;
}

interface Order {
  id: string;
  userId: string;
  items: OrderItem[];
  total: number;
  status: 'pending' | 'paid' | 'shipped';
}

3. Relationship Diagram

User (1) ──── (N) Order (N) ──── (N) Product
              │
              └── (N) OrderItem

Output

Save to: docs/01-plan/schema.md

Next Phase

After completion: /phase-2-convention or /pdca design {feature}

Signals

GitHub stars
65
Forks
16
Last commit
May 2026
Advanced
Catalog kind
skill
Gateway key
phase-1-schema
Source
github.com/ww-w-ai/bkit-gemini