Agent skill · AI & Agents

nexus

Nexus conversational PI agent architecture, development, and deployment. Use when working on the Nexus orchestrator, gateway, or tools.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill nexus --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/agent/nexus/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Nexus Agent Nexus is the conversational personal intelligence (PI) agent — a single agentic loop using the Strands Agent SDK, orchestrated by Temporal. ## Architecture ``` UI (WebSocket) → Nexus Gateway (FastAPI) → Temporal Signal → Orchestrator Workflow → run_agent_turn Activity → Strands Agent (think → act → observe loop) → Core Tools (read/write/edit/bash) → MCP Tools (memory, skills, fetch) → Custom Tools (web_search) → Response via Redis PubSub → Gateway → UI ``` ### Key Differences from Syndicates | Aspect | Syndicates | Nexus | |--------|-----------|-------| | Pattern | Multi-agent orchestration | Single agentic loop | | SDK | Custom framework agents | Strands Agent SDK | | Config | `kubani.framework.config` (YAML) | Environment variables | | Workflow | Multiple specialized workflows | Entity workflow pattern | | Interaction | Event-driven, autonomous | Conversational, user-initiated | ## Components | Component | Location | Purpose | |-----------|----------|---------| | Orchestrator | `kubani/nexus/orchestrator/` | Temporal worker, activities, workflow | | Gateway | `kubani/nexus/gateway/` | FastAPI, WebSocket, Discord bridge | | Tools | `kubani/nexus/orchestrator/tools/`

What's inside
Steps it walks through
  1. Architecture
  2. Key Differences from Syndicates
  3. Components
  4. Entity Workflow Pattern
  5. Key Files
  6. Local Development
  7. Configuration
  8. Building & Deploying
  9. Testing Changes
Ships with 1 file
  • metadata.json
Commands it runs
Setup
cd kubani/nexus/orchestrator
cp ../../nexus/.env.example .env  # Edit with credentials
Run worker locally
source .env && python -m kubani.nexus.orchestrator.worker
Run gateway (separate terminal)
cd kubani/nexus/gateway
source .env && python -m kubani.nexus.gateway.main
Build container
earthly +nexus-orchestrator
More from claude-skill-registry
All skills →
About this skill
What does the nexus skill do?

Nexus conversational PI agent architecture, development, and deployment. Use when working on the Nexus orchestrator, gateway, or tools.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill nexus --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going