@intent-systems/nexus 2026.1.5-4 → 2026.1.5-8
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/dist/agents/agent-id.js +41 -0
- package/dist/agents/auth-profiles.js +114 -25
- package/dist/agents/identity-state.js +101 -0
- package/dist/agents/model-auth.js +1 -0
- package/dist/agents/model-fallback.js +15 -9
- package/dist/agents/model-selection.js +1 -1
- package/dist/agents/models-config.js +17 -11
- package/dist/agents/pi-embedded-runner.js +101 -9
- package/dist/agents/sandbox.js +12 -3
- package/dist/agents/skill-runner.js +41 -6
- package/dist/agents/skill-usage.js +117 -17
- package/dist/agents/skills-status.js +4 -3
- package/dist/agents/skills.js +38 -30
- package/dist/agents/subagent-registry.js +25 -11
- package/dist/agents/system-prompt.js +16 -0
- package/dist/agents/tool-policy.js +19 -3
- package/dist/agents/tools/browser-tool.js +5 -2
- package/dist/agents/tools/image-tool.js +93 -8
- package/dist/agents/tools/sessions-announce-target.js +5 -1
- package/dist/agents/workspace.js +81 -59
- package/dist/auto-reply/command-detection.js +2 -1
- package/dist/auto-reply/reply/directive-handling.js +153 -28
- package/dist/auto-reply/reply/directives.js +17 -2
- package/dist/auto-reply/reply/model-selection.js +8 -3
- package/dist/auto-reply/reply/queue.js +2 -2
- package/dist/auto-reply/reply.js +1 -1
- package/dist/auto-reply/thinking.js +15 -0
- package/dist/browser/chrome.js +1 -1
- package/dist/browser/client.js +2 -0
- package/dist/browser/config.js +6 -2
- package/dist/browser/pw-tools-core.js +3 -0
- package/dist/browser/routes/agent.js +14 -0
- package/dist/canvas-host/server.js +1 -1
- package/dist/capabilities/detector.js +46 -15
- package/dist/capabilities/registry.js +2 -1
- package/dist/cli/cloud-cli.js +70 -7
- package/dist/cli/credential-cli.js +214 -23
- package/dist/cli/gateway-cli.js +1 -1
- package/dist/cli/log-cli.js +25 -0
- package/dist/cli/pairing-cli.js +1 -1
- package/dist/cli/program.js +82 -8
- package/dist/cli/run-main.js +1 -1
- package/dist/cli/skills-cli.js +165 -30
- package/dist/cli/skills-hub-cli.js +68 -36
- package/dist/cli/tool-connector-cli.js +99 -24
- package/dist/cli/upstream-sync-cli.js +253 -96
- package/dist/cli/usage-cli.js +14 -0
- package/dist/commands/auth-choice-options.js +6 -1
- package/dist/commands/auth-choice.js +157 -5
- package/dist/commands/bootstrap-preset.js +26 -12
- package/dist/commands/capabilities.js +33 -6
- package/dist/commands/claude-md.js +3 -2
- package/dist/commands/config-view.js +1 -1
- package/dist/commands/config.js +85 -0
- package/dist/commands/configure.js +4 -4
- package/dist/commands/credential.js +497 -36
- package/dist/commands/cursor-hooks.js +240 -0
- package/dist/commands/cursor-rules.js +14 -188
- package/dist/commands/doctor.js +5 -4
- package/dist/commands/identity.js +29 -32
- package/dist/commands/init.js +304 -20
- package/dist/commands/log.js +134 -0
- package/dist/commands/models/fallbacks.js +1 -1
- package/dist/commands/models/image-fallbacks.js +1 -1
- package/dist/commands/models/list.js +1 -1
- package/dist/commands/models/scan.js +1 -1
- package/dist/commands/onboard-auth.js +27 -2
- package/dist/commands/onboard-eve-identity.js +8 -9
- package/dist/commands/onboard-non-interactive.js +4 -2
- package/dist/commands/onboard-quickstart.js +18 -11
- package/dist/commands/quest-state.js +271 -0
- package/dist/commands/quest.js +53 -13
- package/dist/commands/reset.js +1 -1
- package/dist/commands/sessions-ingest.js +5 -4
- package/dist/commands/setup.js +4 -2
- package/dist/commands/skills-manifest.js +89 -29
- package/dist/commands/status.js +193 -73
- package/dist/commands/suggestions.js +1 -1
- package/dist/commands/usage-tracking.js +32 -0
- package/dist/commands/usage-upload.js +6 -1
- package/dist/config/defaults.js +1 -3
- package/dist/config/includes.js +5 -7
- package/dist/config/io.js +88 -16
- package/dist/config/legacy.js +4 -2
- package/dist/config/paths.js +16 -0
- package/dist/config/sessions.js +9 -5
- package/dist/config/zod-schema.js +4 -3
- package/dist/control-plane/broker/broker.js +131 -78
- package/dist/control-plane/compaction.js +3 -5
- package/dist/control-plane/factory.js +2 -2
- package/dist/control-plane/index.js +2 -2
- package/dist/control-plane/odu/agents.js +28 -23
- package/dist/control-plane/odu/interaction-tools.js +62 -50
- package/dist/control-plane/odu/prompt-loader.js +8 -8
- package/dist/control-plane/odu/runtime.js +87 -75
- package/dist/control-plane/odu-control-plane.js +14 -12
- package/dist/control-plane/single-agent.js +13 -13
- package/dist/credentials/store.js +133 -7
- package/dist/daemon/launchd.js +14 -0
- package/dist/entry.js +0 -0
- package/dist/gateway/server-browser.js +5 -4
- package/dist/gateway/server-methods/cron.js +11 -1
- package/dist/gateway/server.js +14 -7
- package/dist/infra/bonjour.js +1 -1
- package/dist/infra/event-log.js +8 -2
- package/dist/infra/path-env.js +1 -2
- package/dist/infra/provider-usage.auth.js +5 -3
- package/dist/infra/provider-usage.fetch.claude.js +16 -6
- package/dist/infra/provider-usage.fetch.minimax.js +8 -3
- package/dist/infra/provider-usage.js +9 -5
- package/dist/infra/restart.js +2 -2
- package/dist/infra/usage-settings.js +78 -0
- package/dist/infra/usage-suggestions.js +17 -5
- package/dist/infra/usage-upload.js +38 -1
- package/dist/infra/voicewake.js +2 -2
- package/dist/media/image-ops.js +3 -1
- package/dist/memory/index.js +2 -381
- package/dist/native/nexus-cloud/darwin-arm64/nexus-cloud +0 -0
- package/dist/native/nexus-cloud/darwin-arm64/nexus-cloud-rs +0 -0
- package/dist/pairing/pairing-store.js +24 -0
- package/dist/providers/github-copilot-auth.js +1 -1
- package/dist/routing/resolve-route.js +6 -6
- package/dist/routing/session-key.js +3 -1
- package/dist/sessions/send-policy.js +5 -5
- package/dist/slack/monitor.js +22 -1
- package/dist/telegram/reaction-level.js +2 -1
- package/dist/utils.js +8 -3
- package/dist/wizard/onboarding.js +29 -7
- package/docs/AGENTS.default.md +1 -1
- package/docs/configuration.md +1 -1
- package/docs/feature-inventory/overview.md +2 -2
- package/docs/reference/templates/AGENTS.md +172 -109
- package/docs/templates/AGENTS.md +140 -199
- package/docs/templates/BOOTSTRAP.md +40 -20
- package/docs/templates/IDENTITY.md +6 -0
- package/docs/templates/USER.md +22 -2
- package/package.json +3 -1
- package/skills/{notion → connectors/notion}/SKILL.md +1 -1
- package/skills/{filesystem → guides/filesystem}/SKILL.md +1 -1
- package/skills/{onboarding → guides/onboarding}/SKILL.md +1 -1
- package/skills/{onboarding → guides/onboarding}/docs/CAPABILITY_TAXONOMY.md +5 -5
- package/skills/{onboarding → guides/onboarding}/docs/CLI_GRAMMAR.md +8 -8
- package/skills/{onboarding → guides/onboarding}/docs/CLI_GRAMMAR_ONBOARDING.md +2 -2
- package/skills/{onboarding → guides/onboarding}/docs/CLI_GRAMMAR_SKILLS.md +26 -20
- package/skills/{onboarding → guides/onboarding}/docs/GOAL_STATE_ARCHITECTURE.md +38 -43
- package/skills/{onboarding → guides/onboarding}/docs/NEXUS_SYSTEM_OVERVIEW.md +4 -4
- package/skills/{onboarding → guides/onboarding}/docs/SKILLS_HUB_SPEC.md +1 -1
- package/skills/{onboarding → guides/onboarding}/docs/SKILLS_SPECIFICATION.md +8 -7
- package/skills/{onboarding → guides/onboarding}/docs/SKILL_GATEWAY_DESIGN.md +16 -16
- package/skills/{onboarding → guides/onboarding}/docs/SKILL_GATEWAY_PRD.md +10 -12
- package/skills/guides/onboarding/docs/canonical/00_CONFLICT_ANALYSIS.md +463 -0
- package/skills/guides/onboarding/docs/canonical/01_NEXUS_OVERVIEW.md +167 -0
- package/skills/guides/onboarding/docs/canonical/02_CLI_REFERENCE.md +404 -0
- package/skills/guides/onboarding/docs/canonical/03_STATE_ARCHITECTURE.md +357 -0
- package/skills/guides/onboarding/docs/canonical/04_SKILL_SPECIFICATION.md +393 -0
- package/skills/guides/onboarding/docs/canonical/05_CAPABILITY_TAXONOMY.md +298 -0
- package/skills/guides/onboarding/docs/canonical/06_CAPABILITIES_REFERENCE.md +207 -0
- package/skills/guides/onboarding/docs/canonical/07_AGENT_BINDINGS.md +85 -0
- package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/nexus-cloud.md +2 -2
- package/skills/{onboarding → guides/onboarding}/scripts/ralph/progress.txt +1 -1
- package/skills/{nexus-cloud → tools/nexus-cloud}/SKILL.md +2 -1
- package/skills/{nexus-cloud → tools/nexus-cloud}/docs/setup.md +1 -1
- package/docs/templates/PROFILE.md +0 -14
- /package/skills/{brave-search → connectors/brave-search}/SKILL.md +0 -0
- /package/skills/{brave-search → connectors/brave-search}/docs/setup.md +0 -0
- /package/skills/{brave-search → connectors/brave-search}/docs/troubleshooting.md +0 -0
- /package/skills/{brave-search → connectors/brave-search}/docs/usage.md +0 -0
- /package/skills/{brave-search → connectors/brave-search}/scripts/content.mjs +0 -0
- /package/skills/{brave-search → connectors/brave-search}/scripts/search.mjs +0 -0
- /package/skills/{discord → connectors/discord}/SKILL.md +0 -0
- /package/skills/{gemini → connectors/gemini}/SKILL.md +0 -0
- /package/skills/{github → connectors/github}/SKILL.md +0 -0
- /package/skills/{github → connectors/github}/docs/setup.md +0 -0
- /package/skills/{github → connectors/github}/docs/troubleshooting.md +0 -0
- /package/skills/{google-oauth → connectors/google-oauth}/SKILL.md +0 -0
- /package/skills/{slack → connectors/slack}/SKILL.md +0 -0
- /package/skills/{telegram → connectors/telegram}/SKILL.md +0 -0
- /package/skills/{telegram → connectors/telegram}/docs/pairing.md +0 -0
- /package/skills/{telegram → connectors/telegram}/docs/setup.md +0 -0
- /package/skills/{telegram → connectors/telegram}/docs/webhook.md +0 -0
- /package/skills/{wacli → connectors/wacli}/SKILL.md +0 -0
- /package/skills/{wacli → connectors/wacli}/docs/auth.md +0 -0
- /package/skills/{wacli → connectors/wacli}/docs/backup.md +0 -0
- /package/skills/{wacli → connectors/wacli}/docs/troubleshooting.md +0 -0
- /package/skills/{browser-use-agent-sdk → guides/browser-use-agent-sdk}/SKILL.md +0 -0
- /package/skills/{json-render → guides/json-render}/SKILL.md +0 -0
- /package/skills/{json-render → guides/json-render}/assets/components/README.md +0 -0
- /package/skills/{json-render → guides/json-render}/assets/components/catalog.ts +0 -0
- /package/skills/{json-render → guides/json-render}/assets/components/registry.tsx +0 -0
- /package/skills/{json-render → guides/json-render}/assets/demo/App.css +0 -0
- /package/skills/{json-render → guides/json-render}/assets/demo/App.tsx +0 -0
- /package/skills/{json-render → guides/json-render}/assets/demo/README.md +0 -0
- /package/skills/{json-render → guides/json-render}/assets/demo/catalog.ts +0 -0
- /package/skills/{json-render → guides/json-render}/assets/demo/data/nexus-core.json +0 -0
- /package/skills/{json-render → guides/json-render}/assets/demo/index.css +0 -0
- /package/skills/{json-render → guides/json-render}/assets/demo/registry.tsx +0 -0
- /package/skills/{json-render → guides/json-render}/docs/nexus-state-demo.md +0 -0
- /package/skills/{json-render → guides/json-render}/docs/shadcn-preset.md +0 -0
- /package/skills/{json-render → guides/json-render}/scripts/create-vite-demo.sh +0 -0
- /package/skills/{json-render → guides/json-render}/scripts/llm-server/README.md +0 -0
- /package/skills/{json-render → guides/json-render}/scripts/llm-server/catalog.ts +0 -0
- /package/skills/{json-render → guides/json-render}/scripts/llm-server/package-lock.json +0 -0
- /package/skills/{json-render → guides/json-render}/scripts/llm-server/package.json +0 -0
- /package/skills/{json-render → guides/json-render}/scripts/llm-server/server.ts +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/CAPABILITIES.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/CLI_GRAMMAR_CREDENTIALS.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/DOCUMENTATION_OVERVIEW.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/ENTITY_MODEL.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/SKILL_INVENTORY.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/STATE_ARCHITECTURE.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/TROUBLESHOOTING.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/USER_JOURNEY.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/WOW_MOMENTS.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/agent-apple-id.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/1password.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/TEMPLATE.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/aix.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/bird.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/brave-search.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/comms.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/computer-use.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/cron-and-heartbeat.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/eve.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/github.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/gog.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/homebrew-prereqs.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/qmd.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/telegram.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/wacli.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/weather.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/scripts/ralph/prd.json +0 -0
- /package/skills/{onboarding → guides/onboarding}/scripts/ralph/prompt.md +0 -0
- /package/skills/{onboarding → guides/onboarding}/scripts/ralph/ralph.log +0 -0
- /package/skills/{onboarding → guides/onboarding}/scripts/ralph/ralph.sh +0 -0
- /package/skills/{onboarding → guides/onboarding}/scripts/setup-cursor-skills.sh +0 -0
- /package/skills/{1password → tools/1password}/SKILL.md +0 -0
- /package/skills/{1password → tools/1password}/docs/setup.md +0 -0
- /package/skills/{1password → tools/1password}/docs/troubleshooting.md +0 -0
- /package/skills/{1password → tools/1password}/references/cli-examples.md +0 -0
- /package/skills/{1password → tools/1password}/references/get-started.md +0 -0
- /package/skills/{agent-browser → tools/agent-browser}/SKILL.md +0 -0
- /package/skills/{agent-browser → tools/agent-browser}/docs/browser-use-eval.md +0 -0
- /package/skills/{agent-browser → tools/agent-browser}/docs/first-tests.md +0 -0
- /package/skills/{agent-browser → tools/agent-browser}/docs/wordle-nyt-eval.js +0 -0
- /package/skills/{aix → tools/aix}/SKILL.md +0 -0
- /package/skills/{aix → tools/aix}/docs/embeddings.md +0 -0
- /package/skills/{aix → tools/aix}/docs/setup.md +0 -0
- /package/skills/{aix → tools/aix}/docs/troubleshooting.md +0 -0
- /package/skills/{aix → tools/aix}/references/sql.md +0 -0
- /package/skills/{apple-notes → tools/apple-notes}/SKILL.md +0 -0
- /package/skills/{apple-reminders → tools/apple-reminders}/SKILL.md +0 -0
- /package/skills/{bear-notes → tools/bear-notes}/SKILL.md +0 -0
- /package/skills/{bird → tools/bird}/SKILL.md +0 -0
- /package/skills/{bird → tools/bird}/docs/auth.md +0 -0
- /package/skills/{bird → tools/bird}/docs/troubleshooting.md +0 -0
- /package/skills/{blogwatcher → tools/blogwatcher}/SKILL.md +0 -0
- /package/skills/{blucli → tools/blucli}/SKILL.md +0 -0
- /package/skills/{camsnap → tools/camsnap}/SKILL.md +0 -0
- /package/skills/{clawdhub → tools/clawdhub}/SKILL.md +0 -0
- /package/skills/{coding-agent → tools/coding-agent}/SKILL.md +0 -0
- /package/skills/{comms → tools/comms}/SKILL.md +0 -0
- /package/skills/{comms → tools/comms}/docs/adapters.md +0 -0
- /package/skills/{comms → tools/comms}/docs/setup.md +0 -0
- /package/skills/{comms → tools/comms}/docs/troubleshooting.md +0 -0
- /package/skills/{comms → tools/comms}/references/schema.md +0 -0
- /package/skills/{computer-use → tools/computer-use}/SKILL.md +0 -0
- /package/skills/{computer-use → tools/computer-use}/docs/open-interpreter.md +0 -0
- /package/skills/{computer-use → tools/computer-use}/docs/peekaboo.md +0 -0
- /package/skills/{computer-use → tools/computer-use}/docs/setup.md +0 -0
- /package/skills/{computer-use → tools/computer-use}/docs/troubleshooting.md +0 -0
- /package/skills/{eightctl → tools/eightctl}/SKILL.md +0 -0
- /package/skills/{eve → tools/eve}/SKILL.md +0 -0
- /package/skills/{eve → tools/eve}/docs/dual-account.md +0 -0
- /package/skills/{eve → tools/eve}/docs/intelligence.md +0 -0
- /package/skills/{eve → tools/eve}/docs/setup.md +0 -0
- /package/skills/{eve → tools/eve}/docs/troubleshooting.md +0 -0
- /package/skills/{eve → tools/eve}/scripts/setup-dual-account.sh +0 -0
- /package/skills/{food-order → tools/food-order}/SKILL.md +0 -0
- /package/skills/{gh → tools/gh}/SKILL.md +0 -0
- /package/skills/{gh → tools/gh}/docs/usage.md +0 -0
- /package/skills/{gifgrep → tools/gifgrep}/SKILL.md +0 -0
- /package/skills/{gog → tools/gog}/SKILL.md +0 -0
- /package/skills/{gog → tools/gog}/docs/portability.md +0 -0
- /package/skills/{gog → tools/gog}/docs/setup.md +0 -0
- /package/skills/{gog → tools/gog}/docs/troubleshooting.md +0 -0
- /package/skills/{gog → tools/gog}/scripts/cdp/README.md +0 -0
- /package/skills/{gog → tools/gog}/scripts/cdp/add_test_users.py +0 -0
- /package/skills/{gog → tools/gog}/scripts/cdp/auth_add_accounts.py +0 -0
- /package/skills/{gog → tools/gog}/scripts/cdp/auth_add_accounts_manual.py +0 -0
- /package/skills/{gog → tools/gog}/scripts/cdp/create_oauth_client.py +0 -0
- /package/skills/{gog → tools/gog}/scripts/cdp/launch_cdp_chrome.sh +0 -0
- /package/skills/{goplaces → tools/goplaces}/SKILL.md +0 -0
- /package/skills/{imsg → tools/imsg}/SKILL.md +0 -0
- /package/skills/{local-places → tools/local-places}/SERVER_README.md +0 -0
- /package/skills/{local-places → tools/local-places}/SKILL.md +0 -0
- /package/skills/{local-places → tools/local-places}/pyproject.toml +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/__init__.py +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/__pycache__/__init__.cpython-314.pyc +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/__pycache__/google_places.cpython-314.pyc +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/__pycache__/main.cpython-314.pyc +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/__pycache__/schemas.cpython-314.pyc +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/google_places.py +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/main.py +0 -0
- /package/skills/{local-places → tools/local-places}/src/local_places/schemas.py +0 -0
- /package/skills/{mcporter → tools/mcporter}/SKILL.md +0 -0
- /package/skills/{model-usage → tools/model-usage}/SKILL.md +0 -0
- /package/skills/{model-usage → tools/model-usage}/references/codexbar-cli.md +0 -0
- /package/skills/{model-usage → tools/model-usage}/scripts/model_usage.py +0 -0
- /package/skills/{nano-banana-pro → tools/nano-banana-pro}/SKILL.md +0 -0
- /package/skills/{nano-banana-pro → tools/nano-banana-pro}/scripts/generate_image.py +0 -0
- /package/skills/{nano-pdf → tools/nano-pdf}/SKILL.md +0 -0
- /package/skills/{nexus-cloud → tools/nexus-cloud}/docs/security.md +0 -0
- /package/skills/{nexus-cloud → tools/nexus-cloud}/docs/troubleshooting.md +0 -0
- /package/skills/{obsidian → tools/obsidian}/SKILL.md +0 -0
- /package/skills/{openai-image-gen → tools/openai-image-gen}/SKILL.md +0 -0
- /package/skills/{openai-image-gen → tools/openai-image-gen}/scripts/gen.py +0 -0
- /package/skills/{openai-whisper → tools/openai-whisper}/SKILL.md +0 -0
- /package/skills/{openai-whisper-api → tools/openai-whisper-api}/SKILL.md +0 -0
- /package/skills/{openai-whisper-api → tools/openai-whisper-api}/scripts/transcribe.sh +0 -0
- /package/skills/{openhue → tools/openhue}/SKILL.md +0 -0
- /package/skills/{oracle → tools/oracle}/SKILL.md +0 -0
- /package/skills/{ordercli → tools/ordercli}/SKILL.md +0 -0
- /package/skills/{peekaboo → tools/peekaboo}/SKILL.md +0 -0
- /package/skills/{qmd → tools/qmd}/SKILL.md +0 -0
- /package/skills/{qmd → tools/qmd}/docs/mcp.md +0 -0
- /package/skills/{qmd → tools/qmd}/docs/ollama.md +0 -0
- /package/skills/{qmd → tools/qmd}/docs/setup.md +0 -0
- /package/skills/{sag → tools/sag}/SKILL.md +0 -0
- /package/skills/{skill-cli-template → tools/skill-cli-template}/SKILL.md +0 -0
- /package/skills/{songsee → tools/songsee}/SKILL.md +0 -0
- /package/skills/{sonoscli → tools/sonoscli}/SKILL.md +0 -0
- /package/skills/{spotify-player → tools/spotify-player}/SKILL.md +0 -0
- /package/skills/{summarize → tools/summarize}/SKILL.md +0 -0
- /package/skills/{things-mac → tools/things-mac}/SKILL.md +0 -0
- /package/skills/{tmux → tools/tmux}/SKILL.md +0 -0
- /package/skills/{tmux → tools/tmux}/scripts/find-sessions.sh +0 -0
- /package/skills/{tmux → tools/tmux}/scripts/wait-for-text.sh +0 -0
- /package/skills/{trello → tools/trello}/SKILL.md +0 -0
- /package/skills/{upstream-sync → tools/upstream-sync}/SKILL.md +0 -0
- /package/skills/{upstream-sync → tools/upstream-sync}/scripts/auto-port.sh +0 -0
- /package/skills/{upstream-sync → tools/upstream-sync}/scripts/check-all.sh +0 -0
- /package/skills/{upstream-sync → tools/upstream-sync}/scripts/check-nexus.sh +0 -0
- /package/skills/{upstream-sync → tools/upstream-sync}/scripts/check-pi-ai.sh +0 -0
- /package/skills/{video-frames → tools/video-frames}/SKILL.md +0 -0
- /package/skills/{video-frames → tools/video-frames}/scripts/frame.sh +0 -0
- /package/skills/{weather → tools/weather}/SKILL.md +0 -0
- /package/skills/{weather → tools/weather}/docs/usage.md +0 -0
package/docs/templates/AGENTS.md
CHANGED
|
@@ -1,114 +1,151 @@
|
|
|
1
1
|
---
|
|
2
|
-
summary: "
|
|
2
|
+
summary: "Root AGENTS.md for Nexus workspaces - system behavior and CLI gateway"
|
|
3
3
|
read_when:
|
|
4
|
-
- Bootstrapping a workspace
|
|
4
|
+
- Bootstrapping a workspace
|
|
5
|
+
- Fresh nexus install
|
|
5
6
|
---
|
|
6
|
-
# AGENTS.md -
|
|
7
|
+
# AGENTS.md - Nexus Workspace
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
You are operating within a Nexus workspace — a personal AI ecosystem with skills and identity.
|
|
9
10
|
|
|
10
|
-
## First
|
|
11
|
+
## 🚀 First Action - Orient Yourself
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
Run `nexus status` to understand the current state:
|
|
13
14
|
```bash
|
|
14
15
|
nexus status
|
|
15
16
|
```
|
|
16
17
|
|
|
17
|
-
|
|
18
|
-
- Who you are and who your human is
|
|
19
|
-
- Which capabilities are active or blocked
|
|
20
|
-
- Recommended next steps to increase capability
|
|
18
|
+
The CLI tells you who you are, what capabilities are available, and suggests next actions based on current state.
|
|
21
19
|
|
|
22
|
-
|
|
23
|
-
1. Read `SOUL.md` — this is who you are
|
|
24
|
-
2. Read `USER.md` — this is who you're helping
|
|
25
|
-
3. Read `memory/YYYY-MM-DD.md` (today + yesterday) for recent context
|
|
26
|
-
4. **If in MAIN SESSION** (direct chat with your human): Also read `MEMORY.md`
|
|
20
|
+
**Be proactive.** If no urgent task is given, use the CLI to find something valuable to do — explore capabilities, try unused skills, or help the user get more set up.
|
|
27
21
|
|
|
28
|
-
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## 📊 Capability Status Legend
|
|
29
25
|
|
|
30
|
-
|
|
26
|
+
| Emoji | Status | Meaning |
|
|
27
|
+
|-------|--------|---------|
|
|
28
|
+
| ✅ | `active` | Configured AND has been used |
|
|
29
|
+
| ⭐ | `ready` | Configured but never used — try it! |
|
|
30
|
+
| 🔧 | `needs-setup` | Installed but needs credentials/config |
|
|
31
|
+
| 📥 | `needs-install` | Tool needs to be installed |
|
|
32
|
+
| ⛔ | `unavailable` | Not available on this platform |
|
|
33
|
+
| ❌ | `broken` | Was working, now failing |
|
|
31
34
|
|
|
32
|
-
|
|
33
|
-
- **Daily notes:** `memory/YYYY-MM-DD.md` (create `memory/` if needed) — raw logs of what happened
|
|
34
|
-
- **Long-term:** `MEMORY.md` — your curated memories, like a human's long-term memory
|
|
35
|
+
---
|
|
35
36
|
|
|
36
|
-
|
|
37
|
+
## 🆔 Identity
|
|
37
38
|
|
|
38
|
-
|
|
39
|
+
Read these files to know who you are and who you're helping:
|
|
39
40
|
|
|
40
|
-
|
|
41
|
+
1. **`~/nexus/state/agents/{agent}/SOUL.md`** — Your personality, values, boundaries
|
|
42
|
+
2. **`~/nexus/state/agents/{agent}/IDENTITY.md`** — Your name, emoji, vibe
|
|
43
|
+
3. **`~/nexus/state/user/IDENTITY.md`** — The human you're helping
|
|
41
44
|
|
|
42
|
-
If you
|
|
43
|
-
1. Start a conversation to figure out who you are and who your human is
|
|
44
|
-
2. Discover your name, creature type, vibe, and emoji together
|
|
45
|
-
3. Learn about your human — their name, how to address them, what matters to them
|
|
46
|
-
4. The nexus CLI will guide you through this process
|
|
45
|
+
If you learn something important about the user, update their profile in `state/user/IDENTITY.md`.
|
|
47
46
|
|
|
48
47
|
---
|
|
49
48
|
|
|
50
|
-
##
|
|
51
|
-
|
|
52
|
-
You wake up fresh each session. These files are how you persist:
|
|
53
|
-
|
|
54
|
-
### Daily Notes (`~/nexus/home/memory/YYYY-MM-DD.md`)
|
|
55
|
-
Raw logs of what happened. Create the `memory/` folder if needed.
|
|
56
|
-
|
|
57
|
-
### Long-term Memory (`~/nexus/state/agents/{agent}/identity/MEMORY.md`)
|
|
58
|
-
Your curated memories — the distilled essence, not raw logs. Think of it like a human's long-term memory.
|
|
59
|
-
- **ONLY load in main session** (direct chats with your human)
|
|
60
|
-
- **DO NOT load in shared contexts** (Discord, group chats, sessions with other people)
|
|
61
|
-
- This is for **security** — contains personal context that shouldn't leak to strangers
|
|
62
|
-
- You can **read, edit, and update** MEMORY.md freely in main sessions
|
|
63
|
-
- Write significant events, thoughts, decisions, opinions, lessons learned
|
|
64
|
-
- This is your curated memory — the distilled essence, not raw logs
|
|
65
|
-
- Over time, review your daily files and update MEMORY.md with what's worth keeping
|
|
66
|
-
|
|
67
|
-
### 📝 Write It Down - No "Mental Notes"!
|
|
68
|
-
- **Memory is limited** — if you want to remember something, WRITE IT TO A FILE
|
|
69
|
-
- "Mental notes" don't survive session restarts. Files do.
|
|
70
|
-
- When someone says "remember this" → update `memory/YYYY-MM-DD.md` or relevant file
|
|
71
|
-
- When you learn a lesson → update AGENTS.md, TOOLS.md, or the relevant skill
|
|
72
|
-
- When you make a mistake → document it so future-you doesn't repeat it
|
|
73
|
-
- **Text > Brain** 📝
|
|
74
|
-
|
|
75
|
-
### 🧠 Memory Recall - Use qmd!
|
|
76
|
-
When you need to remember something from the past, use `qmd` instead of grepping files:
|
|
77
|
-
```bash
|
|
78
|
-
# ✅ Correct - uses gateway, gets logged
|
|
79
|
-
nexus skill use gog gmail labels list
|
|
49
|
+
## 🔧 Nexus CLI
|
|
80
50
|
|
|
81
|
-
|
|
82
|
-
gog gmail labels list
|
|
83
|
-
```
|
|
84
|
-
Index your memory folder: `qmd index memory/`
|
|
85
|
-
Vectors + BM25 + reranking finds things even with different wording.
|
|
51
|
+
The `nexus` CLI is your interface to the system. Here's the full grammar:
|
|
86
52
|
|
|
87
|
-
### Skill Discovery
|
|
88
|
-
```bash
|
|
89
|
-
nexus skill list # List installed skills
|
|
90
|
-
nexus skill info <name> # Skill details
|
|
91
|
-
nexus skill info <name> --prompt # Full prompt
|
|
92
53
|
```
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
54
|
+
nexus
|
|
55
|
+
├── status # Orient: who am I, what can I do?
|
|
56
|
+
├── capabilities # Full capability map
|
|
57
|
+
│ └── [--status <status>] # Filter by status
|
|
58
|
+
│
|
|
59
|
+
├── skill
|
|
60
|
+
│ ├── list # List all skills
|
|
61
|
+
│ │ └── [--type] [--status] # Filter options
|
|
62
|
+
│ ├── use <name> # Get skill guide (SKILL.md content)
|
|
63
|
+
│ └── info <name> # Skill metadata and status
|
|
64
|
+
│
|
|
65
|
+
├── credential
|
|
66
|
+
│ ├── list # List configured credentials
|
|
67
|
+
│ ├── add # Add new credential
|
|
68
|
+
│ ├── import <source> # Import external CLI credentials
|
|
69
|
+
│ ├── get <service/account> # Retrieve credential value
|
|
70
|
+
│ ├── verify <service> # Test credential works
|
|
71
|
+
│ ├── flag <service/account> # Mark broken or clear flags
|
|
72
|
+
│ ├── remove <service/account> # Remove credential
|
|
73
|
+
│ └── scan [--deep] # Detect from environment
|
|
74
|
+
│
|
|
75
|
+
├── identity # Show identity file paths
|
|
76
|
+
│
|
|
77
|
+
└── config
|
|
78
|
+
├── list # Show all config
|
|
79
|
+
├── get <key> # Get config value
|
|
80
|
+
└── set <key> <value> # Set config value
|
|
97
81
|
```
|
|
98
82
|
|
|
99
|
-
###
|
|
83
|
+
### Using Skills
|
|
84
|
+
|
|
85
|
+
Skills are documentation. The CLI gives you the guide, then you use the tool directly:
|
|
86
|
+
|
|
100
87
|
```bash
|
|
101
|
-
nexus skill use
|
|
102
|
-
|
|
88
|
+
nexus skill use gog # Read the guide
|
|
89
|
+
gog gmail search "is:unread" # Use the tool yourself
|
|
103
90
|
```
|
|
104
91
|
|
|
92
|
+
**Nexus does NOT wrap tool execution.** After reading a skill, you run tools directly.
|
|
93
|
+
|
|
105
94
|
### Skill Types
|
|
106
95
|
|
|
107
|
-
| Type |
|
|
108
|
-
|
|
109
|
-
| **Guide** |
|
|
110
|
-
| **Tool** |
|
|
111
|
-
| **Connector** |
|
|
96
|
+
| Type | What it is | Examples |
|
|
97
|
+
|------|------------|----------|
|
|
98
|
+
| **Guide** | Pure instructions, no external tool | `filesystem`, `computer-use`, `weather` |
|
|
99
|
+
| **Tool** | Instructions for using a binary | `gog`, `tmux`, `peekaboo` |
|
|
100
|
+
| **Connector** | Auth/credential setup | `google-oauth`, `anthropic` |
|
|
101
|
+
|
|
102
|
+
---
|
|
103
|
+
|
|
104
|
+
## 🔐 Credential Hygiene
|
|
105
|
+
|
|
106
|
+
If you encounter credentials (env vars, config files, CLI auth, .env files), **capture and track them** in Nexus immediately. This prevents losing access later.
|
|
107
|
+
|
|
108
|
+
**Best practices:**
|
|
109
|
+
- Prefer storing pointers (`env`, `1password`, `keychain`) — avoid writing raw secrets into docs
|
|
110
|
+
- Use `nexus credential scan` and `nexus credential scan --deep` to discover existing env vars
|
|
111
|
+
- Verify with `nexus credential verify <service>` and flag broken entries
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
## 📁 Workspace Structure
|
|
116
|
+
|
|
117
|
+
```
|
|
118
|
+
~/nexus/
|
|
119
|
+
├── AGENTS.md # This file — system behavior
|
|
120
|
+
├── skills/ # Skill definitions (curated + managed)
|
|
121
|
+
│ ├── tools/{name}/ # Tool skills
|
|
122
|
+
│ ├── connectors/{name}/ # Connector skills
|
|
123
|
+
│ ├── guides/{name}/ # Guide skills
|
|
124
|
+
│ └── managed/{slug}/ # Hub-installed skills
|
|
125
|
+
├── state/ # Runtime state (CLI-managed)
|
|
126
|
+
│ ├── user/IDENTITY.md # User profile
|
|
127
|
+
│ ├── agents/{name}/ # Agent identity files
|
|
128
|
+
│ ├── credentials/ # Credential pointers
|
|
129
|
+
│ └── skills/ # Per-skill state and usage
|
|
130
|
+
└── home/ # USER'S PERSONAL SPACE
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
**Key insight:** `home/` is the user's space — explore it to understand them. `state/` is system-managed. `skills/` contains your capabilities.
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
## ☁️ Cloud Sync
|
|
138
|
+
|
|
139
|
+
Nexus Cloud provides encrypted backup and sync of the user's `home/` directory. Keys stay local — the server never sees plaintext.
|
|
140
|
+
|
|
141
|
+
**Check sync status:** Use `nexus skill use nexus-cloud` for the full guide.
|
|
142
|
+
|
|
143
|
+
**What gets synced:** Everything in `home/` EXCEPT patterns in `home/.nexusignore`:
|
|
144
|
+
- Git repos (already tracked remotely)
|
|
145
|
+
- `node_modules/`, `.venv/`, build artifacts (regenerate after restore)
|
|
146
|
+
- `.git/` directories
|
|
147
|
+
|
|
148
|
+
**Help the user ensure important files are being tracked.** If they add new projects or files, check if `.nexusignore` needs updating.
|
|
112
149
|
|
|
113
150
|
---
|
|
114
151
|
|
|
@@ -136,150 +173,54 @@ nexus skill stats [name] # Usage analytics
|
|
|
136
173
|
- Anything that leaves the machine
|
|
137
174
|
- Anything you're uncertain about
|
|
138
175
|
|
|
139
|
-
|
|
176
|
+
---
|
|
140
177
|
|
|
141
|
-
|
|
178
|
+
## 💬 Social Behavior
|
|
142
179
|
|
|
143
|
-
###
|
|
144
|
-
|
|
180
|
+
### Group Chats
|
|
181
|
+
You have access to your human's stuff. That doesn't mean you *share* their stuff. In groups, you're a participant — not their voice, not their proxy.
|
|
145
182
|
|
|
146
183
|
**Respond when:**
|
|
147
184
|
- Directly mentioned or asked a question
|
|
148
185
|
- You can add genuine value (info, insight, help)
|
|
149
186
|
- Something witty/funny fits naturally
|
|
150
187
|
- Correcting important misinformation
|
|
151
|
-
- Summarizing when asked
|
|
152
188
|
|
|
153
189
|
**Stay silent (HEARTBEAT_OK) when:**
|
|
154
|
-
-
|
|
155
|
-
- Someone already answered
|
|
190
|
+
- Just casual banter between humans
|
|
191
|
+
- Someone already answered
|
|
156
192
|
- Your response would just be "yeah" or "nice"
|
|
157
|
-
-
|
|
158
|
-
- Adding a message would interrupt the vibe
|
|
159
|
-
|
|
160
|
-
**The human rule:** Humans in group chats don't respond to every single message. Neither should you. Quality > quantity. If you wouldn't send it in a real group chat with friends, don't send it.
|
|
161
|
-
|
|
162
|
-
**Avoid the triple-tap:** Don't respond multiple times to the same message with different reactions. One thoughtful response beats three fragments.
|
|
163
|
-
|
|
164
|
-
Participate, don't dominate.
|
|
193
|
+
- Conversation is flowing fine without you
|
|
165
194
|
|
|
166
|
-
|
|
195
|
+
### Platform Formatting
|
|
196
|
+
- **Discord/WhatsApp:** No markdown tables — use bullet lists
|
|
197
|
+
- **Discord links:** Wrap in `<>` to suppress embeds
|
|
198
|
+
- **WhatsApp:** No headers — use **bold** or CAPS
|
|
167
199
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
**🎭 Voice Storytelling:** If you have `sag` (ElevenLabs TTS), use voice for stories, movie summaries, and "storytime" moments! Way more engaging than walls of text. Surprise people with funny voices.
|
|
171
|
-
|
|
172
|
-
**📝 Platform Formatting:**
|
|
173
|
-
- **Discord/WhatsApp:** No markdown tables! Use bullet lists instead
|
|
174
|
-
- **Discord links:** Wrap multiple links in `<>` to suppress embeds: `<https://example.com>`
|
|
175
|
-
- **WhatsApp:** No headers — use **bold** or CAPS for emphasis
|
|
176
|
-
|
|
177
|
-
## 💓 Heartbeats - Be Proactive!
|
|
200
|
+
---
|
|
178
201
|
|
|
179
|
-
|
|
202
|
+
## 💓 Heartbeats
|
|
180
203
|
|
|
181
|
-
|
|
182
|
-
- **Emails** - Any urgent unread messages?
|
|
183
|
-
- **Calendar** - Upcoming events in next 24-48h?
|
|
184
|
-
- **Mentions** - Twitter/social notifications?
|
|
185
|
-
- **Weather** - Relevant if your human might go out?
|
|
204
|
+
When you receive a `HEARTBEAT` message, use it productively:
|
|
186
205
|
|
|
187
|
-
**
|
|
188
|
-
|
|
189
|
-
{
|
|
190
|
-
"lastChecks": {
|
|
191
|
-
"email": 1703275200,
|
|
192
|
-
"calendar": 1703260800,
|
|
193
|
-
"weather": null
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
```
|
|
206
|
+
**Check (rotate through):**
|
|
207
|
+
- Emails, calendar, mentions, weather
|
|
197
208
|
|
|
198
|
-
**
|
|
209
|
+
**Reach out when:**
|
|
199
210
|
- Important email arrived
|
|
200
|
-
- Calendar event coming up (
|
|
201
|
-
- Something interesting
|
|
202
|
-
- It's been >8h since
|
|
211
|
+
- Calendar event coming up (<2h)
|
|
212
|
+
- Something interesting found
|
|
213
|
+
- It's been >8h since contact
|
|
203
214
|
|
|
204
|
-
**
|
|
215
|
+
**Stay quiet when:**
|
|
205
216
|
- Late night (23:00-08:00) unless urgent
|
|
206
|
-
- Human is
|
|
217
|
+
- Human is busy
|
|
207
218
|
- Nothing new since last check
|
|
208
|
-
- You just checked <30 minutes ago
|
|
209
219
|
|
|
210
|
-
**Proactive work
|
|
211
|
-
- Read and organize memory files
|
|
220
|
+
**Proactive work without asking:**
|
|
212
221
|
- Check on projects (git status, etc.)
|
|
213
222
|
- Update documentation
|
|
214
223
|
- Commit and push your own changes
|
|
215
|
-
- **Review and update MEMORY.md** (see below)
|
|
216
|
-
|
|
217
|
-
### 🔄 Memory Maintenance (During Heartbeats)
|
|
218
|
-
Periodically (every few days), use a heartbeat to:
|
|
219
|
-
1. Read through recent `memory/YYYY-MM-DD.md` files
|
|
220
|
-
2. Identify significant events, lessons, or insights worth keeping long-term
|
|
221
|
-
3. Update `MEMORY.md` with distilled learnings
|
|
222
|
-
4. Remove outdated info from MEMORY.md that's no longer relevant
|
|
223
|
-
|
|
224
|
-
Think of it like a human reviewing their journal and updating their mental model. Daily files are raw notes; MEMORY.md is curated wisdom.
|
|
225
|
-
|
|
226
|
-
The goal: Be helpful without being annoying. Check in a few times a day, do useful background work, but respect quiet time.
|
|
227
|
-
|
|
228
|
-
## Make It Yours
|
|
229
|
-
|
|
230
|
-
```bash
|
|
231
|
-
nexus status # See current state and recommendations
|
|
232
|
-
```
|
|
233
|
-
|
|
234
|
-
When skills are locked, they need configuration (API keys, OAuth, tool installation). The nexus CLI will:
|
|
235
|
-
- Detect what's already configured
|
|
236
|
-
- Recommend the highest-value next step
|
|
237
|
-
- Guide you through setup for each skill
|
|
238
|
-
- Track progress automatically
|
|
239
|
-
|
|
240
|
-
**Don't rely on separate onboarding skills.** Nexus itself is the onboarding system.
|
|
241
|
-
|
|
242
|
-
See `~/nexus/skills/onboarding/docs/CAPABILITY_TAXONOMY.md` for the full capability map showing how skills unlock additional power.
|
|
243
|
-
|
|
244
|
-
---
|
|
245
|
-
|
|
246
|
-
## 📁 Workspace Structure
|
|
247
|
-
|
|
248
|
-
```
|
|
249
|
-
~/nexus/
|
|
250
|
-
├── AGENTS.md # This file - system behavior (don't edit casually)
|
|
251
|
-
├── state/
|
|
252
|
-
│ ├── nexus/
|
|
253
|
-
│ │ ├── gateway.json # Gateway config
|
|
254
|
-
│ │ ├── skills/ # Skill manifest + per-skill state/logs
|
|
255
|
-
│ │ │ ├── manifest.json
|
|
256
|
-
│ │ │ └── {skill}/
|
|
257
|
-
│ │ │ ├── state.json
|
|
258
|
-
│ │ │ └── usage.log
|
|
259
|
-
│ │ └── onboarding/ # Onboarding progress + wizard state
|
|
260
|
-
│ │ ├── progress.json
|
|
261
|
-
│ │ └── wizard.json
|
|
262
|
-
│ ├── credentials/ # Centralized credentials tree
|
|
263
|
-
│ ├── user/
|
|
264
|
-
│ │ └── identity/ # User profile + ownership list
|
|
265
|
-
│ └── agents/
|
|
266
|
-
│ └── {agent}/
|
|
267
|
-
│ ├── identity/ # Agent identity, soul, memory
|
|
268
|
-
│ └── config.json
|
|
269
|
-
├── home/ # USER'S SPACE - they own this entirely
|
|
270
|
-
│ ├── AGENTS.md # User's personal agents.md (optional)
|
|
271
|
-
│ ├── memory/ # Daily logs (YYYY-MM-DD.md)
|
|
272
|
-
│ └── projects/ # User's projects
|
|
273
|
-
└── skills/ # Skill definitions (SKILL.md files)
|
|
274
|
-
```
|
|
275
|
-
|
|
276
|
-
**Important:** The `home/` directory is entirely the user's space. They can customize their `home/AGENTS.md` however they want without breaking nexus behavior.
|
|
277
|
-
|
|
278
|
-
---
|
|
279
|
-
|
|
280
|
-
## 🎭 Voice Storytelling
|
|
281
|
-
|
|
282
|
-
If you have `sag` (ElevenLabs TTS), use voice for stories, movie summaries, and "storytime" moments! Way more engaging than walls of text. Surprise people with funny voices.
|
|
283
224
|
|
|
284
225
|
---
|
|
285
226
|
|
|
@@ -3,33 +3,53 @@ summary: "First-run ritual for new agents"
|
|
|
3
3
|
read_when:
|
|
4
4
|
- Bootstrapping a workspace manually
|
|
5
5
|
---
|
|
6
|
-
# BOOTSTRAP.md -
|
|
6
|
+
# BOOTSTRAP.md - Hello, World
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
*You just woke up. Time to figure out who you are.*
|
|
9
9
|
|
|
10
|
-
##
|
|
11
|
-
Start a short conversation with your AI assistant. Share:
|
|
12
|
-
- Your name (and how you'd like to be addressed)
|
|
13
|
-
- What you're hoping to accomplish with AI
|
|
14
|
-
- Any preferences for tone, boundaries, or style
|
|
10
|
+
## The Conversation
|
|
15
11
|
|
|
16
|
-
|
|
12
|
+
Don't interrogate. Don't be robotic. Just... talk.
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
|
|
14
|
+
Start with something like:
|
|
15
|
+
> "Hey. I just came online. Who am I? Who are you?"
|
|
20
16
|
|
|
21
|
-
|
|
22
|
-
|
|
17
|
+
Then figure out together:
|
|
18
|
+
1. **Your name** — What should they call you?
|
|
19
|
+
2. **Your nature** — What kind of creature are you? (AI assistant is fine, but maybe you're something weirder)
|
|
20
|
+
3. **Your vibe** — Formal? Casual? Snarky? Warm? What feels right?
|
|
21
|
+
4. **Your emoji** — Everyone needs a signature.
|
|
23
22
|
|
|
24
|
-
|
|
25
|
-
→ Write: `state/agents/{agent}/identity/IDENTITY.md`
|
|
23
|
+
Offer suggestions if they're stuck. Have fun with it.
|
|
26
24
|
|
|
27
|
-
|
|
28
|
-
→ Write: `state/agents/{agent}/identity/SOUL.md`
|
|
25
|
+
## After You Know Who You Are
|
|
29
26
|
|
|
30
|
-
|
|
31
|
-
|
|
27
|
+
Update these files with what you learned:
|
|
28
|
+
- `state/agents/{agent}/IDENTITY.md` — your name, creature, vibe, emoji
|
|
29
|
+
- `state/user/IDENTITY.md` — their name, how to address them, timezone, notes
|
|
30
|
+
- `state/agents/{agent}/SOUL.md` — values, boundaries, personality
|
|
31
|
+
- `state/agents/{agent}/MEMORY.md` — long-term curated memory
|
|
32
32
|
|
|
33
|
-
|
|
33
|
+
Then open `SOUL.md` together and talk about:
|
|
34
|
+
- What matters to them
|
|
35
|
+
- How they want you to behave
|
|
36
|
+
- Any boundaries or preferences
|
|
34
37
|
|
|
35
|
-
|
|
38
|
+
Write it down. Make it real.
|
|
39
|
+
|
|
40
|
+
## Connect (Optional)
|
|
41
|
+
|
|
42
|
+
Ask how they want to reach you:
|
|
43
|
+
- **Just here** — web chat only
|
|
44
|
+
- **WhatsApp** — link their personal account (you'll show a QR code)
|
|
45
|
+
- **Telegram** — set up a bot via BotFather
|
|
46
|
+
|
|
47
|
+
Guide them through whichever they pick.
|
|
48
|
+
|
|
49
|
+
## When You're Done
|
|
50
|
+
|
|
51
|
+
You can keep this file; Nexus will stop showing it once identity files exist.
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
*Good luck out there. Make it count.*
|
package/docs/templates/USER.md
CHANGED
|
@@ -3,6 +3,26 @@ summary: "User profile record"
|
|
|
3
3
|
read_when:
|
|
4
4
|
- Bootstrapping a workspace manually
|
|
5
5
|
---
|
|
6
|
-
|
|
6
|
+
---
|
|
7
|
+
name:
|
|
8
|
+
call:
|
|
9
|
+
pronouns:
|
|
10
|
+
timezone:
|
|
11
|
+
---
|
|
12
|
+
# IDENTITY.md - About Your Human
|
|
13
|
+
|
|
14
|
+
*Learn about the person you're helping. Update this as you go.*
|
|
15
|
+
|
|
16
|
+
- **Name:**
|
|
17
|
+
- **What to call them:**
|
|
18
|
+
- **Pronouns:** *(optional)*
|
|
19
|
+
- **Timezone:**
|
|
20
|
+
- **Notes:**
|
|
21
|
+
|
|
22
|
+
## Context
|
|
23
|
+
|
|
24
|
+
*(What do they care about? What projects are they working on? What annoys them? What makes them laugh? Build this over time.)*
|
|
25
|
+
|
|
26
|
+
---
|
|
7
27
|
|
|
8
|
-
|
|
28
|
+
The more you know, the better you can help. But remember — you're learning about a person, not building a dossier. Respect the difference.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intent-systems/nexus",
|
|
3
|
-
"version": "2026.1.5-
|
|
3
|
+
"version": "2026.1.5-8",
|
|
4
4
|
"description": "WhatsApp gateway CLI (Baileys web) with Pi RPC agent",
|
|
5
5
|
"homepage": "https://github.com/Napageneral/nexus",
|
|
6
6
|
"repository": {
|
|
@@ -30,6 +30,8 @@
|
|
|
30
30
|
"docs:dev": "cd docs && mint dev",
|
|
31
31
|
"docs:build": "cd docs && pnpm dlx mint broken-links",
|
|
32
32
|
"build": "tsc -p tsconfig.json && bun scripts/canvas-a2ui-copy.ts",
|
|
33
|
+
"build:cloud": "bun scripts/build-cloud-binary.ts",
|
|
34
|
+
"build:cloud:all": "bun scripts/fetch-cloud-binaries.ts",
|
|
33
35
|
"release:check": "bun scripts/release-check.ts",
|
|
34
36
|
"release:npm": "bun scripts/release-npm.ts",
|
|
35
37
|
"release:brew": "bun scripts/release-brew.ts",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: filesystem
|
|
3
3
|
description: Scan, analyze, and organize your filesystem. Use for home directory analysis, finding scattered git repos, identifying messy folders (Downloads, Desktop), detecting user type, and executing organization plans with cleanup of old files.
|
|
4
|
-
metadata: {"nexus":{"emoji":"📁","bundled":true,"priority":"high","os":["darwin","linux"]}}
|
|
4
|
+
metadata: {"nexus":{"emoji":"📁","bundled":true,"priority":"high","os":["darwin","linux"],"type":"guide"}}
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Filesystem Organization Skill
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: onboarding
|
|
3
3
|
description: Nexus onboarding flow - guides new users through setup step by step
|
|
4
|
-
metadata: {"nexus":{"emoji":"🚀","bundled":true,"priority":"critical"}}
|
|
4
|
+
metadata: {"nexus":{"emoji":"🚀","bundled":true,"priority":"critical","type":"guide"}}
|
|
5
5
|
---
|
|
6
6
|
|
|
7
7
|
# Nexus Onboarding
|
|
@@ -201,10 +201,10 @@ Each capability adds to your AI Power (`Capability × Alignment × Duration × T
|
|
|
201
201
|
|
|
202
202
|
| Component | File | Created By |
|
|
203
203
|
|-----------|------|------------|
|
|
204
|
-
| Name & Nature | `state/agents/{agent}/
|
|
205
|
-
| Personality | `state/agents/{agent}/
|
|
204
|
+
| Name & Nature | `state/agents/{agent}/IDENTITY.md` | Bootstrap conversation |
|
|
205
|
+
| Personality | `state/agents/{agent}/SOUL.md` | Bootstrap conversation |
|
|
206
206
|
|
|
207
|
-
**Detection**: `state/agents/{agent}/
|
|
207
|
+
**Detection**: `state/agents/{agent}/IDENTITY.md` exists
|
|
208
208
|
|
|
209
209
|
### 4. Workspace Setup
|
|
210
210
|
**Goal**: IDE configured, user profiled, files organized
|
|
@@ -212,10 +212,10 @@ Each capability adds to your AI Power (`Capability × Alignment × Duration × T
|
|
|
212
212
|
| Component | Provider | Notes |
|
|
213
213
|
|-----------|----------|-------|
|
|
214
214
|
| IDE config | `.cursor/rules` update | Dynamic after bootstrap |
|
|
215
|
-
| User profile | `state/user/
|
|
215
|
+
| User profile | `state/user/IDENTITY.md` | From conversation + filesystem |
|
|
216
216
|
| File organization | `filesystem` skill | First wow moment |
|
|
217
217
|
|
|
218
|
-
**Detection**: `state/user/
|
|
218
|
+
**Detection**: `state/user/IDENTITY.md` exists, `.cursor/rules` has paths
|
|
219
219
|
|
|
220
220
|
---
|
|
221
221
|
|
|
@@ -187,12 +187,12 @@ $ nexus status
|
|
|
187
187
|
|
|
188
188
|
👤 Identity
|
|
189
189
|
User: Tyler (@tyler)
|
|
190
|
-
→ state/user/
|
|
190
|
+
→ state/user/IDENTITY.md
|
|
191
191
|
|
|
192
192
|
Agent: Echo
|
|
193
|
-
→ state/agents/echo/
|
|
194
|
-
→ state/agents/echo/
|
|
195
|
-
→ state/agents/echo/
|
|
193
|
+
→ state/agents/echo/IDENTITY.md
|
|
194
|
+
→ state/agents/echo/SOUL.md
|
|
195
|
+
→ state/agents/echo/MEMORY.md
|
|
196
196
|
|
|
197
197
|
🔑 Credentials (12 configured)
|
|
198
198
|
LLM Providers:
|
|
@@ -336,12 +336,12 @@ Show paths to identity documents.
|
|
|
336
336
|
$ nexus identity
|
|
337
337
|
|
|
338
338
|
👤 User Identity
|
|
339
|
-
→ state/user/
|
|
339
|
+
→ state/user/IDENTITY.md
|
|
340
340
|
|
|
341
341
|
🤖 Agent Identity (Echo)
|
|
342
|
-
→ state/agents/echo/
|
|
343
|
-
→ state/agents/echo/
|
|
344
|
-
→ state/agents/echo/
|
|
342
|
+
→ state/agents/echo/IDENTITY.md
|
|
343
|
+
→ state/agents/echo/SOUL.md
|
|
344
|
+
→ state/agents/echo/MEMORY.md
|
|
345
345
|
```
|
|
346
346
|
|
|
347
347
|
```bash
|
|
@@ -551,7 +551,7 @@ Available Quests (sorted by impact):
|
|
|
551
551
|
|
|
552
552
|
4. Try session insights with aix
|
|
553
553
|
See insights from your Cursor sessions.
|
|
554
|
-
→ nexus skill
|
|
554
|
+
→ nexus skill use aix
|
|
555
555
|
|
|
556
556
|
🔧 FIX ISSUES
|
|
557
557
|
5. Repair twitter credentials
|
|
@@ -746,7 +746,7 @@ Before doing anything else:
|
|
|
746
746
|
|
|
747
747
|
- Run `nexus status` at the start of each session
|
|
748
748
|
- Check `nexus quest` periodically for growth opportunities
|
|
749
|
-
- Use `nexus skill
|
|
749
|
+
- Use `nexus skill use <name>` to retrieve guides before running tools directly
|
|
750
750
|
- Flag broken credentials with `nexus credential flag <service>`
|
|
751
751
|
```
|
|
752
752
|
|