-
Notifications
You must be signed in to change notification settings - Fork 2
Skills: Domain Modeling
Gully Burns edited this page Feb 5, 2026
·
5 revisions
The /domain-modeling skill is a meta-skill for designing new domain-specific skills. Use it when you want to track a new type of information systematically.
When you find yourself repeatedly tracking a certain kind of information, it's time to create a dedicated skill. This skill guides you through:
- Defining the entity types for your domain
- Designing the TypeDB schema
- Writing the SKILL.md documentation
- Creating transaction scripts
You should create a new skill when:
- You're tracking the same type of information repeatedly
- The information has consistent structure
- You want to query across instances
- You need specialized analysis
Examples:
- Grant applications you're writing
- Conference talks you're preparing
- Research projects you're managing
- Datasets you're curating
All skills should follow the curation workflow:
FORAGING → INGESTION → SENSEMAKING → ANALYSIS → REPORTING
When designing a new skill, consider each stage:
| Stage | Questions to Answer |
|---|---|
| Foraging | Where does the information come from? URLs? APIs? Manual entry? |
| Ingestion | What's the raw form? How do you capture it? |
| Sensemaking | What entities should Claude extract? What relationships? |
| Analysis | What questions do you want to answer across instances? |
| Reporting | What views or dashboards would be useful? |
Let's design a skill for managing conference talks.
You: I want to track conference talks I'm giving. For each talk I need:
- The conference name, date, location
- Talk title and abstract
- Submission deadlines and status
- Slides and materials
- Audience feedback
Claude: Let me help you design a schema for this...
| Entity | Description | Attributes |
|---|---|---|
conference |
A conference event | name, date, location, url |
talk |
A talk submission | title, abstract, status, format |
deadline |
Important dates | type (submit, camera-ready, etc.), date |
material |
Associated files | type (slides, paper, demo), url |
feedback |
Audience responses | score, comments, source |
| Relationship | Description |
|---|---|
at-conference |
Links talk to conference |
has-deadline |
Links conference/talk to deadline |
has-material |
Links talk to materials |
has-feedback |
Links talk to feedback |
Foraging:
- Conference CFPs from email, Twitter, websites
- Add by URL or manual entry
Ingestion:
- Script fetches CFP details
- Stores raw CFP as artifact
Sensemaking:
- Claude extracts deadlines, topics, requirements
- You add your talk details
Analysis:
- What talks are due this month?
- What's my acceptance rate?
- Which topics get best feedback?
Reporting:
- Calendar view of deadlines
- Status pipeline (submitted → accepted → presented)
- Feedback trends
A complete skill has:
.claude/skills/conference-talks/
├── SKILL.md # Instructions for Claude
├── conference_talks.py # TypeDB transaction scripts
└── README.md # Developer documentation
# Conference Talks Skill
Use this skill to manage conference talks you're preparing and giving.
## Commands
### Add a Conference
You: Add NeurIPS 2025 to my conference list
Claude: [Creates conference entity, fetches deadlines if URL provided]
### Submit a Talk
You: I'm submitting "AI for Science" to NeurIPS 2025
Claude: [Creates talk, links to conference, notes deadline]
### Update Status
You: My NeurIPS talk was accepted!
Claude: [Updates status, creates preparation timeline]
## Status Values
- idea - Not yet submitted
- submitted - Awaiting decision
- accepted - Will present
- rejected - Not accepted
- presented - Completed- Scripts handle I/O: API calls, database transactions, file operations
- Claude handles thinking: Extraction, analysis, recommendations
- Entity types:
domain-entity(e.g.,conference-talk) - Relations:
verb-noun(e.g.,at-conference) - Attributes:
nounoradjective-noun(e.g.,status,submission-deadline)
Always link back to sources:
- Artifacts store raw content
- Fragments store extracted portions
- Notes store your annotations
Start simple, add complexity as needed:
- Basic entities and relationships
- Status tracking
- Analysis queries
- Dashboard views
You: I want to create a new skill for tracking [domain]
Claude: [Uses /domain-modeling to guide you through the design process]
Claude will help you:
- Identify entities and relationships
- Design the schema
- Write SKILL.md
- Create initial scripts
Getting Started
Architecture
Core Skills
Domain Skills
- Skills: Scientific Literature
- Skills: ALG Precision Therapeutics
- Skills: Literature Trends
- Skills: They Said Whaaa
- Skills: DisMech
- Skills: Jobhunt
Links