@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
|
@@ -0,0 +1,393 @@
|
|
|
1
|
+
# Skill Specification
|
|
2
|
+
|
|
3
|
+
> How to create skills for Nexus.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What is a Skill?
|
|
8
|
+
|
|
9
|
+
A skill is a folder containing a `SKILL.md` file that teaches an agent how to do something. Nexus skills extend the [Agent Skills Specification](https://agentskills.io/specification) with additional metadata.
|
|
10
|
+
|
|
11
|
+
**Key insight:** Skills are documentation. When an agent "uses" a skill via `nexus skill use <name>`, they receive the SKILL.md content. Nexus does not wrap tool execution.
|
|
12
|
+
|
|
13
|
+
Skills are not used for session bootstrap. Bootstrap is handled by Cursor hooks,
|
|
14
|
+
`AGENTS.md`, and `.cursor/rules` (see `07_AGENT_BINDINGS.md`).
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Directory Structure
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
skill-name/
|
|
22
|
+
├── SKILL.md # Required: frontmatter + instructions
|
|
23
|
+
├── scripts/ # Optional: executable code
|
|
24
|
+
├── references/ # Optional: additional docs
|
|
25
|
+
└── assets/ # Optional: templates, images
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
Skills live in one of three folders based on type:
|
|
29
|
+
|
|
30
|
+
| Type | Location | Purpose |
|
|
31
|
+
|------|----------|---------|
|
|
32
|
+
| Tool | `~/nexus/skills/tools/{name}/` | Binary/CLI usage guide |
|
|
33
|
+
| Connector | `~/nexus/skills/connectors/{name}/` | Auth/credential setup |
|
|
34
|
+
| Guide | `~/nexus/skills/guides/{name}/` | Pure instructions |
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## SKILL.md Format
|
|
39
|
+
|
|
40
|
+
### Frontmatter (Required)
|
|
41
|
+
|
|
42
|
+
```yaml
|
|
43
|
+
---
|
|
44
|
+
name: skill-name
|
|
45
|
+
description: What this skill does and when to use it.
|
|
46
|
+
metadata:
|
|
47
|
+
nexus:
|
|
48
|
+
type: tool
|
|
49
|
+
emoji: 📧
|
|
50
|
+
provides: [email-read, email-send, calendar]
|
|
51
|
+
requires:
|
|
52
|
+
credentials: [google-oauth]
|
|
53
|
+
bins: [gog]
|
|
54
|
+
os: [darwin, linux]
|
|
55
|
+
install:
|
|
56
|
+
- id: brew
|
|
57
|
+
kind: brew
|
|
58
|
+
formula: steipete/tap/gogcli
|
|
59
|
+
---
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Standard Fields (Agent Skills Spec)
|
|
63
|
+
|
|
64
|
+
| Field | Required | Description |
|
|
65
|
+
|-------|----------|-------------|
|
|
66
|
+
| `name` | Yes | Unique identifier (lowercase, kebab-case) |
|
|
67
|
+
| `description` | Yes | What the skill does and when to use it |
|
|
68
|
+
| `license` | No | License name or file reference |
|
|
69
|
+
| `metadata` | No | Extension point for additional data |
|
|
70
|
+
|
|
71
|
+
### Nexus Extension Fields
|
|
72
|
+
|
|
73
|
+
All Nexus-specific fields go under `metadata.nexus`:
|
|
74
|
+
|
|
75
|
+
```yaml
|
|
76
|
+
metadata:
|
|
77
|
+
nexus:
|
|
78
|
+
type: tool # Required: tool, connector, or guide
|
|
79
|
+
emoji: 📧 # Optional: visual identifier
|
|
80
|
+
provides: [...] # Optional: capabilities this enables
|
|
81
|
+
requires: # Optional: dependencies
|
|
82
|
+
connectors: [...] # Required connectors
|
|
83
|
+
bins: [...] # Required binaries (all must exist)
|
|
84
|
+
anyBins: [...] # Alternative binaries (any one works)
|
|
85
|
+
env: [...] # Required environment variables
|
|
86
|
+
os: [darwin, linux] # Optional: platform restrictions
|
|
87
|
+
install: [...] # Optional: installation instructions
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
## Skill Types
|
|
93
|
+
|
|
94
|
+
### Tool
|
|
95
|
+
|
|
96
|
+
A tool skill documents how to install and use a binary/CLI.
|
|
97
|
+
|
|
98
|
+
**Location:** `skills/tools/{name}/SKILL.md`
|
|
99
|
+
|
|
100
|
+
**Example:** `skills/tools/gog/SKILL.md`
|
|
101
|
+
|
|
102
|
+
```yaml
|
|
103
|
+
---
|
|
104
|
+
name: gog
|
|
105
|
+
description: Google Workspace CLI for Gmail, Calendar, Drive, Contacts.
|
|
106
|
+
metadata:
|
|
107
|
+
nexus:
|
|
108
|
+
type: tool
|
|
109
|
+
emoji: 📧
|
|
110
|
+
provides: [email-read, email-send, calendar, cloud-storage, contacts]
|
|
111
|
+
requires:
|
|
112
|
+
credentials: [google-oauth]
|
|
113
|
+
bins: [gog]
|
|
114
|
+
os: [darwin, linux]
|
|
115
|
+
install:
|
|
116
|
+
- id: brew
|
|
117
|
+
kind: brew
|
|
118
|
+
formula: steipete/tap/gogcli
|
|
119
|
+
bins: [gog]
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
# gog
|
|
123
|
+
|
|
124
|
+
Google Workspace CLI. Requires OAuth setup via the google-oauth connector.
|
|
125
|
+
|
|
126
|
+
## Installation
|
|
127
|
+
|
|
128
|
+
```bash
|
|
129
|
+
brew install steipete/tap/gogcli
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
## Usage
|
|
133
|
+
|
|
134
|
+
```bash
|
|
135
|
+
# Search emails
|
|
136
|
+
gog gmail search "is:unread" --max 10
|
|
137
|
+
|
|
138
|
+
# List calendar events
|
|
139
|
+
gog calendar events --json
|
|
140
|
+
|
|
141
|
+
# List drive files
|
|
142
|
+
gog drive files list
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## Setup
|
|
146
|
+
|
|
147
|
+
Before using, set up authentication:
|
|
148
|
+
1. Use the `google-oauth` connector skill
|
|
149
|
+
2. Run `gog auth add your@email.com`
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
### Connector
|
|
153
|
+
|
|
154
|
+
A connector skill documents how to set up authentication for a service.
|
|
155
|
+
|
|
156
|
+
**Location:** `skills/connectors/{name}/SKILL.md`
|
|
157
|
+
|
|
158
|
+
**Example:** `connectors/anthropic/SKILL.md`
|
|
159
|
+
|
|
160
|
+
```yaml
|
|
161
|
+
---
|
|
162
|
+
name: anthropic
|
|
163
|
+
description: Anthropic API credentials for Claude models.
|
|
164
|
+
metadata:
|
|
165
|
+
nexus:
|
|
166
|
+
type: connector
|
|
167
|
+
emoji: 🧠
|
|
168
|
+
provides: [llm-anthropic]
|
|
169
|
+
requires:
|
|
170
|
+
env: [ANTHROPIC_API_KEY]
|
|
171
|
+
---
|
|
172
|
+
|
|
173
|
+
# Anthropic Connector
|
|
174
|
+
|
|
175
|
+
API key setup for Claude models.
|
|
176
|
+
|
|
177
|
+
## Get API Key
|
|
178
|
+
|
|
179
|
+
1. Go to https://console.anthropic.com
|
|
180
|
+
2. Create an account or sign in
|
|
181
|
+
3. Navigate to API Keys
|
|
182
|
+
4. Create a new key
|
|
183
|
+
|
|
184
|
+
## Store Credential
|
|
185
|
+
|
|
186
|
+
Using Keychain (macOS):
|
|
187
|
+
```bash
|
|
188
|
+
nexus credential add \
|
|
189
|
+
--service anthropic \
|
|
190
|
+
--account your@email.com \
|
|
191
|
+
--type api-key \
|
|
192
|
+
--storage keychain
|
|
193
|
+
```
|
|
194
|
+
|
|
195
|
+
Using 1Password:
|
|
196
|
+
```bash
|
|
197
|
+
op item create --category="API Credential" \
|
|
198
|
+
--title="Anthropic API Key" \
|
|
199
|
+
--vault="Nexus" \
|
|
200
|
+
api_key="sk-ant-xxxxx"
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
## Verify
|
|
204
|
+
|
|
205
|
+
```bash
|
|
206
|
+
nexus credential verify anthropic
|
|
207
|
+
```
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
### Guide
|
|
211
|
+
|
|
212
|
+
A guide skill provides pure instructions using other tools/capabilities.
|
|
213
|
+
|
|
214
|
+
**Location:** `skills/guides/{name}/SKILL.md`
|
|
215
|
+
|
|
216
|
+
**Example:** `guides/filesystem/SKILL.md`
|
|
217
|
+
|
|
218
|
+
```yaml
|
|
219
|
+
---
|
|
220
|
+
name: filesystem
|
|
221
|
+
description: Scan, analyze, and organize files. Use for cleanup tasks.
|
|
222
|
+
metadata:
|
|
223
|
+
nexus:
|
|
224
|
+
type: guide
|
|
225
|
+
emoji: 📁
|
|
226
|
+
provides: [file-organization]
|
|
227
|
+
os: [darwin, linux]
|
|
228
|
+
---
|
|
229
|
+
|
|
230
|
+
# Filesystem Organization
|
|
231
|
+
|
|
232
|
+
Analyze and organize files with safety-first principles.
|
|
233
|
+
|
|
234
|
+
## Safety Rules
|
|
235
|
+
|
|
236
|
+
1. **Never delete without explicit approval**
|
|
237
|
+
2. **Dry run first** - show what would change
|
|
238
|
+
3. **Use trash, not rm** - recoverable beats gone
|
|
239
|
+
|
|
240
|
+
## Common Tasks
|
|
241
|
+
|
|
242
|
+
### Analyze Downloads
|
|
243
|
+
```bash
|
|
244
|
+
ls -la ~/Downloads | wc -l
|
|
245
|
+
find ~/Downloads -mtime +180 -type f | wc -l # Older than 6 months
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
### Find Large Files
|
|
249
|
+
```bash
|
|
250
|
+
find ~ -type f -size +100M 2>/dev/null
|
|
251
|
+
```
|
|
252
|
+
|
|
253
|
+
### Organize by Type
|
|
254
|
+
```bash
|
|
255
|
+
# Create structure
|
|
256
|
+
mkdir -p ~/organized/{documents,images,archives}
|
|
257
|
+
|
|
258
|
+
# Move files (ask user first!)
|
|
259
|
+
mv ~/Downloads/*.pdf ~/organized/documents/
|
|
260
|
+
mv ~/Downloads/*.{jpg,png} ~/organized/images/
|
|
261
|
+
```
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
---
|
|
265
|
+
|
|
266
|
+
## Provides and Requires
|
|
267
|
+
|
|
268
|
+
### `provides`
|
|
269
|
+
|
|
270
|
+
List of capabilities this skill enables:
|
|
271
|
+
|
|
272
|
+
```yaml
|
|
273
|
+
provides: [email-read, email-send, calendar]
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
Capabilities are abstract. See the capability taxonomy for the full list.
|
|
277
|
+
|
|
278
|
+
### `requires`
|
|
279
|
+
|
|
280
|
+
Dependencies needed for the skill to work. Tool skills typically require
|
|
281
|
+
connector skills (represented as `credentials`), and connector skills require
|
|
282
|
+
credentials/env/config to be present.
|
|
283
|
+
|
|
284
|
+
```yaml
|
|
285
|
+
requires:
|
|
286
|
+
credentials: [google-oauth] # Required connector skills
|
|
287
|
+
bins: [gog] # All must be in PATH
|
|
288
|
+
anyBins: [peekaboo, interpreter] # Any one works
|
|
289
|
+
env: [BRAVE_API_KEY] # Required env vars
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
---
|
|
293
|
+
|
|
294
|
+
## Installation Spec
|
|
295
|
+
|
|
296
|
+
For tools, provide installation instructions:
|
|
297
|
+
|
|
298
|
+
```yaml
|
|
299
|
+
install:
|
|
300
|
+
- id: brew
|
|
301
|
+
kind: brew
|
|
302
|
+
formula: steipete/tap/gogcli
|
|
303
|
+
bins: [gog]
|
|
304
|
+
label: "Install via Homebrew"
|
|
305
|
+
|
|
306
|
+
- id: go
|
|
307
|
+
kind: go
|
|
308
|
+
module: github.com/steipete/gogcli
|
|
309
|
+
bins: [gog]
|
|
310
|
+
label: "Install via Go"
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
**Supported kinds:**
|
|
314
|
+
|
|
315
|
+
| Kind | Fields | Description |
|
|
316
|
+
|------|--------|-------------|
|
|
317
|
+
| `brew` | `formula`, `bins` | Homebrew package |
|
|
318
|
+
| `go` | `module`, `bins` | Go install |
|
|
319
|
+
| `node` | `package`, `bins` | Node package |
|
|
320
|
+
| `uv` | `package`, `bins` | Python (uv) package |
|
|
321
|
+
|
|
322
|
+
---
|
|
323
|
+
|
|
324
|
+
## Scripts Directory
|
|
325
|
+
|
|
326
|
+
Skills can include scripts for complex operations:
|
|
327
|
+
|
|
328
|
+
```
|
|
329
|
+
skill-name/
|
|
330
|
+
├── SKILL.md
|
|
331
|
+
└── scripts/
|
|
332
|
+
├── search.mjs # Node script
|
|
333
|
+
├── analyze.py # Python script
|
|
334
|
+
└── setup.sh # Shell script
|
|
335
|
+
```
|
|
336
|
+
|
|
337
|
+
Reference in the skill:
|
|
338
|
+
|
|
339
|
+
```markdown
|
|
340
|
+
## Advanced Search
|
|
341
|
+
|
|
342
|
+
Run the search script:
|
|
343
|
+
```bash
|
|
344
|
+
node {skill_dir}/scripts/search.mjs "query"
|
|
345
|
+
```
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
---
|
|
349
|
+
|
|
350
|
+
## References Directory
|
|
351
|
+
|
|
352
|
+
Additional documentation that agents can read when needed:
|
|
353
|
+
|
|
354
|
+
```
|
|
355
|
+
skill-name/
|
|
356
|
+
├── SKILL.md
|
|
357
|
+
└── references/
|
|
358
|
+
├── api-docs.md
|
|
359
|
+
├── examples.md
|
|
360
|
+
└── troubleshooting.md
|
|
361
|
+
```
|
|
362
|
+
|
|
363
|
+
Keep the main SKILL.md focused. Move detailed content to references.
|
|
364
|
+
|
|
365
|
+
---
|
|
366
|
+
|
|
367
|
+
## Best Practices
|
|
368
|
+
|
|
369
|
+
1. **Description matters** - Include keywords that help agents identify when to use the skill
|
|
370
|
+
|
|
371
|
+
2. **Show, don't tell** - Include concrete command examples
|
|
372
|
+
|
|
373
|
+
3. **Progressive disclosure** - Main content in SKILL.md, details in references/
|
|
374
|
+
|
|
375
|
+
4. **Safety first** - Include guardrails for destructive operations
|
|
376
|
+
|
|
377
|
+
5. **Test the flow** - Use the skill yourself before publishing
|
|
378
|
+
|
|
379
|
+
---
|
|
380
|
+
|
|
381
|
+
## Validation
|
|
382
|
+
|
|
383
|
+
Check your skill follows the spec:
|
|
384
|
+
|
|
385
|
+
```bash
|
|
386
|
+
nexus skill info your-skill-name
|
|
387
|
+
```
|
|
388
|
+
|
|
389
|
+
This verifies:
|
|
390
|
+
- SKILL.md exists and has valid frontmatter
|
|
391
|
+
- Required fields present
|
|
392
|
+
- Type is valid
|
|
393
|
+
- Dependencies are specified correctly
|
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
# Capability Taxonomy
|
|
2
|
+
|
|
3
|
+
> The onboarding journey from zero to full power.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## What are Capabilities?
|
|
8
|
+
|
|
9
|
+
Capabilities are abstract goals: "Can the agent read email?" not "Is gog installed?"
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
Capability (abstract) → Provider (concrete)
|
|
13
|
+
email-read → gog + google-oauth
|
|
14
|
+
messaging-read → eve, imsg, wacli
|
|
15
|
+
chat-send → discord, slack
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Multiple providers can satisfy the same capability. This enables:
|
|
19
|
+
- Portability (swap Gmail for Outlook)
|
|
20
|
+
- Choice (use whatever tools you prefer)
|
|
21
|
+
- Graceful degradation (some capability is better than none)
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## The Onboarding Journey
|
|
26
|
+
|
|
27
|
+
```
|
|
28
|
+
┌─────────────────────────────────────────────────────────────────────────────┐
|
|
29
|
+
│ CORE ONBOARDING (Required) │
|
|
30
|
+
│ │
|
|
31
|
+
│ 1. ACCESS PLANE ──► 2. NEXUS INSTALL ──► 3. IDENTITY ──► 4. FIRST WOW │
|
|
32
|
+
│ │
|
|
33
|
+
│ Immediately usable: filesystem, computer-use, weather, tmux │
|
|
34
|
+
│ │
|
|
35
|
+
└─────────────────────────────────────────────────────────────────────────────┘
|
|
36
|
+
│
|
|
37
|
+
════ DEPTH TRACK ════
|
|
38
|
+
│
|
|
39
|
+
▼
|
|
40
|
+
┌─────────────────────────────────────────────────────────────────────────────┐
|
|
41
|
+
│ 5. CREDENTIAL MANAGER (Recommended) │
|
|
42
|
+
│ 1Password, Bitwarden, or Keychain │
|
|
43
|
+
│ │
|
|
44
|
+
│ Multiplier: Makes all future setup easier and more secure │
|
|
45
|
+
└─────────────────────────────────────────────────────────────────────────────┘
|
|
46
|
+
│
|
|
47
|
+
════ BREADTH TRACK ════
|
|
48
|
+
│
|
|
49
|
+
▼
|
|
50
|
+
┌─────────────────────────────────────────────────────────────────────────────┐
|
|
51
|
+
│ CAPABILITY EXPANSION (Parallel) │
|
|
52
|
+
│ │
|
|
53
|
+
│ ┌─────────────────┐ ┌─────────────────┐ ┌─────────────────┐ │
|
|
54
|
+
│ │ 6. USER COMMS │ │ 7. USER DATA │ │ 8. ENABLE LLM │ │
|
|
55
|
+
│ │ email, messages │ │ calendar, notes │ │ API keys │ │
|
|
56
|
+
│ └─────────────────┘ └─────────────────┘ └─────────────────┘ │
|
|
57
|
+
│ │
|
|
58
|
+
│ User chooses their own path — all same level │
|
|
59
|
+
└─────────────────────────────────────────────────────────────────────────────┘
|
|
60
|
+
│
|
|
61
|
+
(Enable LLM unlocks next level)
|
|
62
|
+
│
|
|
63
|
+
▼
|
|
64
|
+
┌─────────────────────────────────────────────────────────────────────────────┐
|
|
65
|
+
│ AGENT INDEPENDENCE (Requires LLM) │
|
|
66
|
+
│ │
|
|
67
|
+
│ ┌─────────────────────────┐ ┌─────────────────────────┐ │
|
|
68
|
+
│ │ 9. AGENT COMMUNICATIONS │ │ 10. AUTOMATION │ │
|
|
69
|
+
│ │ Discord, Telegram │ │ cron, reminders │ │
|
|
70
|
+
│ └─────────────────────────┘ └─────────────────────────┘ │
|
|
71
|
+
│ │
|
|
72
|
+
│ Agent can reach you outside IDE, work while you sleep │
|
|
73
|
+
└─────────────────────────────────────────────────────────────────────────────┘
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
Note: During the Identity step, the Cursor sessionStart hook injects identity
|
|
77
|
+
and memory into agent context. See `07_AGENT_BINDINGS.md`.
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Capability Categories
|
|
82
|
+
|
|
83
|
+
### 🗣️ Communication
|
|
84
|
+
|
|
85
|
+
| Capability | Description | Providers |
|
|
86
|
+
|------------|-------------|-----------|
|
|
87
|
+
| `email-read` | Read emails | gog + google-oauth |
|
|
88
|
+
| `email-send` | Send emails | gog + google-oauth |
|
|
89
|
+
| `messaging-read` | Read SMS/iMessage/WhatsApp | imsg, eve, wacli |
|
|
90
|
+
| `messaging-send` | Send messages | imsg, wacli |
|
|
91
|
+
| `chat-read` | Read Discord/Slack | discord, slack |
|
|
92
|
+
| `chat-send` | Send to Discord/Slack | discord, slack |
|
|
93
|
+
| `contacts` | Address book access | gog + google-oauth |
|
|
94
|
+
|
|
95
|
+
### 📱 Social & News
|
|
96
|
+
|
|
97
|
+
| Capability | Description | Providers |
|
|
98
|
+
|------------|-------------|-----------|
|
|
99
|
+
| `social-x` | X/Twitter feed & posting | bird + twitter |
|
|
100
|
+
| `rss` | RSS feed monitoring | blogwatcher |
|
|
101
|
+
| `news` | News search | brave-search |
|
|
102
|
+
|
|
103
|
+
### 🔮 Insights
|
|
104
|
+
|
|
105
|
+
| Capability | Description | Providers |
|
|
106
|
+
|------------|-------------|-----------|
|
|
107
|
+
| `relationship-insights` | Communication patterns | eve, comms |
|
|
108
|
+
| `session-insights` | AI conversation analysis | aix |
|
|
109
|
+
|
|
110
|
+
### 📋 Productivity
|
|
111
|
+
|
|
112
|
+
| Capability | Description | Providers |
|
|
113
|
+
|------------|-------------|-----------|
|
|
114
|
+
| `calendar` | Events, scheduling | gog + google-oauth |
|
|
115
|
+
| `tasks` | Todo management | things-mac, apple-reminders |
|
|
116
|
+
| `notes` | Note-taking | apple-notes, obsidian, notion |
|
|
117
|
+
| `reminders` | Time-based notifications | apple-reminders, gog |
|
|
118
|
+
|
|
119
|
+
### 💾 Data Access
|
|
120
|
+
|
|
121
|
+
| Capability | Description | Providers |
|
|
122
|
+
|------------|-------------|-----------|
|
|
123
|
+
| `cloud-storage` | Google Drive, Dropbox | gog + google-oauth |
|
|
124
|
+
| `local-files` | Filesystem access | filesystem guide |
|
|
125
|
+
|
|
126
|
+
### 🤖 Automation
|
|
127
|
+
|
|
128
|
+
| Capability | Description | Providers |
|
|
129
|
+
|------------|-------------|-----------|
|
|
130
|
+
| `scheduling` | Cron/scheduled tasks | nexus cron + LLM |
|
|
131
|
+
| `gui-automation` | Screen/mouse control | peekaboo |
|
|
132
|
+
| `browser-automation` | Web automation | computer-use + peekaboo |
|
|
133
|
+
|
|
134
|
+
### 🧠 AI & LLM
|
|
135
|
+
|
|
136
|
+
| Capability | Description | Providers |
|
|
137
|
+
|------------|-------------|-----------|
|
|
138
|
+
| `llm-anthropic` | Claude models | anthropic connector |
|
|
139
|
+
| `llm-openai` | GPT models | openai connector |
|
|
140
|
+
| `llm-gemini` | Gemini models | gemini connector |
|
|
141
|
+
| `llm-local` | Local models | ollama |
|
|
142
|
+
| `text-to-speech` | Voice synthesis | elevenlabs |
|
|
143
|
+
| `speech-to-text` | Transcription | openai-whisper |
|
|
144
|
+
| `image-generation` | Generate images | openai (DALL-E) |
|
|
145
|
+
|
|
146
|
+
### 🏠 Smart Home
|
|
147
|
+
|
|
148
|
+
| Capability | Description | Providers |
|
|
149
|
+
|------------|-------------|-----------|
|
|
150
|
+
| `smart-lights` | Philips Hue | openhue |
|
|
151
|
+
| `smart-audio` | Sonos, BluOS | sonoscli, blucli |
|
|
152
|
+
| `smart-sleep` | Eight Sleep | eightctl |
|
|
153
|
+
|
|
154
|
+
### 🎵 Music
|
|
155
|
+
|
|
156
|
+
| Capability | Description | Providers |
|
|
157
|
+
|------------|-------------|-----------|
|
|
158
|
+
| `spotify` | Spotify playback | spotify-player |
|
|
159
|
+
| `music-detection` | Identify songs | songsee |
|
|
160
|
+
|
|
161
|
+
### 🌐 Web
|
|
162
|
+
|
|
163
|
+
| Capability | Description | Providers |
|
|
164
|
+
|------------|-------------|-----------|
|
|
165
|
+
| `web-search` | Search the web | brave-search |
|
|
166
|
+
| `web-scraping` | Extract content | firecrawl, apify |
|
|
167
|
+
| `weather` | Weather forecasts | weather guide |
|
|
168
|
+
|
|
169
|
+
### 💻 Development
|
|
170
|
+
|
|
171
|
+
| Capability | Description | Providers |
|
|
172
|
+
|------------|-------------|-----------|
|
|
173
|
+
| `version-control` | Git/GitHub | github connector |
|
|
174
|
+
| `terminal-sessions` | Tmux management | tmux |
|
|
175
|
+
| `mcp-tools` | MCP server management | mcporter |
|
|
176
|
+
|
|
177
|
+
### 🔐 Security
|
|
178
|
+
|
|
179
|
+
| Capability | Description | Providers |
|
|
180
|
+
|------------|-------------|-----------|
|
|
181
|
+
| `credential-management` | Secure secret storage | 1password, keychain |
|
|
182
|
+
| `oauth-management` | OAuth token handling | google-oauth |
|
|
183
|
+
|
|
184
|
+
---
|
|
185
|
+
|
|
186
|
+
## Capability Status Levels
|
|
187
|
+
|
|
188
|
+
| Emoji | Status | Meaning |
|
|
189
|
+
|-------|--------|---------|
|
|
190
|
+
| ✅ | `active` | Configured AND has been used |
|
|
191
|
+
| ⭐ | `ready` | Configured, never used |
|
|
192
|
+
| 🔧 | `needs-setup` | Needs credential/config |
|
|
193
|
+
| 📥 | `needs-install` | Tool needs installation |
|
|
194
|
+
| ⛔ | `unavailable` | Not available on this platform |
|
|
195
|
+
| ❌ | `broken` | Was working, now failing |
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## What's Usable Immediately
|
|
200
|
+
|
|
201
|
+
After core onboarding (identity + workspace), these work with no setup:
|
|
202
|
+
|
|
203
|
+
| Skill | Type | Why |
|
|
204
|
+
|-------|------|-----|
|
|
205
|
+
| filesystem | Guide | Just shell commands |
|
|
206
|
+
| computer-use | Guide | Uses peekaboo (macOS FDA) |
|
|
207
|
+
| weather | Guide | Free API |
|
|
208
|
+
| tmux | Tool | Usually pre-installed |
|
|
209
|
+
| peekaboo | Tool | macOS FDA only |
|
|
210
|
+
|
|
211
|
+
Everything else requires connector setup (API keys, OAuth, etc.).
|
|
212
|
+
|
|
213
|
+
---
|
|
214
|
+
|
|
215
|
+
## Recommended Paths
|
|
216
|
+
|
|
217
|
+
### Quick Path (~35 min)
|
|
218
|
+
|
|
219
|
+
For users who want to text their agent ASAP:
|
|
220
|
+
|
|
221
|
+
```
|
|
222
|
+
Core Onboarding (15 min)
|
|
223
|
+
└─ Filesystem wow moment
|
|
224
|
+
│
|
|
225
|
+
▼
|
|
226
|
+
User Comms: iMessage via eve (5 min)
|
|
227
|
+
└─ "You should text Mom back"
|
|
228
|
+
│
|
|
229
|
+
▼
|
|
230
|
+
Enable LLM: Anthropic API (5 min)
|
|
231
|
+
│
|
|
232
|
+
▼
|
|
233
|
+
Agent Comms: Discord (10 min)
|
|
234
|
+
└─ Can text agent from phone!
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
### Developer Path (~75 min)
|
|
238
|
+
|
|
239
|
+
For developers who want full automation:
|
|
240
|
+
|
|
241
|
+
```
|
|
242
|
+
Core Onboarding (15 min)
|
|
243
|
+
│
|
|
244
|
+
▼
|
|
245
|
+
Credential Manager: 1Password (10 min)
|
|
246
|
+
│
|
|
247
|
+
▼
|
|
248
|
+
User Data: GitHub (5 min) + Gmail (15 min)
|
|
249
|
+
│
|
|
250
|
+
▼
|
|
251
|
+
Enable LLM: Multiple API keys (5 min)
|
|
252
|
+
│
|
|
253
|
+
▼
|
|
254
|
+
Agent Comms: Discord (10 min)
|
|
255
|
+
│
|
|
256
|
+
▼
|
|
257
|
+
Automation: cron jobs (15 min)
|
|
258
|
+
```
|
|
259
|
+
|
|
260
|
+
---
|
|
261
|
+
|
|
262
|
+
## AI Power Formula
|
|
263
|
+
|
|
264
|
+
```
|
|
265
|
+
AI Power = Capability × Alignment × Duration × Throughput
|
|
266
|
+
```
|
|
267
|
+
|
|
268
|
+
| Factor | What It Measures | Key Unlocks |
|
|
269
|
+
|--------|------------------|-------------|
|
|
270
|
+
| **Capability** | What agent CAN do | Each connector adds capability |
|
|
271
|
+
| **Alignment** | How well agent knows YOU | User comms, identity |
|
|
272
|
+
| **Duration** | How LONG agent can work | Automation, scheduling |
|
|
273
|
+
| **Throughput** | PARALLEL agent work | Enable LLM + Agent Comms |
|
|
274
|
+
|
|
275
|
+
The deeper you go in the taxonomy, the more powerful ALL your capabilities become.
|
|
276
|
+
|
|
277
|
+
---
|
|
278
|
+
|
|
279
|
+
## Full Power Scenario
|
|
280
|
+
|
|
281
|
+
When everything is configured:
|
|
282
|
+
|
|
283
|
+
```
|
|
284
|
+
1. Email arrives about flight check-in (email-read)
|
|
285
|
+
2. Agent reads it automatically (Enable LLM)
|
|
286
|
+
3. Agent uses computer-use to check you in (gui-automation)
|
|
287
|
+
4. Agent texts you: "Checked in! Seat 14A" (agent-comms)
|
|
288
|
+
5. Agent sets reminder for departure (scheduling)
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
This requires: Email + LLM + GUI Automation + Agent Comms + Scheduling
|
|
292
|
+
|
|
293
|
+
---
|
|
294
|
+
|
|
295
|
+
## See Also
|
|
296
|
+
|
|
297
|
+
- **[Full Capability List](./06_CAPABILITIES_REFERENCE.md)** - Exhaustive provider mapping
|
|
298
|
+
- **[CLI Reference](./02_CLI_REFERENCE.md)** - `nexus capabilities` command
|