1.7 KiB
1.7 KiB
Scaffolding Templates
This directory contains templates for quickly standing up new domains in the databank.
Structure
scaffolding/
├── domain-template/ # Template for new domains
│ ├── README.md # Domain overview and purpose
│ ├── context/ # Context information for this domain
│ │ └── overview.md # Overview of domain context
│ ├── operations/ # Operational information
│ │ └── procedures.md # Standard operating procedures
│ ├── personnel/ # Personnel and roles
│ │ └── roles.md # Role definitions and responsibilities
│ ├── tools/ # Tools and technology
│ │ └── stack.md # Technology stack and tools
│ └── artifacts/ # Domain-specific artifacts
│ └── samples/ # Sample artifacts for reference
└── README.md # This file
Purpose
The scaffolding directory provides templates for quickly creating new domains when needed. To create a new domain:
- Copy the
domain-template/directory to a new domain name - Customize the README.md with domain-specific information
- Fill in context, operations, personnel, and tools information
- Add domain-specific artifacts as needed
Usage
To create a new domain called "marketing":
cp -r domain-template/ ../marketing/
cd ../marketing/
# Edit README.md to describe marketing domain
# Customize other files as appropriate
Templates
Each template provides a starting point for new domains with:
- Standard directory structure
- Placeholder content for customization
- Consistent formatting and organization
- Cross-domain linking patterns