Marketplace project-domain

Domain vocabulary and entity relationships for {project}. Ensures consistent terminology and model understanding.

install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/consiliency/stack-analyzer/templates/project-domain" ~/.claude/skills/aiskillstore-marketplace-project-domain-27caa8 && rm -rf "$T"
manifest: skills/consiliency/stack-analyzer/templates/project-domain/SKILL.md
source content
<!-- Generated by ai-dev-kit:recommend-skills on {date} --> <!-- This skill can be safely deleted if no longer needed -->

{project} Domain Vocabulary

Domain model understanding and vocabulary patterns for this project.

Variables

VariableDefaultDescription
ENFORCE_TERMINOLOGYtrueFlag inconsistent term usage
RELATIONSHIP_DEPTH2Levels of entity relationships to trace

Instructions

  1. Load domain entities from models
  2. Understand entity relationships
  3. Use consistent terminology
  4. Validate against domain rules

Red Flags - STOP and Reconsider

If you're about to:

  • Use synonyms inconsistently (e.g., "user" vs "account" interchangeably)
  • Create a model field that duplicates existing concepts
  • Ignore relationship constraints

STOP -> Check glossary -> Verify relationships -> Then proceed

Domain Glossary

Core Entities

TermDefinitionModel Location
[TODO][TODO][TODO]

Entity Relationships

[TODO: Add entity relationship diagram or description]

Example:
User 1-* Orders
Order *-1 Product
Product *-* Category

Terminology Rules

Naming Conventions

ConceptCorrect TermAvoid
[TODO][TODO][TODO]

Status Fields

EntityValid StatusesTransitions
[TODO][TODO][TODO]

Model Locations

Key models and their locations:

EntityPython ModelTypeScript TypeBAML Type
[TODO][TODO][TODO][TODO]

Validation Rules

Business rules enforced at the domain level:

  1. [TODO: Add domain validation rules]

Integration

This skill integrates with:

  • ORM models in
    src/models/
  • BAML types in
    baml_src/
  • API schemas
  • Frontend types

Customization

Edit this file to add:

  • New entity definitions
  • Relationship changes
  • Terminology rules
  • Validation constraints