Skip to main content

Naming Standards

How do you make a system's concepts navigable by both humans and machines?

Three layers, each with a different job. Most teams build one and wonder why the other two break.

Three Layers

LayerWhat It IsJob To Be Done
TaxonomyStructured classification — domains, subdomains, artifact typesShared mental model of where things live. Navigation, discovery, grouping
NomenclatureRule-based naming — formats, casing, patterns, uniquenessClear, unique, predictable labels. Parseable by humans and machines
OntologyFormal model of concepts and relationshipsAgents and tools reason over the domain. Bridges between taxonomies

Taxonomy gives structure (what concepts exist and how they're grouped). Nomenclature gives labels (rules for naming instances within that structure). Ontology gives semantics (relations so systems can reason about the structure).

WithoutSymptom
TaxonomySame concept lives in three places, nobody finds anything
NomenclatureEvery file named differently, search is guesswork
OntologyAgents can't reason, every integration is bespoke

Without consistency, improvement is guesswork.


Taxonomy

Our canonical set of domains, subdomains, and artifact types.

Operations Hierarchy

Four levels from strategic to tactical:

STANDARD (Why)  →  PROCESS (What)  →  WORKFLOW (How)  →  CHECKLIST (Verify)
TermQuestionScopeChangesExample
StandardWhy does this matter?Organization-wide rulesRarelyBrand Guidelines, Security Policy
ProcessWhat needs to happen?End-to-end outcomePeriodicallyMarketing, Onboarding, Sales
WorkflowHow do we do this activity?Step-by-step executionRegularlyArticle Copywriting, Lead Qualification
ChecklistDid we do it right?VerificationAs neededQuality Gate, Pre-publish Check
STANDARD: Marketing Principles
└── PROCESS: Content Marketing
└── WORKFLOW: Article Copywriting
└── CHECKLIST: Final Quality Gate

Disambiguation:

Use ThisNot ThisReason
StandardPolicy, Guideline, RuleImplies measurable compliance
ProcessSystem, FunctionImplies flow from trigger to outcome
WorkflowSOP, Procedure, PlaybookTool-agnostic and clear
ChecklistTask list, To-doImplies verification, not work

Special terms:

TermDefinitionWhen to Use
ProtocolRules governing interaction between systemsAPI specs, data exchange formats, governance rules
PlaybookCollection of related workflows"Everything you need to run [function]"
PracticeInformal pattern not yet documentedCapture as workflow when proven valuable
Work ChartCapability-to-demand mappingWho does what (separate from how)

Full definitions: Process Optimisation

Content Structure

DirectoryPurposeContent Type
/docs/Published documentationEvergreen reference, frameworks, guides
/meta/Published insightsTime-stamped articles, predictions, reflections
/.agent-work/Working filesDrafts, research, planning (not version controlled)
/.ai/Agent configurationSkills, commands, context
TypeLocationPurposeFrontmatter
Index*/index.mdCategory overview, navigationsidebar_position: 1
Guide/docs/*/How-to, referenceStandard tags
Workflow/docs/crypto/business/*/Step-by-step processActivity tags
Article/meta/YYYY-MM-DD-*.mdDated insightDate, authors, tags
Profile/docs/journey/mastermind/Person/entity analysisProfile tags

5P Structure

Every domain follows the same folder taxonomy:

[domain]/
├── index.md
├── [domain]-principles/ # What truths guide this domain?
├── [domain]-platform/ # What tools/infrastructure?
├── [domain]-protocols/ # What standardized processes?
├── [domain]-performance/ # How do we measure?
└── [domain]-players/ # Who does the work?

Applied fractally: Marketing gets five subfolders. Space gets five subfolders. Countries get scored on five dimensions. Same meta, different matter.


Nomenclature

How we name concrete artifacts within the taxonomy — unambiguous and machine-friendly.

Files & Folders

Folders: kebab-case

✅ docs/business/growth/marketing/
✅ docs/systems/process-optimisation/

❌ docs/Business/Growth/Marketing/ (no capitals)
❌ docs/business/growth/Marketing/ (inconsistent)
❌ docs/business_growth_marketing/ (no underscores)

Files: kebab-case.md or kebab-case.mdx

✅ marketing-article-copywriting.md
✅ process-optimisation.md

❌ MarketingArticleCopywriting.md (no PascalCase)
❌ marketing_article_copywriting.md (no underscores)
❌ marketing article copywriting.md (no spaces)

Index files: index.md or index.mdx for category pages

✅ docs/systems/index.md
✅ docs/business/growth/marketing/index.md

❌ docs/systems/systems.md (use index.md)
❌ docs/systems/README.md (use index.md)

Dated content: YYYY-MM-DD-slug.md

✅ meta/2024-12-14-the-amplifying-wave.md
✅ meta/2024-12-10-naming-matters.md

❌ meta/the-amplifying-wave.md (missing date)
❌ meta/14-12-2024-the-wave.md (wrong date format)

Frontmatter

Required fields:

---
title: Page Title
sidebar_label: Short Label
tags:
- PrimaryCategory
- SecondaryCategory
---

Optional fields:

description: SEO description (150-160 chars)
sidebar_position: 1
authors: [matt]
date: 2024-12-14

Tags

  • Use existing tags before creating new ones
  • Capitalize first letter: Marketing not marketing
  • Singular form: Workflow not Workflows
  • No spaces: BOaaS not BOa aS

Core tags: Systems, Process, Workflow, Standards, BOaaS, Marketing, Platform, AI, Crypto, DePIN

Skills

For .agents/skills/ directories (AAIF standard).

Pattern: {category}-{capability} or {verb}-{noun}

✅ design-system
✅ question-led-writing
✅ building-landing-pages

❌ designSystem (use kebab-case)
❌ design_system (no underscores)
❌ ds (too abbreviated)
PrefixDomainExamples
design-*Visual/UIdesign-system, design-audit
building-*Constructionbuilding-landing-pages
writing-*Content creationquestion-led-writing
researching-*Investigationresearching-depin, researching-business-ideas
tracking-*Monitoringtracking-predictions
analyzing-*Analysisanalyzing-industries

Word List

UseInstead OfReason
WorkflowSOP, Procedure, Playbook (for single activity)Tool-agnostic, clear
StandardPolicy, Guideline, RuleImplies measurable
ProcessSystem (for work documentation)Implies flow
ChecklistTask list, To-do listImplies verification
Work ChartOrg Chart, RACICapability-focused

Discouraged terms:

AvoidUse InsteadReason
SOPWorkflowIndustry jargon
ProcedureWorkflowAmbiguous
Policy (for work docs)Standard"Policy" implies HR/legal
GuidelineStandard or WorkflowToo weak
Best PracticeStandard or WorkflowVague, undocumented
Protocol (for work steps)WorkflowReserve for system interaction

AI writing terms:

AvoidUse InsteadReason
"dive into""explore", "examine"Cliche
"unveil""show", "reveal"Cliche
"realm""area", "domain"Cliche
"leverage" (as verb)"use"Jargon
"utilize""use"Unnecessary complexity
"in order to""to"Wordy

Search Patterns

Design names so prefix search works:

"marketing-"     → All marketing activities
"workflow-" → All workflow documents
"researching-" → All research skills
"/docs/crypto/business/" → All business documentation

Names should be unique enough to grep:

# Find all workflow documents
grep -r "Workflow" docs/ --include="*.md"

# Find all marketing protocols
ls docs/business/growth/marketing/marketing-processes/

Ontology

Formal relationships so humans and AI agents can operate coherently on the system.

Today this is implicit — encoded in directory structure, link patterns, and page conventions. The path forward is making it explicit and queryable.

RelationshipExampleEncoded By
domain HAS subdomainBusiness HAS MarketingDirectory nesting
standard GOVERNS processNaming Standards GOVERNS file creationThis page
protocol ENABLES interoperabilityA2A ENABLES agent coordinationProtocols
PRD DECOMPOSES_INTO capabilitiesSales Dev Agent HAS Lead ScoringMycelium
index DEFINES, star IMPLEMENTSStandards defines, Industry appliesFACT-Star architecture

The data footprint is the ontology made operational. Every industry is a data model. Understanding the data model is understanding the domain.

The Knowledge Schema describes how schemas influence attention and learning. Ontology is the schema made machine-readable — so agents can query and traverse the concept graph without human mediation.


Benchmark Context

Naming is measurement infrastructure.

Naming Quality SignalPerformance Impact
Canonical term is used consistentlyMetrics and dashboards aggregate correctly
One concept has one nameTrend analysis is comparable over time
Prefix and taxonomy are stableSearch and retrieval remain reliable
Ambiguous aliases are removedLess false confidence in performance reporting

Without naming standards, benchmarks fragment and the scoreboard lies.


Change Log

DateChangeReason
2026-02Added three-layer framework (Taxonomy, Nomenclature, Ontology)Distinguish structure, labels, and semantics
2025-12Adopted 5P folder structure standardUniversal schema for all domains
2025-12Renamed marketing-activities to marketing-protocolsAlign with 5P framework
2025-12Renamed marketing-team to marketing-playersAccommodate human + AI players
2024-12Established operations terminology hierarchyStandardize process documentation
2024-12Created naming standards documentSingle source of truth for terminology

Context