| name | terminology |
| description | Manage client-specific terminology and glossary |
Terminology
Manage client-specific and industry-specific terminology.
What This Does
- Loads terminology dictionary
- Adds new terms and definitions
- Updates existing definitions
- Ensures consistency across deliverables
- Provides terminology reference
Instructions for Claude
When this skill is invoked:
-
Load Terminology Dictionary
- Check if
00_Engagement_Management/terminology.json exists
- If not, create new dictionary
- Load existing terms
-
Ask User Action
- View all terms
- Add new term
- Update existing term
- Search for term
- Export glossary for deliverable
-
For Adding New Term
Capture:
- Term
- Definition
- Context (where used)
- Acronym (if applicable)
- Source (industry standard, client-specific, regulatory)
-
Maintain Terminology Categories
Industry Terms (Maritime)
- IMO, MARPOL, SOLAS
- Port operations terminology
- Vessel types and classifications
- Maritime regulations
Client-Specific Terms
- Client's internal terminology
- Project-specific abbreviations
- Stakeholder titles
- System names
CPS Standard Terms
- Service line terminology
- Consulting frameworks
- Deliverable types
-
Ensure Consistency
- Check for duplicates
- Flag conflicting definitions
- Recommend standard usage
- Update previous deliverables if needed
-
Export Glossary
- Generate markdown glossary
- Format for inclusion in deliverables
- Sort alphabetically
- Include categories
-
Save Updates
- Update
terminology.json
- Timestamp changes
- Confirm save
Terminology JSON Structure
{
"industry_terms": {
"IMO": {
"full_name": "International Maritime Organization",
"definition": "...",
"context": "Regulatory compliance"
}
},
"client_terms": {
"...": {}
},
"cps_terms": {
"...": {}
}
}
Reference
See .claude/skills/configuration/references/terminology.md for detailed implementation.