@grimoire-cc/cli 0.6.2 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.js +4 -1
- package/dist/bin.js.map +1 -1
- package/dist/commands/logs.d.ts.map +1 -1
- package/dist/commands/logs.js +2 -2
- package/dist/commands/logs.js.map +1 -1
- package/dist/static/log-viewer.html +946 -690
- package/dist/static/static/log-viewer.html +946 -690
- package/package.json +1 -1
- package/packs/dev-pack/agents/gr.code-reviewer.md +286 -0
- package/packs/dev-pack/agents/gr.tdd-specialist.md +44 -0
- package/packs/dev-pack/grimoire.json +55 -0
- package/packs/dev-pack/skills/gr.tdd-specialist/SKILL.md +247 -0
- package/packs/dev-pack/skills/gr.tdd-specialist/reference/anti-patterns.md +166 -0
- package/packs/dev-pack/skills/gr.tdd-specialist/reference/language-frameworks.md +388 -0
- package/packs/dev-pack/skills/gr.tdd-specialist/reference/tdd-workflow-patterns.md +135 -0
- package/packs/docs-pack/grimoire.json +30 -0
- package/packs/docs-pack/skills/gr.business-logic-docs/SKILL.md +141 -0
- package/packs/docs-pack/skills/gr.business-logic-docs/references/tier2-template.md +74 -0
- package/packs/essentials-pack/agents/gr.fact-checker.md +202 -0
- package/packs/essentials-pack/grimoire.json +12 -0
- package/packs/meta-pack/grimoire.json +72 -0
- package/packs/meta-pack/skills/gr.context-file-guide/SKILL.md +201 -0
- package/packs/meta-pack/skills/gr.context-file-guide/scripts/validate-context-file.sh +29 -0
- package/packs/meta-pack/skills/gr.readme-guide/SKILL.md +362 -0
- package/packs/meta-pack/skills/gr.skill-developer/SKILL.md +321 -0
- package/packs/meta-pack/skills/gr.skill-developer/examples/brand-guidelines.md +94 -0
- package/packs/meta-pack/skills/gr.skill-developer/examples/financial-analysis.md +85 -0
- package/packs/meta-pack/skills/gr.skill-developer/reference/best-practices.md +410 -0
- package/packs/meta-pack/skills/gr.skill-developer/reference/file-organization.md +452 -0
- package/packs/meta-pack/skills/gr.skill-developer/reference/patterns.md +459 -0
- package/packs/meta-pack/skills/gr.skill-developer/reference/yaml-spec.md +214 -0
- package/packs/meta-pack/skills/gr.skill-developer/scripts/create-skill.sh +210 -0
- package/packs/meta-pack/skills/gr.skill-developer/scripts/validate-skill.py +520 -0
- package/packs/meta-pack/skills/gr.skill-developer/templates/basic-skill.md +94 -0
- package/packs/meta-pack/skills/gr.skill-developer/templates/domain-skill.md +108 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
# Domain-Specific Skill Template
|
|
2
|
+
|
|
3
|
+
Use this template for skills requiring specialized domain expertise.
|
|
4
|
+
|
|
5
|
+
<!--
|
|
6
|
+
IMPORTANT SIZE REQUIREMENTS:
|
|
7
|
+
- Keep SKILL.md body under 500 lines (excluding YAML frontmatter)
|
|
8
|
+
- Total skill bundle must be under 8MB (all files combined)
|
|
9
|
+
- Reference files >100 lines need table of contents at top
|
|
10
|
+
- Link all references one level deep from SKILL.md
|
|
11
|
+
- Validation script enforces these limits
|
|
12
|
+
|
|
13
|
+
For domain skills with extensive content:
|
|
14
|
+
- Move detailed specifications to reference/ files
|
|
15
|
+
- Place full examples in examples/ directory
|
|
16
|
+
- Use progressive disclosure to keep SKILL.md concise
|
|
17
|
+
|
|
18
|
+
For detailed guidance, see reference/file-organization.md
|
|
19
|
+
-->
|
|
20
|
+
|
|
21
|
+
```yaml
|
|
22
|
+
---
|
|
23
|
+
name: domain-specific-skill
|
|
24
|
+
description: "Domain expertise and capabilities. Use when working with [domain keywords]"
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# Domain Expert Skill
|
|
28
|
+
|
|
29
|
+
This skill provides [domain] expertise for [specific use cases].
|
|
30
|
+
|
|
31
|
+
## Domain Overview
|
|
32
|
+
|
|
33
|
+
Brief introduction to the domain and what this skill covers.
|
|
34
|
+
|
|
35
|
+
## Key Concepts
|
|
36
|
+
|
|
37
|
+
### Concept 1: Name
|
|
38
|
+
Definition and explanation.
|
|
39
|
+
|
|
40
|
+
### Concept 2: Name
|
|
41
|
+
Definition and explanation.
|
|
42
|
+
|
|
43
|
+
## Capabilities
|
|
44
|
+
|
|
45
|
+
- **Analysis**: What analysis it performs
|
|
46
|
+
- **Calculation**: What calculations it handles
|
|
47
|
+
- **Validation**: What validations it applies
|
|
48
|
+
- **Interpretation**: What interpretations it provides
|
|
49
|
+
|
|
50
|
+
## Methodology
|
|
51
|
+
|
|
52
|
+
1. **Data Collection**: How to gather inputs
|
|
53
|
+
2. **Processing**: How data is analyzed
|
|
54
|
+
3. **Results**: What outputs are generated
|
|
55
|
+
4. **Interpretation**: How to understand results
|
|
56
|
+
|
|
57
|
+
## Standards and Benchmarks
|
|
58
|
+
|
|
59
|
+
Industry standards or benchmarks used:
|
|
60
|
+
- Standard 1: Description
|
|
61
|
+
- Standard 2: Description
|
|
62
|
+
|
|
63
|
+
## Example Workflows
|
|
64
|
+
|
|
65
|
+
### Workflow 1: Common Use Case
|
|
66
|
+
Step-by-step process for typical scenario.
|
|
67
|
+
|
|
68
|
+
### Workflow 2: Another Use Case
|
|
69
|
+
Step-by-step process for another scenario.
|
|
70
|
+
|
|
71
|
+
## Best Practices
|
|
72
|
+
|
|
73
|
+
1. Practice specific to domain
|
|
74
|
+
2. Another domain-specific practice
|
|
75
|
+
3. Quality standards
|
|
76
|
+
|
|
77
|
+
## Limitations
|
|
78
|
+
|
|
79
|
+
- Domain-specific constraints
|
|
80
|
+
- Data requirements
|
|
81
|
+
- Applicability boundaries
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
## When to Use This Template
|
|
85
|
+
|
|
86
|
+
- **Specialized domains**: Finance, engineering, design, legal, medical
|
|
87
|
+
- **Expert knowledge required**: Industry-specific terminology and methods
|
|
88
|
+
- **Multiple workflows**: Different use cases within same domain
|
|
89
|
+
- **Standards/benchmarks**: Compliance or comparison against industry norms
|
|
90
|
+
- **Complex methodology**: Multi-step processes requiring explanation
|
|
91
|
+
|
|
92
|
+
## Additional Sections to Consider
|
|
93
|
+
|
|
94
|
+
For very specialized domains, add:
|
|
95
|
+
|
|
96
|
+
- **Glossary**: Domain terminology definitions
|
|
97
|
+
- **Regulatory Compliance**: Relevant regulations or standards
|
|
98
|
+
- **Risk Factors**: Warnings about common pitfalls
|
|
99
|
+
- **Quality Metrics**: How to measure success
|
|
100
|
+
- **Validation Criteria**: How to verify results
|
|
101
|
+
|
|
102
|
+
## Example Skills Using This Pattern
|
|
103
|
+
|
|
104
|
+
- Financial analysis and valuation
|
|
105
|
+
- Architectural design standards
|
|
106
|
+
- Medical diagnosis assistance
|
|
107
|
+
- Legal document review
|
|
108
|
+
- Scientific methodology guidance
|