@intent-systems/nexus 2026.1.5-5 → 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/identity-state.js +45 -23
- package/dist/agents/skill-runner.js +12 -2
- package/dist/agents/skill-usage.js +4 -7
- package/dist/agents/skills-status.js +3 -2
- package/dist/agents/skills.js +20 -23
- package/dist/agents/workspace.js +32 -19
- package/dist/capabilities/detector.js +2 -2
- package/dist/cli/cloud-cli.js +58 -0
- package/dist/cli/credential-cli.js +77 -8
- package/dist/cli/program.js +24 -2
- package/dist/cli/skills-cli.js +30 -18
- package/dist/cli/skills-hub-cli.js +9 -7
- package/dist/commands/bootstrap-preset.js +16 -6
- package/dist/commands/config.js +85 -0
- package/dist/commands/cursor-hooks.js +240 -0
- package/dist/commands/cursor-rules.js +13 -207
- package/dist/commands/identity.js +3 -3
- package/dist/commands/init.js +293 -6
- package/dist/commands/onboard-eve-identity.js +1 -1
- package/dist/commands/skills-manifest.js +89 -29
- package/dist/commands/status.js +52 -50
- package/dist/daemon/launchd.js +14 -0
- package/dist/entry.js +0 -0
- 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/utils.js +6 -2
- 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,207 @@
|
|
|
1
|
+
# Capabilities Reference
|
|
2
|
+
|
|
3
|
+
> Exhaustive list of all capabilities and their providers.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Overview
|
|
8
|
+
|
|
9
|
+
This is the complete mapping of capabilities to providers. Use `nexus capabilities` to see what's active in your workspace.
|
|
10
|
+
|
|
11
|
+
Agent bootstrap/binding is handled by Cursor hooks (not a capability). See
|
|
12
|
+
`07_AGENT_BINDINGS.md`.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## Communication
|
|
17
|
+
|
|
18
|
+
| Capability | Providers | Setup |
|
|
19
|
+
|------------|-----------|-------|
|
|
20
|
+
| `email-read` | gog + google-oauth | OAuth |
|
|
21
|
+
| `email-send` | gog + google-oauth | OAuth |
|
|
22
|
+
| `messaging-read` | imsg (darwin), eve (darwin), wacli | FDA / QR |
|
|
23
|
+
| `messaging-send` | imsg (darwin), wacli | FDA / QR |
|
|
24
|
+
| `chat-read` | discord, slack | Bot token / OAuth |
|
|
25
|
+
| `chat-send` | discord, slack | Bot token / OAuth |
|
|
26
|
+
| `contacts` | gog + google-oauth | OAuth |
|
|
27
|
+
| `voice` | (TBD) | — |
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Social & News
|
|
32
|
+
|
|
33
|
+
| Capability | Providers | Setup |
|
|
34
|
+
|------------|-----------|-------|
|
|
35
|
+
| `social-x` | bird + twitter | Cookie auth |
|
|
36
|
+
| `social-instagram` | (needs provider) | — |
|
|
37
|
+
| `social-linkedin` | (needs provider) | — |
|
|
38
|
+
| `rss` | blogwatcher | None |
|
|
39
|
+
| `news` | brave-search | API key |
|
|
40
|
+
|
|
41
|
+
---
|
|
42
|
+
|
|
43
|
+
## Insights
|
|
44
|
+
|
|
45
|
+
| Capability | Providers | Setup |
|
|
46
|
+
|------------|-----------|-------|
|
|
47
|
+
| `personal-insights` | eve, comms | FDA |
|
|
48
|
+
| `relationship-insights` | eve, comms | FDA |
|
|
49
|
+
| `session-insights` | aix | None |
|
|
50
|
+
| `communication-insights` | comms | Multiple sources |
|
|
51
|
+
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## Productivity
|
|
55
|
+
|
|
56
|
+
| Capability | Providers | Setup |
|
|
57
|
+
|------------|-----------|-------|
|
|
58
|
+
| `tasks` | things-mac (darwin), apple-reminders (darwin), trello | App/API |
|
|
59
|
+
| `notes` | apple-notes (darwin), bear-notes (darwin), obsidian, notion | App/API |
|
|
60
|
+
| `calendar` | gog + google-oauth | OAuth |
|
|
61
|
+
| `reminders` | apple-reminders (darwin), gog | App/OAuth |
|
|
62
|
+
| `pdf-processing` | nano-pdf | API key |
|
|
63
|
+
| `collaboration` | nexus-cloud | Account |
|
|
64
|
+
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
## Data Access
|
|
68
|
+
|
|
69
|
+
| Capability | Providers | Setup |
|
|
70
|
+
|------------|-----------|-------|
|
|
71
|
+
| `cloud-storage` | gog + google-oauth | OAuth |
|
|
72
|
+
| `local-files` | filesystem guide | FDA |
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Automation
|
|
77
|
+
|
|
78
|
+
| Capability | Providers | Setup |
|
|
79
|
+
|------------|-----------|-------|
|
|
80
|
+
| `scheduling` | nexus cron | LLM API |
|
|
81
|
+
| `reactive-triggers` | (needs implementation) | LLM API |
|
|
82
|
+
| `gui-automation` | peekaboo (darwin) | FDA |
|
|
83
|
+
| `browser-automation` | computer-use + peekaboo | FDA |
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## AI & LLM
|
|
88
|
+
|
|
89
|
+
| Capability | Providers | Setup |
|
|
90
|
+
|------------|-----------|-------|
|
|
91
|
+
| `llm-anthropic` | anthropic connector | API key |
|
|
92
|
+
| `llm-openai` | openai connector | API key |
|
|
93
|
+
| `llm-gemini` | gemini connector | API key |
|
|
94
|
+
| `llm-local` | ollama | Install |
|
|
95
|
+
| `text-to-speech` | elevenlabs | API key |
|
|
96
|
+
| `speech-to-text` | openai-whisper, openai-whisper-api | Install/API |
|
|
97
|
+
| `image-generation` | openai (DALL-E), nano-banana-pro | API key |
|
|
98
|
+
| `summarization` | summarize + LLM | API key |
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
## Smart Home & IoT
|
|
103
|
+
|
|
104
|
+
| Capability | Providers | Setup |
|
|
105
|
+
|------------|-----------|-------|
|
|
106
|
+
| `smart-lights` | openhue + hue | Bridge auth |
|
|
107
|
+
| `smart-audio` | sonoscli, blucli | Network |
|
|
108
|
+
| `smart-sleep` | eightctl + eightsleep | Account auth |
|
|
109
|
+
| `bluetooth` | blucli (darwin) | None |
|
|
110
|
+
| `camera-control` | camsnap (darwin) | Camera config |
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
## Music
|
|
115
|
+
|
|
116
|
+
| Capability | Providers | Setup |
|
|
117
|
+
|------------|-----------|-------|
|
|
118
|
+
| `spotify` | spotify-player + spotify | OAuth |
|
|
119
|
+
| `apple-music` | (needs provider) | — |
|
|
120
|
+
| `youtube-music` | (needs provider) | — |
|
|
121
|
+
| `music-detection` | songsee (darwin) | None |
|
|
122
|
+
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
## Web
|
|
126
|
+
|
|
127
|
+
| Capability | Providers | Setup |
|
|
128
|
+
|------------|-----------|-------|
|
|
129
|
+
| `web-search` | brave-search | API key |
|
|
130
|
+
| `web-scraping` | firecrawl, apify | API key |
|
|
131
|
+
| `url-fetch` | summarize | LLM API |
|
|
132
|
+
| `weather` | weather guide | None |
|
|
133
|
+
| `place-search` | goplaces, local-places | API key |
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
## Media & Creative
|
|
138
|
+
|
|
139
|
+
| Capability | Providers | Setup |
|
|
140
|
+
|------------|-----------|-------|
|
|
141
|
+
| `video-processing` | video-frames (ffmpeg) | Install |
|
|
142
|
+
| `screenshot-annotation` | sag | None |
|
|
143
|
+
| `gif-search` | gifgrep | API key (full) |
|
|
144
|
+
| `transcription` | openai-whisper | Install/API |
|
|
145
|
+
| `document-rendering` | qmd | Install |
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## Development
|
|
150
|
+
|
|
151
|
+
| Capability | Providers | Setup |
|
|
152
|
+
|------------|-----------|-------|
|
|
153
|
+
| `version-control` | github | OAuth/token |
|
|
154
|
+
| `vercel` | (needs skill) | API token |
|
|
155
|
+
| `cloudflare` | cloudflare | API token |
|
|
156
|
+
| `aws` | (needs skill) | Credentials |
|
|
157
|
+
| `gcloud` | (needs skill) | Credentials |
|
|
158
|
+
| `coding-agents` | coding-agent guide | Codex + API |
|
|
159
|
+
| `mcp-tools` | mcporter | Install |
|
|
160
|
+
| `git-sync` | upstream-sync | None |
|
|
161
|
+
| `terminal-sessions` | tmux | Install |
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
## Cloud & Sync
|
|
166
|
+
|
|
167
|
+
| Capability | Providers | Setup |
|
|
168
|
+
|------------|-----------|-------|
|
|
169
|
+
| `cloud-sync` | nexus-cloud | Account |
|
|
170
|
+
| `rollback` | nexus-cloud, github | Account |
|
|
171
|
+
|
|
172
|
+
---
|
|
173
|
+
|
|
174
|
+
## Security
|
|
175
|
+
|
|
176
|
+
| Capability | Providers | Setup |
|
|
177
|
+
|------------|-----------|-------|
|
|
178
|
+
| `credential-management` | 1password, keychain | App/None |
|
|
179
|
+
| `oauth-management` | google-oauth, etc. | OAuth flow |
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## Commerce
|
|
184
|
+
|
|
185
|
+
| Capability | Providers | Setup |
|
|
186
|
+
|------------|-----------|-------|
|
|
187
|
+
| `food-ordering` | ordercli, food-order | Account auth |
|
|
188
|
+
|
|
189
|
+
---
|
|
190
|
+
|
|
191
|
+
## Platform Notes
|
|
192
|
+
|
|
193
|
+
- **(darwin)** = macOS only
|
|
194
|
+
- **FDA** = Full Disk Access required
|
|
195
|
+
- **LLM API** = Requires an LLM API key configured
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
## Adding Capabilities
|
|
200
|
+
|
|
201
|
+
Capabilities emerge from skills. To add a new capability:
|
|
202
|
+
|
|
203
|
+
1. Create a skill that provides it
|
|
204
|
+
2. Add `provides: [capability-name]` to the skill frontmatter
|
|
205
|
+
3. The capability appears in `nexus capabilities`
|
|
206
|
+
|
|
207
|
+
The predefined list above is the starting taxonomy. New capabilities can emerge as skills are added.
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# Agent Bindings
|
|
2
|
+
> How Nexus binds an agent into a workspace session.
|
|
3
|
+
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
## Goals
|
|
7
|
+
|
|
8
|
+
- Deterministic bootstrap (no "remember to run" steps)
|
|
9
|
+
- Consistent identity and memory injection at session start
|
|
10
|
+
- Clear separation between hooks, rules, AGENTS.md, and skills
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Binding Layers (Order of Enforcement)
|
|
15
|
+
|
|
16
|
+
| Layer | Mechanism | Purpose | Notes |
|
|
17
|
+
|------|-----------|---------|-------|
|
|
18
|
+
| 1 | Cursor hooks | Hard gate + context injection | Deterministic |
|
|
19
|
+
| 2 | `AGENTS.md` | Canonical protocol | Human readable, model-facing |
|
|
20
|
+
| 3 | `.cursor/rules` | Persistent guidance | Advisory, not executable |
|
|
21
|
+
| 4 | Skills | How-to docs | Not for bootstrap |
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## Cursor SessionStart Hook (Required)
|
|
26
|
+
|
|
27
|
+
The sessionStart hook is the authoritative bootstrap. It runs before the first response and injects identity context.
|
|
28
|
+
|
|
29
|
+
**Files:**
|
|
30
|
+
- `.cursor/hooks.json`
|
|
31
|
+
- `.cursor/hooks/nexus-session-start.js`
|
|
32
|
+
|
|
33
|
+
**Responsibilities:**
|
|
34
|
+
1. Run `nexus status --json` when available.
|
|
35
|
+
2. Resolve identity file paths from status output.
|
|
36
|
+
3. Fallback to default identity paths if the CLI is unavailable.
|
|
37
|
+
4. Inject identity + memory + recent logs as additional context.
|
|
38
|
+
5. If identity is missing, include the bootstrap prompt.
|
|
39
|
+
|
|
40
|
+
### Expected Context Payload
|
|
41
|
+
|
|
42
|
+
- Agent identity (`IDENTITY.md`)
|
|
43
|
+
- Agent values (`SOUL.md`)
|
|
44
|
+
- Agent memory (`MEMORY.md`)
|
|
45
|
+
- User identity (`IDENTITY.md`, `PROFILE.md` legacy)
|
|
46
|
+
- Recent daily logs (today + yesterday, if present)
|
|
47
|
+
- Bootstrap prompt (when identity is missing)
|
|
48
|
+
|
|
49
|
+
### Example `hooks.json`
|
|
50
|
+
|
|
51
|
+
```json
|
|
52
|
+
{
|
|
53
|
+
"version": 1,
|
|
54
|
+
"hooks": {
|
|
55
|
+
"sessionStart": [
|
|
56
|
+
{ "command": "node .cursor/hooks/nexus-session-start.js" }
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## AGENTS.md (Fallback Contract)
|
|
65
|
+
|
|
66
|
+
When hooks are missing or disabled, the agent must:
|
|
67
|
+
1. Run `nexus status`
|
|
68
|
+
2. Read identity + memory files
|
|
69
|
+
3. Read recent daily logs
|
|
70
|
+
|
|
71
|
+
---
|
|
72
|
+
|
|
73
|
+
## Rules vs Skills
|
|
74
|
+
|
|
75
|
+
- `.cursor/rules` = persistent guidance, not executable
|
|
76
|
+
- Skills = documentation for tools, not session bootstrap
|
|
77
|
+
- Hooks = the only deterministic enforcement layer
|
|
78
|
+
|
|
79
|
+
---
|
|
80
|
+
|
|
81
|
+
## Related Docs
|
|
82
|
+
|
|
83
|
+
- `01_NEXUS_OVERVIEW.md` - System overview
|
|
84
|
+
- `02_CLI_REFERENCE.md` - `nexus init` and `nexus status`
|
|
85
|
+
- `03_STATE_ARCHITECTURE.md` - File paths and layout
|
|
@@ -114,7 +114,7 @@ wrangler r2 bucket list | grep nexus-blobs
|
|
|
114
114
|
|
|
115
115
|
```bash
|
|
116
116
|
# Deploy the worker and Durable Object
|
|
117
|
-
cd ~/nexus/home/projects/nexus-cloud
|
|
117
|
+
cd ~/nexus/home/projects/nexus/nexus-cloud
|
|
118
118
|
wrangler deploy
|
|
119
119
|
|
|
120
120
|
# Note the deployed URL (e.g., nexus-cloud.your-account.workers.dev)
|
|
@@ -401,7 +401,7 @@ echo "Creating R2 bucket..."
|
|
|
401
401
|
wrangler r2 bucket create nexus-blobs
|
|
402
402
|
|
|
403
403
|
echo "Deploying worker..."
|
|
404
|
-
cd ~/nexus/home/projects/nexus-cloud
|
|
404
|
+
cd ~/nexus/home/projects/nexus/nexus-cloud
|
|
405
405
|
wrangler deploy
|
|
406
406
|
|
|
407
407
|
echo "✅ Cloudflare setup complete!"
|
|
@@ -8,7 +8,7 @@ Started: 2025-01-08
|
|
|
8
8
|
- Some skills have additional docs in `~/nexus/skills/<name>/docs/`
|
|
9
9
|
- Deep-dive output goes to `~/nexus/skills/onboarding/docs/skill-deep-dives/<name>.md`
|
|
10
10
|
- Use TEMPLATE.md as the format guide
|
|
11
|
-
- Gateway docs (cron, heartbeat) are at `~/nexus/home/projects/nexus/docs/`
|
|
11
|
+
- Gateway docs (cron, heartbeat) are at `~/nexus/home/projects/nexus/nexus-cli/docs/`
|
|
12
12
|
|
|
13
13
|
## Key Files
|
|
14
14
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: nexus-cloud
|
|
3
3
|
description: "Install and operate the Nexus Cloud CLI for encrypted workspace sync: build the Rust CLI, init/login, enable the background daemon, sync the personal workspace, mount shared workspaces, and explain how shared workspaces are created and shared."
|
|
4
|
+
metadata: {"nexus":{"type":"tool"}}
|
|
4
5
|
---
|
|
5
6
|
|
|
6
7
|
# Nexus Cloud CLI
|
|
@@ -15,7 +16,7 @@ Keep the security model straight: keys stay local, the server never sees plainte
|
|
|
15
16
|
|
|
16
17
|
## Install and setup (personal workspace)
|
|
17
18
|
|
|
18
|
-
1. Go to the repo: `~/nexus/home/projects/nexus-cloud`
|
|
19
|
+
1. Go to the repo: `~/nexus/home/projects/nexus/nexus-cloud`
|
|
19
20
|
2. Build the CLI: `./scripts/build-rust-cli.sh`
|
|
20
21
|
3. Point to the binary:
|
|
21
22
|
- `CLI=./rust/target/release/cli`
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
summary: "User profile record"
|
|
3
|
-
read_when:
|
|
4
|
-
- Bootstrapping a workspace manually
|
|
5
|
-
---
|
|
6
|
-
# PROFILE.md - About Your Human
|
|
7
|
-
|
|
8
|
-
*Fill this in during your first conversation. Keep it concise and factual.*
|
|
9
|
-
|
|
10
|
-
- **Name:**
|
|
11
|
-
- **Preferred address:**
|
|
12
|
-
- **Pronouns (optional):**
|
|
13
|
-
- **Timezone (optional):**
|
|
14
|
-
- **Notes:**
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/skills/{onboarding → guides/onboarding}/docs/skill-deep-dives/cron-and-heartbeat.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|