omnilearn-workflow 1.0.4 → 1.0.5
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.
|
@@ -143,7 +143,7 @@ TOPICS_DIR="$SKILL_DIR/topics"
|
|
|
143
143
|
For each topic directory found in `$TOPICS_DIR/`:
|
|
144
144
|
1. Read its `topic-progress.md` — extract:
|
|
145
145
|
- Topic name and overall status (✅ Completed / 🔵 In Progress / 🟢 Not Started)
|
|
146
|
-
- Which assignments are completed (1/3, 2/
|
|
146
|
+
- Which assignments are completed (e.g., 1/3, 2/2, 3/5 — not fixed to any number)
|
|
147
147
|
- Skills demonstrated (from the log)
|
|
148
148
|
- Last session date
|
|
149
149
|
2. List the assignments directory — note which assignment files exist
|
|
@@ -163,21 +163,21 @@ Write to this file with the following structure:
|
|
|
163
163
|
## Topics Inventory
|
|
164
164
|
| Topic | Status | Assignments Done | Skills Demonstrated | Last Activity |
|
|
165
165
|
|-------|--------|-----------------|---------------------|---------------|
|
|
166
|
-
| topic-1 | ✅ Completed | 3/3 | {list of skills} | {date} |
|
|
167
|
-
| topic-2 | 🔵 In Progress | 1/
|
|
168
|
-
| topic-3 | 🟢 Not Started | 0
|
|
166
|
+
| topic-1 | ✅ Completed | 3/3 (N=3 total) | {list of skills} | {date} |
|
|
167
|
+
| topic-2 | 🔵 In Progress | 1/2 (N=2 total) | {partial skills} | {date} |
|
|
168
|
+
| topic-3 | 🟢 Not Started | 0/— | — | — |
|
|
169
169
|
|
|
170
170
|
## Detailed Topic States
|
|
171
171
|
|
|
172
172
|
### topic-1 (✅ Completed)
|
|
173
173
|
- topic-progress.md: {TOPICS_DIR}/topic-1/topic-progress.md
|
|
174
|
-
- Assignments: 01-basics ✅, 02-intermediate ✅, 03-real-world ✅
|
|
174
|
+
- Assignments: 01-basics ✅, 02-intermediate ✅, 03-real-world ✅ (N=3 total)
|
|
175
175
|
- Skills: {extracted skills demonstrated}
|
|
176
176
|
- Sessions: {count} learning sessions in runs/
|
|
177
177
|
|
|
178
178
|
### topic-2 (🔵 In Progress)
|
|
179
179
|
- topic-progress.md: {TOPICS_DIR}/topic-2/topic-progress.md
|
|
180
|
-
- Assignments: 01-basics ✅, 02-intermediate
|
|
180
|
+
- Assignments: 01-basics ✅, 02-intermediate 🔵 (N=2 total planned so far — more can be added)
|
|
181
181
|
- Current assignment: {which one they're on}
|
|
182
182
|
- Skills: {extracted skills demonstrated so far}
|
|
183
183
|
- Sessions: {count} learning sessions
|
|
@@ -251,8 +251,8 @@ task(category="deep", run_in_background=false, timeout=600000, prompt="
|
|
|
251
251
|
### 2. ...
|
|
252
252
|
|
|
253
253
|
## Assignment Structure
|
|
254
|
-
-
|
|
255
|
-
- Each builds on the previous
|
|
254
|
+
- N assignments with progressive difficulty: Basic → Intermediate → Real-World
|
|
255
|
+
- Each builds on the previous. More than 3 can be created if the user needs extra practice or the topic is deep.
|
|
256
256
|
- Final assignment should be a mini-project or real-world scenario
|
|
257
257
|
|
|
258
258
|
STEP 3 — Create Assignment 1 (the first one) at:
|
|
@@ -318,7 +318,7 @@ task(category="deep", run_in_background=false, timeout=600000, prompt="
|
|
|
318
318
|
- Add topic entry with status 🔵 In Progress and a link to topic-progress.md
|
|
319
319
|
|
|
320
320
|
5. MUST NOT DO:
|
|
321
|
-
- Do NOT create all
|
|
321
|
+
- Do NOT create all assignments at once — only create the first one. Subsequent assignments are generated on-demand as the user progresses.
|
|
322
322
|
- Do NOT make assignments purely theoretical — use real-world scenarios
|
|
323
323
|
- Do NOT skip the scaffold — the user should be able to start coding immediately
|
|
324
324
|
- Do NOT use any external packages that aren't standard library without noting it
|
|
@@ -547,10 +547,11 @@ task(category="unspecified-high", run_in_background=false, timeout=300000, promp
|
|
|
547
547
|
- Read the previous assignment(s) to ensure progression: {ASSIGNMENT_DIR}
|
|
548
548
|
- Read the user's learning preferences and history from {SKILL_PREFS}
|
|
549
549
|
- Research online for real-world applications of this topic at this difficulty level
|
|
550
|
-
- Create the assignment with INCREASING difficulty:
|
|
550
|
+
- Create the assignment with INCREASING difficulty following this PATTERN (more levels can be added as needed):
|
|
551
551
|
* Assignment 1: Basic understanding and application
|
|
552
552
|
* Assignment 2: Intermediate — combine concepts, handle edge cases
|
|
553
553
|
* Assignment 3: Real-world — full scenario, multiple concerns, best practices
|
|
554
|
+
* (Additional assignments can be created if the user needs more depth or practice)
|
|
554
555
|
- For each assignment, create these files in:
|
|
555
556
|
{TOPICS_DIR}/{topic}/assignments/0{n}-{concept-name}/
|
|
556
557
|
|
|
@@ -597,7 +598,7 @@ task(category="unspecified-high", run_in_background=false, timeout=300000, promp
|
|
|
597
598
|
|
|
598
599
|
### 4.3 When All Assignments Are Complete
|
|
599
600
|
|
|
600
|
-
When all
|
|
601
|
+
When all required assignments for a topic are done (the topic-roadmap defines how many; the default progression is 3 but more can be added):
|
|
601
602
|
|
|
602
603
|
1. **Update `topic-progress.md`** — set overall status to ✅ Completed, finalize all assignment statuses.
|
|
603
604
|
2. **Update `progress-index.md`** — mark topic as ✅ Completed (this is the overview index).
|
|
@@ -777,7 +778,7 @@ Each level should feel meaningfully harder. The jump from 02 to 03 should be the
|
|
|
777
778
|
- ❌ Do NOT write explanations when user has a doubt — generate a diagnostic task instead
|
|
778
779
|
- ❌ Do NOT give away solutions when the user is stuck — give them tasks that lead to the answer
|
|
779
780
|
- ❌ Do NOT skip scaffold files — the user needs a starting point
|
|
780
|
-
- ❌ Do NOT make all
|
|
781
|
+
- ❌ Do NOT make all assignments the same difficulty — progression is critical. Each should be noticeably harder than the last.
|
|
781
782
|
- ❌ Do NOT let runs/ contain progress state — runs/ is for action logs only, topic-progress.md is the source of truth
|
|
782
783
|
- ❌ Do NOT skip updating topic-progress.md — it's the authoritative progress record per topic
|
|
783
784
|
- ❌ Do NOT lose the user's work or progress — always read topic-progress.md before acting
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnilearn-workflow",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
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",
|