learnship 1.9.5 → 1.9.7

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.5",
4
+ "version": "1.9.7",
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",
5
+ "version": "1.9.7",
6
6
  "logo": "assets/logo.png",
7
7
  "author": {
8
8
  "name": "Favio Vazquez",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "learnship",
3
- "version": "1.9.5",
3
+ "version": "1.9.7",
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/",
@@ -8,27 +8,24 @@ Initialize a new project with full context gathering, optional research, require
8
8
 
9
9
  ## Step 1: Setup
10
10
 
11
- **Detect the current platform** by inspecting which config directory this workflow file lives in:
11
+ **Detect the current platform** by inspecting the path of the file you are currently reading (this file). The install path uniquely identifies the platform:
12
12
 
13
- ```bash
14
- # Check which platform config directory contains this workflow
15
- test -f "$HOME/.claude/learnship/workflows/new-project.md" && echo "CLAUDE" || \
16
- test -f "./.claude/learnship/workflows/new-project.md" && echo "CLAUDE" || \
17
- test -f "$HOME/.config/opencode/learnship/workflows/new-project.md" && echo "OPENCODE" || \
18
- test -f "./.opencode/learnship/workflows/new-project.md" && echo "OPENCODE" || \
19
- test -f "$HOME/.gemini/learnship/workflows/new-project.md" && echo "GEMINI" || \
20
- test -f "$HOME/.codex/learnship/workflows/new-project.md" && echo "CODEX" || \
21
- echo "WINDSURF"
22
- ```
13
+ | If this file's path contains | Platform |
14
+ |---|---|
15
+ | `/.claude/` | Claude Code |
16
+ | `/.codeium/` | Windsurf |
17
+ | `/.config/opencode/` or `/.opencode/` | OpenCode |
18
+ | `/.gemini/` | Gemini CLI |
19
+ | `/.codex/` | Codex CLI |
23
20
 
24
- Set `PLATFORM` to the detected value. If detection is ambiguous (e.g. multiple matches), ask: "Which platform are you running? (Windsurf / Claude Code / OpenCode / Gemini CLI / Codex CLI)"
21
+ Set `PLATFORM` accordingly. If you cannot determine the path, ask: "Which platform are you running? (Windsurf / Claude Code / OpenCode / Gemini CLI / Codex CLI)"
25
22
 
26
23
  Platform determines:
27
24
  - Which directory to add to `.gitignore` (so AI config files aren't tracked)
28
25
  - Whether to ask the parallelization question (Group D below)
29
26
  - The gitignore directory by platform:
30
- - **Windsurf** → `.windsurf/`
31
27
  - **Claude Code** → `.claude/`
28
+ - **Windsurf** → `.windsurf/`
32
29
  - **OpenCode** → `.opencode/`
33
30
  - **Gemini CLI** → `.gemini/`
34
31
  - **Codex CLI** → `.codex/`
@@ -54,11 +51,20 @@ git init
54
51
 
55
52
  Add the platform config directory to `.gitignore` so AI platform files are not tracked in the project repo. Use the platform-specific directory detected above:
56
53
  ```bash
57
- # Example for Claude Code:
54
+ # For Claude Code:
58
55
  grep -q '.claude/' .gitignore 2>/dev/null || echo '.claude/' >> .gitignore
59
- # (use the correct dir for the detected platform)
56
+ # For Windsurf:
57
+ # grep -q '.windsurf/' .gitignore 2>/dev/null || echo '.windsurf/' >> .gitignore
58
+ # For OpenCode:
59
+ # grep -q '.opencode/' .gitignore 2>/dev/null || echo '.opencode/' >> .gitignore
60
+ # For Gemini CLI:
61
+ # grep -q '.gemini/' .gitignore 2>/dev/null || echo '.gemini/' >> .gitignore
62
+ # For Codex CLI:
63
+ # grep -q '.codex/' .gitignore 2>/dev/null || echo '.codex/' >> .gitignore
60
64
  ```
61
65
 
66
+ Run only the line matching the detected platform.
67
+
62
68
  Create the planning directory:
63
69
  ```bash
64
70
  mkdir -p .planning/research
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "learnship",
3
- "version": "1.9.5",
3
+ "version": "1.9.7",
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",