omnilearn-workflow 1.0.0 → 1.0.1
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,6 +28,7 @@ Both scenarios follow the same core flow: research → analyze → produce struc
|
|
|
28
28
|
.omnilearn/<skill>/
|
|
29
29
|
├── roadmap.md
|
|
30
30
|
├── SkillPreferences.md
|
|
31
|
+
├── SkillConventions.md ← 🔑 Setup conventions read for consistent diagnostic tasks
|
|
31
32
|
├── progress-index.md
|
|
32
33
|
├── runs/
|
|
33
34
|
│ └── YYYY-MM-DD-HHMMSS-refine-<topic>/
|
|
@@ -32,6 +32,7 @@ This command performs the same rigorous research-backed process as `/omnilearn-r
|
|
|
32
32
|
├── UserPreferences.md
|
|
33
33
|
└── <skill-name>/
|
|
34
34
|
├── SkillPreferences.md
|
|
35
|
+
├── SkillConventions.md ← Preserved during edits
|
|
35
36
|
├── roadmap.md ← Will be updated
|
|
36
37
|
├── progress-index.md ← Must be preserved & updated
|
|
37
38
|
├── runs/
|
|
@@ -19,6 +19,7 @@ description: Create a comprehensive, real-world-ready learning roadmap for any s
|
|
|
19
19
|
├── UserPreferences.md ← Global user preferences (auto-read + updated)
|
|
20
20
|
└── <skill-name>/ ← Normalized skill folder (e.g., "Rust", "Machine-Learning")
|
|
21
21
|
├── SkillPreferences.md ← Per-skill learning preferences
|
|
22
|
+
├── SkillConventions.md ← 🔑 Setup conventions: package manager, project structure, deps, testing (auto-learned)
|
|
22
23
|
├── roadmap.md ← Master roadmap (the main deliverable)
|
|
23
24
|
├── progress-index.md ← Progress log — index of all runs
|
|
24
25
|
├── runs/ ← Research & execution logs
|
|
@@ -30,7 +30,8 @@ The goal metric: **Can the user apply what they learned to real-world problems t
|
|
|
30
30
|
.omnilearn/<skill>/
|
|
31
31
|
├── roadmap.md
|
|
32
32
|
├── SkillPreferences.md
|
|
33
|
-
├──
|
|
33
|
+
├── SkillConventions.md ← 🔑 Setup conventions: package manager, project structure, deps, testing preferences (auto-learned)
|
|
34
|
+
├── progress-index.md ← Overview index: links to topic-progress.md per topic
|
|
34
35
|
├── runs/ ← Skill-level run logs (action logs only, NOT progress)
|
|
35
36
|
│ └── YYYY-MM-DD-HHMMSS-learning-<topic>/
|
|
36
37
|
│ ├── agent-log.md ← What happened this run: decisions, actions taken
|
|
@@ -111,11 +112,12 @@ if [ ! -d "$SKILL_DIR" ] || [ ! -f "$ROADMAP" ]; then
|
|
|
111
112
|
fi
|
|
112
113
|
```
|
|
113
114
|
|
|
114
|
-
### 0.3 Read Progress, Preferences & Cross-Skill Inventory
|
|
115
|
+
### 0.3 Read Progress, Preferences, Conventions & Cross-Skill Inventory
|
|
115
116
|
|
|
116
117
|
Read these files to understand the current state:
|
|
117
118
|
- `UserPreferences.md` (if exists) — learning style, experience level, goals
|
|
118
119
|
- `SkillPreferences.md` — per-skill state, preferences
|
|
120
|
+
- **`SkillConventions.md`** (if exists) — 🔑 **Setup conventions: package manager, project structure, deps, testing preferences. Read this BEFORE generating any scaffold or assignment — it ensures consistency.**
|
|
119
121
|
- `progress-index.md` — overview of topic statuses
|
|
120
122
|
|
|
121
123
|
**For any topics marked 🔵 In Progress**, read their `topic-progress.md` files to get the detailed state:
|
|
@@ -293,6 +295,7 @@ task(category="deep", run_in_background=false, timeout=600000, prompt="
|
|
|
293
295
|
- Topics directory: {TOPICS_DIR}/{topic}/
|
|
294
296
|
- User experience level: {from preferences}
|
|
295
297
|
- User learning style: {from preferences}
|
|
298
|
+
- Skill conventions (package manager, project structure, deps, testing setup): {from SkillConventions.md — read before generating scaffold}
|
|
296
299
|
")
|
|
297
300
|
```
|
|
298
301
|
|
|
@@ -547,6 +550,7 @@ task(category="unspecified-high", run_in_background=false, timeout=300000, promp
|
|
|
547
550
|
- Difficulty: {basic/intermediate/real-world}
|
|
548
551
|
- Previous assignment concepts: {summary}
|
|
549
552
|
- User performance on previous assignment: {observations}
|
|
553
|
+
- Skill conventions (package manager, project structure, deps, testing setup): {from SkillConventions.md — MUST follow these when generating scaffold}
|
|
550
554
|
")
|
|
551
555
|
```
|
|
552
556
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnilearn-workflow",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
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",
|