learnship 1.9.16 → 1.9.17
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "learnship",
|
|
3
3
|
"description": "Agentic engineering done right — 42 structured workflows, persistent memory across sessions, integrated learning partner, and impeccable UI design system. Works with Claude Code, Windsurf, Cursor, Gemini CLI, OpenCode, and Codex.",
|
|
4
|
-
"version": "1.9.
|
|
4
|
+
"version": "1.9.17",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Favio Vazquez",
|
|
7
7
|
"email": "favio.vazquezp@gmail.com"
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "learnship",
|
|
3
3
|
"displayName": "learnship",
|
|
4
4
|
"description": "Agentic engineering done right — 42 structured workflows, persistent memory across sessions, integrated learning partner, and impeccable UI design system.",
|
|
5
|
-
"version": "1.9.
|
|
5
|
+
"version": "1.9.17",
|
|
6
6
|
"logo": "assets/logo.png",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Favio Vazquez",
|
package/bin/install.js
CHANGED
|
@@ -1060,7 +1060,10 @@ function install(platform, isGlobal) {
|
|
|
1060
1060
|
let count = 0;
|
|
1061
1061
|
for (const f of fs.readdirSync(path.join(learnshipSrc, 'workflows'))) {
|
|
1062
1062
|
if (!f.endsWith('.md')) continue;
|
|
1063
|
-
fs.
|
|
1063
|
+
let c = fs.readFileSync(path.join(learnshipSrc, 'workflows', f), 'utf8');
|
|
1064
|
+
c = replacePaths(c, pathPrefix, platform);
|
|
1065
|
+
if (f === 'new-project.md') c = rewriteNewProject(c, platform);
|
|
1066
|
+
fs.writeFileSync(path.join(wfDest, f), c);
|
|
1064
1067
|
count++;
|
|
1065
1068
|
}
|
|
1066
1069
|
// Copy templates/, references/, and agents/ so @./templates/, @./references/, @./agents/ resolve in workflows
|
|
@@ -44,6 +44,16 @@ Always read `STATE.md` and `ROADMAP.md` before any planning or execution operati
|
|
|
44
44
|
- **Goal-backward verification**: Check that `must_haves` are met, not just that tasks ran.
|
|
45
45
|
- **Deferred ideas**: Note things outside current phase scope in the roadmap backlog.
|
|
46
46
|
|
|
47
|
+
## Parallel Execution
|
|
48
|
+
|
|
49
|
+
Cursor supports real parallel subagents. During `/new-project` setup (Group D), ask:
|
|
50
|
+
|
|
51
|
+
"Do you want to enable parallel subagent execution?"
|
|
52
|
+
- **No** (recommended default) — Plans execute sequentially, one at a time. Safer, easier to follow.
|
|
53
|
+
- **Yes** — Each independent plan in a wave gets its own dedicated subagent with a fresh context budget. Faster, but uses more tokens.
|
|
54
|
+
|
|
55
|
+
Set `"parallelization": true|false` in `.planning/config.json` based on the user's choice.
|
|
56
|
+
|
|
47
57
|
## Learning Mode
|
|
48
58
|
|
|
49
59
|
Read `learning_mode` from `.planning/config.json` (default: "auto"):
|
package/gemini-extension.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "learnship",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.17",
|
|
4
4
|
"description": "Agentic engineering done right — 42 structured workflows, persistent memory across sessions, integrated learning partner, and impeccable UI design system.",
|
|
5
5
|
"author": "Favio Vazquez",
|
|
6
6
|
"homepage": "https://faviovazquez.github.io/learnship/",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "learnship",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.17",
|
|
4
4
|
"description": "Learn as you build. Build with intent. — A multi-platform agentic engineering system for Windsurf, Claude Code, Cursor, OpenCode, Gemini CLI, and Codex: spec-driven workflows, integrated learning, and production-grade design.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentic",
|