Skip to content

Commit 25ab7a4

Browse files
committed
chore: rebrand Monimen to DevTrail
BREAKING CHANGE: Complete rebrand from Monimen to DevTrail - Rename .monimen/ to .devtrail/ - Rename all skill folders and workflows - Rename scripts (monimen-* to devtrail-*) - Rename assets and SPDX file - Update all references in documentation - Update all URLs to point to devtrail - Update git remote to Enigmora/devtrail
1 parent cec7883 commit 25ab7a4

83 files changed

Lines changed: 851 additions & 851 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Create an ADR (Architecture Decision Record) for significant architectural decisions. Requires human review.
33
---
44

5-
# Monimen ADR Skill
5+
# DevTrail ADR Skill
66

77
Create an Architecture Decision Record (ADR) for significant architectural decisions.
88

@@ -22,7 +22,7 @@ date +%Y-%m-%d
2222
git diff --stat HEAD~1 2>/dev/null || git diff --stat
2323

2424
# Check for related ADRs
25-
ls .monimen/02-design/decisions/ADR-*.md 2>/dev/null | tail -5
25+
ls .devtrail/02-design/decisions/ADR-*.md 2>/dev/null | tail -5
2626
```
2727

2828
### 2. Confirm with User
@@ -31,7 +31,7 @@ ls .monimen/02-design/decisions/ADR-*.md 2>/dev/null | tail -5
3131

3232
```
3333
╔══════════════════════════════════════════════════════════════════╗
34-
Monimen ADR ║
34+
DevTrail ADR ║
3535
╠══════════════════════════════════════════════════════════════════╣
3636
║ ║
3737
║ ⚠️ ADRs require human review after creation. ║
@@ -54,14 +54,14 @@ ls .monimen/02-design/decisions/ADR-*.md 2>/dev/null | tail -5
5454

5555
```bash
5656
# Count existing ADRs for today
57-
ls .monimen/02-design/decisions/ADR-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
57+
ls .devtrail/02-design/decisions/ADR-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
5858
```
5959

6060
### 4. Check Language and Load Template
6161

62-
Read `.monimen/config.yml` for language setting:
63-
- `en` (default): `.monimen/templates/TEMPLATE-ADR.md`
64-
- `es`: `.monimen/templates/i18n/es/TEMPLATE-ADR.md`
62+
Read `.devtrail/config.yml` for language setting:
63+
- `en` (default): `.devtrail/templates/TEMPLATE-ADR.md`
64+
- `es`: `.devtrail/templates/i18n/es/TEMPLATE-ADR.md`
6565

6666
### 5. Create Document
6767

@@ -86,18 +86,18 @@ Fill template with:
8686
- Implementation Plan: High-level steps
8787
- Success Metrics: How to validate the decision
8888

89-
Save to: `.monimen/02-design/decisions/ADR-YYYY-MM-DD-NNN-description.md`
89+
Save to: `.devtrail/02-design/decisions/ADR-YYYY-MM-DD-NNN-description.md`
9090

9191
### 6. Report Result
9292

9393
```
9494
⚠️ ADR created (requires human review):
95-
.monimen/02-design/decisions/ADR-YYYY-MM-DD-NNN-description.md
95+
.devtrail/02-design/decisions/ADR-YYYY-MM-DD-NNN-description.md
9696
9797
Status: draft
9898
Review Required: YES
9999
100-
Monimen: Created ADR-YYYY-MM-DD-NNN-description.md (review required)
100+
DevTrail: Created ADR-YYYY-MM-DD-NNN-description.md (review required)
101101
```
102102

103103
## Examples of Architectural Decisions
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Create an AIDEC (AI Decision) document to record a technical decision with alternatives considered.
33
---
44

5-
# Monimen AIDEC Skill
5+
# DevTrail AIDEC Skill
66

77
Create an AI Decision (AIDEC) document to record technical decisions and the alternatives considered.
88

@@ -26,7 +26,7 @@ git diff --stat HEAD~1 2>/dev/null || git diff --stat
2626

2727
```
2828
╔══════════════════════════════════════════════════════════════════╗
29-
Monimen AIDEC ║
29+
DevTrail AIDEC ║
3030
╠══════════════════════════════════════════════════════════════════╣
3131
║ ║
3232
║ 📋 AIDEC documents a decision between alternatives. ║
@@ -43,14 +43,14 @@ git diff --stat HEAD~1 2>/dev/null || git diff --stat
4343

4444
```bash
4545
# Count existing AIDECs for today
46-
ls .monimen/07-ai-audit/decisions/AIDEC-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
46+
ls .devtrail/07-ai-audit/decisions/AIDEC-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
4747
```
4848

4949
### 4. Check Language and Load Template
5050

51-
Read `.monimen/config.yml` for language setting:
52-
- `en` (default): `.monimen/templates/TEMPLATE-AIDEC.md`
53-
- `es`: `.monimen/templates/i18n/es/TEMPLATE-AIDEC.md`
51+
Read `.devtrail/config.yml` for language setting:
52+
- `en` (default): `.devtrail/templates/TEMPLATE-AIDEC.md`
53+
- `es`: `.devtrail/templates/i18n/es/TEMPLATE-AIDEC.md`
5454

5555
### 5. Create Document
5656

@@ -69,15 +69,15 @@ Fill template with:
6969
- Decision: Which was chosen and justification
7070
- Consequences: Positive, negative, and risks
7171

72-
Save to: `.monimen/07-ai-audit/decisions/AIDEC-YYYY-MM-DD-NNN-description.md`
72+
Save to: `.devtrail/07-ai-audit/decisions/AIDEC-YYYY-MM-DD-NNN-description.md`
7373

7474
### 6. Report Result
7575

7676
```
7777
✅ AIDEC created:
78-
.monimen/07-ai-audit/decisions/AIDEC-YYYY-MM-DD-NNN-description.md
78+
.devtrail/07-ai-audit/decisions/AIDEC-YYYY-MM-DD-NNN-description.md
7979
80-
Monimen: Created AIDEC-YYYY-MM-DD-NNN-description.md
80+
DevTrail: Created AIDEC-YYYY-MM-DD-NNN-description.md
8181
```
8282

8383
## When to Create an AIDEC
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description: Create an AILOG (AI Action Log) document for the current changes. Quick shortcut for the most common document type.
33
---
44

5-
# Monimen AILOG Skill
5+
# DevTrail AILOG Skill
66

77
Quickly create an AI Action Log (AILOG) document for the current changes.
88

@@ -29,7 +29,7 @@ git diff --stat HEAD~1 2>/dev/null || git diff --stat
2929

3030
```
3131
╔══════════════════════════════════════════════════════════════════╗
32-
Monimen AILOG ║
32+
DevTrail AILOG ║
3333
╠══════════════════════════════════════════════════════════════════╣
3434
║ ║
3535
║ 📊 Changes detected: ║
@@ -47,16 +47,16 @@ git diff --stat HEAD~1 2>/dev/null || git diff --stat
4747

4848
```bash
4949
# Count existing AILOGs for today
50-
ls .monimen/07-ai-audit/agent-logs/AILOG-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
50+
ls .devtrail/07-ai-audit/agent-logs/AILOG-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
5151
```
5252

5353
Next number = count + 1, formatted as 3 digits (001, 002, etc.)
5454

5555
### 4. Check Language and Load Template
5656

57-
Read `.monimen/config.yml` for language setting:
58-
- `en` (default): `.monimen/templates/TEMPLATE-AILOG.md`
59-
- `es`: `.monimen/templates/i18n/es/TEMPLATE-AILOG.md`
57+
Read `.devtrail/config.yml` for language setting:
58+
- `en` (default): `.devtrail/templates/TEMPLATE-AILOG.md`
59+
- `es`: `.devtrail/templates/i18n/es/TEMPLATE-AILOG.md`
6060

6161
### 5. Create Document
6262

@@ -68,15 +68,15 @@ Fill template with:
6868
- `confidence`: based on change complexity
6969
- `risk_level`: based on files modified
7070

71-
Save to: `.monimen/07-ai-audit/agent-logs/AILOG-YYYY-MM-DD-NNN-description.md`
71+
Save to: `.devtrail/07-ai-audit/agent-logs/AILOG-YYYY-MM-DD-NNN-description.md`
7272

7373
### 6. Report Result
7474

7575
```
7676
✅ AILOG created:
77-
.monimen/07-ai-audit/agent-logs/AILOG-YYYY-MM-DD-NNN-description.md
77+
.devtrail/07-ai-audit/agent-logs/AILOG-YYYY-MM-DD-NNN-description.md
7878
79-
Monimen: Created AILOG-YYYY-MM-DD-NNN-description.md
79+
DevTrail: Created AILOG-YYYY-MM-DD-NNN-description.md
8080
```
8181

8282
## Risk Level Guidelines
Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
description: Create Monimen documentation. Analyzes context to suggest document type or accepts explicit type parameter. Always confirms before creating.
2+
description: Create DevTrail documentation. Analyzes context to suggest document type or accepts explicit type parameter. Always confirms before creating.
33
---
44

5-
# Monimen New Skill
5+
# DevTrail New Skill
66

7-
Create Monimen Framework documentation based on recent changes.
7+
Create DevTrail documentation based on recent changes.
88

99
## Instructions
1010

1111
When invoked, follow these steps:
1212

1313
### 1. Check for Parameters
1414

15-
If the user specified a document type (e.g., `/monimen-new ailog`), skip to step 4 using that type.
15+
If the user specified a document type (e.g., `/devtrail-new ailog`), skip to step 4 using that type.
1616

1717
Valid types: `ailog`, `aidec`, `adr`, `eth`, `req`, `tes`, `inc`, `tde`
1818

@@ -55,7 +55,7 @@ Based on the analysis, suggest a document type:
5555

5656
```
5757
╔══════════════════════════════════════════════════════════════════╗
58-
Monimen New ║
58+
DevTrail New ║
5959
╠══════════════════════════════════════════════════════════════════╣
6060
║ ║
6161
║ 📊 Analysis: ║
@@ -78,23 +78,23 @@ Wait for user confirmation before proceeding.
7878

7979
### 5. Check Language Configuration
8080

81-
Read `.monimen/config.yml` to determine language:
81+
Read `.devtrail/config.yml` to determine language:
8282

8383
```yaml
8484
language: en # or es
8585
```
8686
8787
Use template path based on language:
88-
- `en` (default): `.monimen/templates/TEMPLATE-[TYPE].md`
89-
- `es`: `.monimen/templates/i18n/es/TEMPLATE-[TYPE].md`
88+
- `en` (default): `.devtrail/templates/TEMPLATE-[TYPE].md`
89+
- `es`: `.devtrail/templates/i18n/es/TEMPLATE-[TYPE].md`
9090

9191
### 6. Generate Document ID
9292

9393
Determine the next sequence number:
9494

9595
```bash
9696
# Find existing documents of this type for today
97-
ls .monimen/*/[TYPE]-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
97+
ls .devtrail/*/[TYPE]-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
9898
```
9999

100100
ID format: `[TYPE]-YYYY-MM-DD-NNN`
@@ -111,22 +111,22 @@ ID format: `[TYPE]-YYYY-MM-DD-NNN`
111111

112112
| Type | Location |
113113
|------|----------|
114-
| AILOG | `.monimen/07-ai-audit/agent-logs/` |
115-
| AIDEC | `.monimen/07-ai-audit/decisions/` |
116-
| ETH | `.monimen/07-ai-audit/ethical-reviews/` |
117-
| ADR | `.monimen/02-design/decisions/` |
118-
| REQ | `.monimen/01-requirements/` |
119-
| TES | `.monimen/04-testing/` |
120-
| INC | `.monimen/05-operations/incidents/` |
121-
| TDE | `.monimen/06-evolution/technical-debt/` |
114+
| AILOG | `.devtrail/07-ai-audit/agent-logs/` |
115+
| AIDEC | `.devtrail/07-ai-audit/decisions/` |
116+
| ETH | `.devtrail/07-ai-audit/ethical-reviews/` |
117+
| ADR | `.devtrail/02-design/decisions/` |
118+
| REQ | `.devtrail/01-requirements/` |
119+
| TES | `.devtrail/04-testing/` |
120+
| INC | `.devtrail/05-operations/incidents/` |
121+
| TDE | `.devtrail/06-evolution/technical-debt/` |
122122

123123
### 8. Report Result
124124

125125
After creation, display:
126126

127127
```
128-
Monimen document created:
129-
.monimen/[path]/[TYPE]-YYYY-MM-DD-NNN-description.md
128+
DevTrail document created:
129+
.devtrail/[path]/[TYPE]-YYYY-MM-DD-NNN-description.md
130130
131131
Review required: [yes/no]
132132
Risk level: [low/medium/high/critical]
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
2-
description: Show Monimen documentation status. Use to verify if AI agents properly documented their changes.
2+
description: Show DevTrail documentation status. Use to verify if AI agents properly documented their changes.
33
---
44

5-
# Monimen Status Skill
5+
# DevTrail Status Skill
66

7-
This skill checks the documentation status of the Monimen Framework in the current project.
7+
This skill checks the documentation status of the DevTrail in the current project.
88

99
## Instructions
1010

1111
When invoked, perform the following checks and display the results:
1212

13-
### 1. Find Recent Monimen Documents
13+
### 1. Find Recent DevTrail Documents
1414

15-
Search for Monimen documents created or modified in the last hour:
15+
Search for DevTrail documents created or modified in the last hour:
1616

1717
```bash
1818
# Get documents modified in the last hour
19-
git log --since="1 hour ago" --name-only --pretty=format: -- ".monimen/**/*.md" | sort -u | grep -v "^$"
19+
git log --since="1 hour ago" --name-only --pretty=format: -- ".devtrail/**/*.md" | sort -u | grep -v "^$"
2020
```
2121

2222
If git is not available or the directory is not a git repo, use file modification times:
23-
- Check `.monimen/07-ai-audit/agent-logs/` for recent AILOG files
24-
- Check `.monimen/07-ai-audit/decisions/` for recent AIDEC files
25-
- Check `.monimen/07-ai-audit/ethical-reviews/` for recent ETH files
23+
- Check `.devtrail/07-ai-audit/agent-logs/` for recent AILOG files
24+
- Check `.devtrail/07-ai-audit/decisions/` for recent AIDEC files
25+
- Check `.devtrail/07-ai-audit/ethical-reviews/` for recent ETH files
2626

2727
### 2. Find Modified Source Files
2828

@@ -39,7 +39,7 @@ Filter to show only files that might need documentation:
3939

4040
### 3. Analyze Documentation Gaps
4141

42-
For each modified source file, check if there's a corresponding Monimen document:
42+
For each modified source file, check if there's a corresponding DevTrail document:
4343
- Files with >10 lines of changes in business logic folders should have an AILOG
4444
- Security-related files should have documentation with `risk_level: high`
4545

@@ -48,7 +48,7 @@ For each modified source file, check if there's a corresponding Monimen document
4848
Format the output as follows:
4949

5050
```
51-
Monimen Status
51+
DevTrail Status
5252
================================================================================
5353
5454
Recent Documents (last hour):
@@ -63,7 +63,7 @@ Summary:
6363
Documents created: 2
6464
Files needing review: 2
6565
66-
Use /monimen-new to create documentation for undocumented changes.
66+
Use /devtrail-new to create documentation for undocumented changes.
6767
```
6868

6969
### Symbol Legend
@@ -75,12 +75,12 @@ Use /monimen-new to create documentation for undocumented changes.
7575
### Edge Cases
7676

7777
1. **No git repository**: Show message explaining git is required for full functionality
78-
2. **No recent documents**: Show "No Monimen documents created in the last hour"
78+
2. **No recent documents**: Show "No DevTrail documents created in the last hour"
7979
3. **No modified files**: Show "No source files modified recently"
80-
4. **Empty .monimen directory**: Show warning that Monimen may not be properly set up
80+
4. **Empty .devtrail directory**: Show warning that DevTrail may not be properly set up
8181

8282
### Additional Notes
8383

8484
- This skill is read-only and does not create or modify files
8585
- Run this after completing development tasks to verify documentation compliance
86-
- If files need documentation, remind the user of the Monimen Framework rules
86+
- If files need documentation, remind the user of the DevTrail rules

0 commit comments

Comments
 (0)