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 ← 🔑 Setup conventions read for consistent diagnostic tasks
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 topic-progress.md, assignments/, or runs/
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 ← 🔑 THE source of truth for what the user has done
80
- ├── assignments/ ← All assignment work the user has completed
81
- └── runs/ ← Learning session logs
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
- .omnilearn/ ← ONLY config and global preferences
19
- ├── UserPreferences.md Global user preferences (auto-read + updated)
20
-
21
- <skill-name>/ ← Skills at LEARNING DIRECTORY ROOT
22
- ├── SkillPreferences.md ← Per-skill learning preferences
23
- ├── SkillConventions.md 🔑 Setup conventions: package manager, project structure, deps, testing (auto-learned)
24
- ├── roadmap.md Master roadmap (the main deliverable)
25
- ├── progress-index.md Progress log — index of all runs
26
- ├── runs/ Research & execution logs
27
- │ └── YYYY-MM-DD-HHMMSS-roadmap-creation/
28
- ├── agent-log.md What this run did, decisions made
29
- ├── research-content.md ← Raw: subagent A findings (what to learn)
30
- │ ├── research-learning.md ← Raw: subagent B findings (how to learn it)
31
- │ └── roadmap-draft.md ← Raw: synthesized roadmap draft
32
- └── topics/ ← Topics in the roadmap (populated during learning)
33
- └── <topic-name>/ ← Each topic has its own progress tracking
34
- ├── topic-roadmap.md ← Detailed subtopic roadmap (created on-demand)
35
- ├── **topic-explanation.md** ← 🔑 THEORY: TL;DR → concepts → examples → pitfalls (read this first)
36
- ├── topic-progress.md ← Per-topic progress: assignments status, sessions
37
- ├── assignments/ ← Hands-on assignments (generated during learning)
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 assignment brief
40
- │ │ ├── test.<ext> ← Automated test script
41
- │ │ ├── scaffold/ ← Starter code (user writes solution here)
42
- │ │ └── solution-guide.md ← Reference solution + explanation
43
- │ └── ...
44
- └── runs/ ← Per-topic action logs (NOT progress state)
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 ← What happened this run: decisions, actions
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.7",
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",