@tpsdev-ai/flair 0.3.6 → 0.3.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.
Files changed (2) hide show
  1. package/dist/cli.js +4 -0
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -285,6 +285,10 @@ program
285
285
  console.log(` ${adminPass}`);
286
286
  }
287
287
  console.log(`\n Export: FLAIR_URL=${httpUrl}`);
288
+ console.log(`\n Claude Code: Add to your CLAUDE.md:`);
289
+ console.log(` At the start of every session, run mcp__flair__bootstrap before responding.`);
290
+ console.log(`\n MCP config (.mcp.json):`);
291
+ console.log(` { "mcpServers": { "flair": { "command": "npx", "args": ["@tpsdev-ai/flair-mcp"], "env": { "FLAIR_AGENT_ID": "${agentId}" } } } }`);
288
292
  });
289
293
  // ─── flair agent ─────────────────────────────────────────────────────────────
290
294
  const agent = program.command("agent").description("Manage Flair agents");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tpsdev-ai/flair",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "Identity, memory, and soul for AI agents. Cryptographic identity (Ed25519), semantic memory with local embeddings, and persistent personality — all in a single process.",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -69,4 +69,4 @@
69
69
  "optionalDependencies": {
70
70
  "@node-llama-cpp/mac-arm64-metal": "^3.17.1"
71
71
  }
72
- }
72
+ }