@sbains2/lifeos 0.3.0 → 0.3.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.
- package/package.json +1 -1
- package/src/doctor.js +1 -1
- package/src/index.js +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sbains2/lifeos",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Scaffold a personal LifeOS — life-quadrant folders, a council of AI agent voices, and curated MCP wiring. Generates a working lifeos.config.json + .claude/agents/council/ in 2-4 minutes (or <60s with --minimal). BETA — early seed release.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
package/src/doctor.js
CHANGED
|
@@ -201,7 +201,7 @@ export function runDoctor(targetDir) {
|
|
|
201
201
|
.join('; '),
|
|
202
202
|
fix: `Set the missing env vars in your shell rc (~/.zshrc or ~/.bashrc), e.g.:\n ${missingEnv
|
|
203
203
|
.map((m) => `export ${m.env_var}=...`)
|
|
204
|
-
.join('\n ')}\n Then reload your shell
|
|
204
|
+
.join('\n ')}\n Then reload your shell, and reopen the project in your IDE (or restart Claude Desktop if you use it).`,
|
|
205
205
|
});
|
|
206
206
|
}
|
|
207
207
|
|
package/src/index.js
CHANGED
|
@@ -248,10 +248,10 @@ export async function run(targetDir, options = {}) {
|
|
|
248
248
|
if (groups.needs_env.length > 0) {
|
|
249
249
|
console.log(` ${c.arrow} Set the env vars listed above (in your shell rc — ~/.zshrc or ~/.bashrc), then reload your shell`);
|
|
250
250
|
}
|
|
251
|
-
|
|
252
|
-
|
|
251
|
+
console.log(` ${c.arrow} Open ${targetDir} in your IDE (Claude Code / Cursor) — it reads the generated .mcp.json — and try convening the council on a real artifact`);
|
|
252
|
+
if (desktopMergeResult) {
|
|
253
|
+
console.log(` ${c.arrow} Using the Claude Desktop app instead? Restart it (Cmd+Q, then reopen) so the merged MCPs load`);
|
|
253
254
|
}
|
|
254
|
-
console.log(` ${c.arrow} Open ${targetDir} in Claude Code and try convening the council on a real artifact`);
|
|
255
255
|
console.log(` ${c.arrow} Edit lifeos.config.json to tune council priorities, add quadrants, or change foci`);
|
|
256
256
|
if (groups.manual.length > 0 || groups.risk.length > 0) {
|
|
257
257
|
console.log(` ${c.arrow} For manual / risky MCPs: see .lifeos/INSTALL_MCPS.md for the full hint per server`);
|