omnilearn-workflow 1.0.7 → 1.0.8
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.
|
@@ -28,7 +28,7 @@ Both scenarios follow the same core flow: research → analyze → produce struc
|
|
|
28
28
|
<skill>/ ← Skill at learning directory root
|
|
29
29
|
├── roadmap.md
|
|
30
30
|
├── SkillPreferences.md
|
|
31
|
-
├── SkillConventions.md ←
|
|
31
|
+
├── SkillConventions.md ← Setup conventions read for consistent diagnostic tasks
|
|
32
32
|
├── progress-index.md
|
|
33
33
|
├── runs/
|
|
34
34
|
│ └── YYYY-MM-DD-HHMMSS-refine-<topic>/
|
|
@@ -40,7 +40,14 @@ Both scenarios follow the same core flow: research → analyze → produce struc
|
|
|
40
40
|
└── <topic>/
|
|
41
41
|
├── topic-roadmap.md ← Will be updated if refined
|
|
42
42
|
├── topic-explanation.md ← Theory foundation (updated if refined)
|
|
43
|
+
├── topic-progress.md ← Progress state (preserved)
|
|
43
44
|
├── assignments/ ← May be added to if needed
|
|
45
|
+
│ ├── 01-<concept>/
|
|
46
|
+
│ │ ├── question.md
|
|
47
|
+
│ │ ├── test.<ext>
|
|
48
|
+
│ │ ├── scaffold/
|
|
49
|
+
│ │ └── solution-guide.md
|
|
50
|
+
│ └── ...
|
|
44
51
|
└── runs/
|
|
45
52
|
```
|
|
46
53
|
|
|
@@ -73,12 +73,19 @@ This command performs the same rigorous research-backed process as `/omnilearn-r
|
|
|
73
73
|
│ ├── research-changes.md ← Research on requested changes
|
|
74
74
|
│ ├── old-roadmap-archived.md ← Previous version of roadmap
|
|
75
75
|
│ └── new-roadmap-draft.md ← Draft of updated roadmap
|
|
76
|
-
└── topics/ ← MUST be preserved — never delete or alter
|
|
76
|
+
└── topics/ ← MUST be preserved — never delete or alter
|
|
77
77
|
└── <topic-name>/
|
|
78
|
+
├── topic-roadmap.md
|
|
78
79
|
├── topic-explanation.md ← Theory foundation (read before assignments)
|
|
79
|
-
├── topic-progress.md ← 🔑
|
|
80
|
-
├── assignments/ ←
|
|
81
|
-
|
|
80
|
+
├── topic-progress.md ← 🔑 Source of truth for user progress
|
|
81
|
+
├── assignments/ ← MUST NOT be modified
|
|
82
|
+
│ ├── 01-<concept>/
|
|
83
|
+
│ │ ├── question.md
|
|
84
|
+
│ │ ├── test.<ext>
|
|
85
|
+
│ │ ├── scaffold/
|
|
86
|
+
│ │ └── solution-guide.md
|
|
87
|
+
│ └── ...
|
|
88
|
+
└── runs/ ← Action logs only
|
|
82
89
|
```
|
|
83
90
|
|
|
84
91
|
**Progress Inventory — Every edit must account for each topic's full state before making changes.**
|
|
@@ -15,35 +15,35 @@ description: Create a comprehensive, real-world-ready learning roadmap for any s
|
|
|
15
15
|
## Directory Structure
|
|
16
16
|
|
|
17
17
|
```
|
|
18
|
-
|
|
19
|
-
├──
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
├──
|
|
25
|
-
├──
|
|
26
|
-
├──
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
│
|
|
30
|
-
│ ├──
|
|
31
|
-
│ └──
|
|
32
|
-
└── topics/ ← Topics in the roadmap
|
|
33
|
-
└── <topic-name>/ ←
|
|
34
|
-
├── topic-roadmap.md ← Detailed subtopic roadmap
|
|
35
|
-
├──
|
|
36
|
-
├── topic-progress.md ←
|
|
37
|
-
├── assignments/
|
|
18
|
+
{learningDirectory}/
|
|
19
|
+
├── .omnilearn/ ← ONLY config + global prefs
|
|
20
|
+
│ ├── config.json
|
|
21
|
+
│ └── UserPreferences.md
|
|
22
|
+
│
|
|
23
|
+
└── <skill-name>/ ← Skills at learning directory ROOT
|
|
24
|
+
├── SkillPreferences.md ← Per-skill learning preferences
|
|
25
|
+
├── SkillConventions.md ← Setup conventions (auto-learned)
|
|
26
|
+
├── roadmap.md ← Master roadmap
|
|
27
|
+
├── progress-index.md ← Progress overview
|
|
28
|
+
├── runs/ ← Skill-level run logs
|
|
29
|
+
│ └── YYYY-MM-DD-HHMMSS-<activity>/
|
|
30
|
+
│ ├── agent-log.md
|
|
31
|
+
│ └── ...
|
|
32
|
+
└── topics/ ← Topics in the roadmap
|
|
33
|
+
└── <topic-name>/ ← One per topic
|
|
34
|
+
├── topic-roadmap.md ← Detailed subtopic roadmap
|
|
35
|
+
├── topic-explanation.md ← Theory: TL;DR → concepts → examples → pitfalls
|
|
36
|
+
├── topic-progress.md ← 🔑 Progress: assignments, sessions, skills
|
|
37
|
+
├── assignments/
|
|
38
38
|
│ ├── 01-<concept>/
|
|
39
|
-
│ │ ├── question.md ← Real-world scenario
|
|
40
|
-
│ │ ├── test.<ext> ← Automated
|
|
41
|
-
│ │ ├── scaffold/ ← Starter code
|
|
42
|
-
│ │ └── solution-guide.md ← Reference solution
|
|
43
|
-
│ └── ...
|
|
44
|
-
└── runs/ ← Per-topic action logs
|
|
39
|
+
│ │ ├── question.md ← Real-world scenario
|
|
40
|
+
│ │ ├── test.<ext> ← Automated tests
|
|
41
|
+
│ │ ├── scaffold/ ← Starter code
|
|
42
|
+
│ │ └── solution-guide.md ← Reference solution
|
|
43
|
+
│ └── 02-<concept>/ ...
|
|
44
|
+
└── runs/ ← Per-topic action logs
|
|
45
45
|
└── YYYY-MM-DD-HHMMSS-<activity>/
|
|
46
|
-
├── agent-log.md
|
|
46
|
+
├── agent-log.md
|
|
47
47
|
└── ...
|
|
48
48
|
```
|
|
49
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnilearn-workflow",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "OmniLearn — AI-powered adaptive learning workflow for OpenCode. Multi-agent orchestration that creates personalized roadmaps, hands-on assignments, and tracks progress across any skill.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"opencode",
|