You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "loadout-os — consolidated Knowledge OS for the studio — kernel (ai-loadout) + memories (claude-memories) + rules (claude-rules) + the runtime loadout hook, under one npm-workspaces root.",
"license": "MIT",
"author": "mcp-tool-shop",
"type": "module",
"workspaces": [
"packages/*",
"apps/*"
],
"//buildOrder": "INTENTIONAL: kernel must build before memories and rules — they import the kernel's built dist. Do NOT 'simplify' build/test/verify to `--workspaces` (npm does not guarantee topo order) or the order breaks. The PowerShell hook smoke-test (apps/hook/smoke-test.ps1) is deliberately NOT in verify: it is Windows/rig-specific and would break Linux CI.",
"scripts": {
"build": "npm run build -w packages/kernel && npm run build -w packages/memories && npm run build -w packages/rules && npm run build -w packages/cli",
"test": "npm run test -w packages/kernel && npm run test -w packages/memories && npm run test -w packages/rules && npm run test -w packages/cli",
"verify": "npm run build && npm run verify -w packages/kernel && npm run verify -w packages/memories && npm run verify -w packages/rules && npm run verify -w packages/cli"