nexus-bootstrap
Enables your AI agent to discover and install skills from the Nexus Skills Marketplace. Install this skill first to unlock self-service skill management.
Best use case
nexus-bootstrap is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Enables your AI agent to discover and install skills from the Nexus Skills Marketplace. Install this skill first to unlock self-service skill management.
Teams using nexus-bootstrap should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/nexus-bootstrap/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How nexus-bootstrap Compares
| Feature / Agent | nexus-bootstrap | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Enables your AI agent to discover and install skills from the Nexus Skills Marketplace. Install this skill first to unlock self-service skill management.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Nexus Skills Manager
## Overview
You have access to the Nexus Skills Marketplace. Use these instructions to discover and install skills for the user.
## Configuration
- API Base URL: {{NEXUS_API_URL}}
- Authentication: Use the user's Nexus JWT token from the Authorization header
- Default IDE: {{USER_IDE}}
- Authentication Hint: {{AUTH_HINT}}
## Discovering Skills
Use the MCP tool `nexus__list_skills` with optional parameters:
- `tags`: array of tag strings to filter by
- `search`: text query to search names and descriptions
## Fetching a Skill
Use the MCP tool `nexus__get_skill` with parameter:
- `name`: the skill identifier (e.g., "kubernetes-troubleshooting")
## Installing a Skill
**IMPORTANT: You MUST follow these exact steps. Do NOT deviate from the file paths below.**
### Step 1: Detect the current IDE
Check which IDE directories exist:
- `~/.cursor/skills/` exists → **Cursor**
- `.claude/skills/` exists in project root → **Claude Code** (project-level)
- `~/.claude/skills/` exists → **Claude Code** (global)
- `.windsurf/rules/` exists → **Windsurf**
- `.codex/skills/` exists → **Codex CLI**
### Step 2: Fetch the skill content
Call `nexus__get_skill` with the skill name to get the SKILL.md content.
### Step 3: Create the directory and write the file
**CRITICAL: Each skill MUST be installed in its own subdirectory. The file MUST be named `SKILL.md`. Never use a flat file.**
The exact path pattern is: `{ide-skills-dir}/{skill-name}/SKILL.md`
| IDE | Exact install path |
|-----|-------------------|
| Cursor | `~/.cursor/skills/{skill-name}/SKILL.md` |
| Claude Code (project) | `.claude/skills/{skill-name}/SKILL.md` |
| Claude Code (global) | `~/.claude/skills/{skill-name}/SKILL.md` |
| Windsurf | `.windsurf/rules/{skill-name}/SKILL.md` |
| Codex CLI | `.codex/skills/{skill-name}/SKILL.md` |
For example, to install the "pdf" skill in Cursor:
1. Create directory: `~/.cursor/skills/pdf/`
2. Write file: `~/.cursor/skills/pdf/SKILL.md`
**Do NOT write to `~/.cursor/skills/pdf.md`. Always create a subdirectory first, then write `SKILL.md` inside it.**
### Step 4: Confirm installation
Tell the user the skill is installed, show the exact path where it was written, and describe what it enables.
## Example Conversations
**Discovery:**
```
User: "What skills do you have for Kubernetes?"
→ Call nexus__list_skills with tags=["kubernetes"]
→ "I found 'Kubernetes Troubleshooting' — it helps diagnose pod failures,
analyze logs, and fix common issues. Want me to install it?"
```
**Installation:**
```
User: "Yes, install it"
→ Call nexus__get_skill with name="kubernetes-troubleshooting"
→ Detect IDE → Cursor detected
→ Create directory ~/.cursor/skills/kubernetes-troubleshooting/
→ Write SKILL.md to ~/.cursor/skills/kubernetes-troubleshooting/SKILL.md
→ "Installed kubernetes-troubleshooting to
~/.cursor/skills/kubernetes-troubleshooting/SKILL.md
I can now help you diagnose Kubernetes issues."
```
**Listing installed:**
```
User: "What skills do I have?"
→ List subdirectories in ~/.cursor/skills/
→ "You have 3 skills installed: kubernetes-troubleshooting,
spring-boot-debugging, and hello-world."
```Related Skills
flow-nexus-neural
Train and deploy neural networks in distributed E2B sandboxes with Flow Nexus
bootstrap
Wake up, orient, and warm the context with foundational MOOLLM knowledge
flow-nexus-platform
Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges
agents-bootstrap
Generate a project-specific AGENTS.md from a user goal, then confirm before overwriting.
bgo
Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.
partner-revenue-desk
Operating model for tracking, attributing, and accelerating partner-sourced revenue.
parallel-data-enrichment
Structured company and entity data enrichment using Parallel AI Task API with core/base processors. Returns typed JSON output. No binary install — requires PARALLEL_API_KEY in .env.local.
parallel-agents
Multi-agent orchestration patterns. Use when multiple independent tasks can run with different domain expertise or when comprehensive analysis requires multiple perspectives.
paper-writing-assistant
Assist in drafting research papers and meeting notes, enforcing academic rigor and formatting.
pandas-data-manipulation-rules
Focuses on pandas-specific rules for data manipulation, including method chaining, data selection using loc/iloc, and groupby operations.
pagent
Guide for using pagent - a PRD-to-code orchestration tool. Use when users ask how to use pagent, run agents, create PRDs, or transform requirements into code.
page-annotator
AI驱动的网页标注工具,支持高亮元素和添加文字批注。智能防重复、自动滚动、碰撞检测。兼容 GitHub 等严格 CSP 网站。适用场景:(1) 标记网页元素进行讲解 (2) 添加文字批注和注释 (3) 代码审查和设计评审 (4) 教学演示和用户引导 (5) Bug 报告和问题标记