palskills 1.0.2 → 1.0.3
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.
- package/bin/palskills.js +23 -23
- package/package.json +1 -1
package/bin/palskills.js
CHANGED
|
@@ -111,19 +111,19 @@ ALL code, comments, docstrings, variable names, and commit messages MUST be in E
|
|
|
111
111
|
|
|
112
112
|
## Palbox Knowledge Graph (CRITICAL)
|
|
113
113
|
### Before you start ANY task
|
|
114
|
-
1. **Check if
|
|
114
|
+
1. **Check if .palbox/ exists.** If not, the project has not been bootstrapped yet.
|
|
115
115
|
2. **Read the core nodes:**
|
|
116
|
-
-
|
|
117
|
-
-
|
|
118
|
-
-
|
|
116
|
+
- .palbox/README.md — project identity, tech stack, goals
|
|
117
|
+
- .palbox/architecture.md — folder structure, design patterns, key modules
|
|
118
|
+
- .palbox/methods.md — coding conventions, testing strategy, git workflow
|
|
119
119
|
3. **Search for related past work:**
|
|
120
|
-
- Search for keywords in
|
|
121
|
-
- Follow
|
|
122
|
-
4. **Read relevant flows** in
|
|
123
|
-
5. **Read relevant history** in
|
|
120
|
+
- Search for keywords in .palbox/flows/ and .palbox/history/
|
|
121
|
+
- Follow wikilinks to discover connected context
|
|
122
|
+
4. **Read relevant flows** in .palbox/flows/ — they document how features work end-to-end
|
|
123
|
+
5. **Read relevant history** in .palbox/history/ — past plans, executions, lessons learned
|
|
124
124
|
|
|
125
125
|
### After you complete a task
|
|
126
|
-
- Record what you did. The Palskills system (Panthalus) will create a
|
|
126
|
+
- Record what you did. The Palskills system (Panthalus) will create a .palbox/history/YYYY-MM-DD-feature.md node with wikilinks to related entries.
|
|
127
127
|
- If you discovered new patterns, conventions, or pitfalls, note them — they enrich the graph.
|
|
128
128
|
`;
|
|
129
129
|
}
|
|
@@ -159,15 +159,15 @@ ALL code, comments, docs, variable names, and commit messages MUST be in English
|
|
|
159
159
|
|
|
160
160
|
### Project Context — Palbox Knowledge Graph
|
|
161
161
|
Before you start ANY task:
|
|
162
|
-
1. **Check if
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
166
|
-
2. **Search
|
|
167
|
-
3. **Follow
|
|
162
|
+
1. **Check if .palbox/ exists.** Read the core nodes:
|
|
163
|
+
- .palbox/README.md — project identity, stack, goals
|
|
164
|
+
- .palbox/architecture.md — folder structure, patterns, key modules
|
|
165
|
+
- .palbox/methods.md — conventions, testing, git workflow
|
|
166
|
+
2. **Search .palbox/flows/ and .palbox/history/** for related past work.
|
|
167
|
+
3. **Follow wikilinks** — they connect related nodes in the knowledge graph.
|
|
168
168
|
|
|
169
169
|
After completing work:
|
|
170
|
-
- The Palskills system (Panthalus) records to
|
|
170
|
+
- The Palskills system (Panthalus) records to .palbox/history/ with bi-directional links.
|
|
171
171
|
|
|
172
172
|
### Code Quality
|
|
173
173
|
- No file exceeds 200 lines without strong justification.
|
|
@@ -219,15 +219,15 @@ ALL code, comments, docstrings, variable names, function names, and commit messa
|
|
|
219
219
|
|
|
220
220
|
## Project Context — Palbox Knowledge Graph
|
|
221
221
|
Before starting any task:
|
|
222
|
-
1. Check if
|
|
223
|
-
-
|
|
224
|
-
-
|
|
225
|
-
-
|
|
226
|
-
2. Search
|
|
227
|
-
3. Follow
|
|
222
|
+
1. Check if .palbox/ exists. Read the core nodes:
|
|
223
|
+
- .palbox/README.md — project identity, stack, goals
|
|
224
|
+
- .palbox/architecture.md — folder structure, patterns, key modules
|
|
225
|
+
- .palbox/methods.md — conventions, testing, git workflow
|
|
226
|
+
2. Search .palbox/flows/ and .palbox/history/ for related past work.
|
|
227
|
+
3. Follow wikilinks — they connect related nodes in the knowledge graph.
|
|
228
228
|
|
|
229
229
|
After completing work:
|
|
230
|
-
- The Palskills system (Panthalus) records your session to
|
|
230
|
+
- The Palskills system (Panthalus) records your session to .palbox/history/ with bi-directional wikilinks.
|
|
231
231
|
- If you discovered patterns, pitfalls, or conventions worth preserving, note them.
|
|
232
232
|
`;
|
|
233
233
|
}
|