用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/duclm1x1/Dive-Ai --skill nimrobo命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
正在显示 SKILL.md
基于 SOC 职业分类
| name | Nimrobo |
| description | Use the Nimrobo CLI for voice screening and matching network operations. |
This skill enables you to use the Nimrobo CLI for voice screening and matching network operations.
Nimrobo CLI provides two command platforms:
nimrobo voice) - Voice-first AI platform for running interviews, screening, and diagnostic conversations via shareable voice-linksnimrobo net) - Matching network for organizations, job posts, applications, and messagingBoth platforms share the same authentication system.
Commands support multiple input methods (in priority order):
--name "Value"-f ./data.json for complex inputs--stdin to pipe JSON inputNet commands support a context system to avoid repeating IDs:
# Set context
nimrobo net orgs use org_abc123
nimrobo net posts use post_xyz789
# Use "current" to reference stored context
nimrobo net orgs get current
nimrobo net posts applications current
# View/clear context
nimrobo net context show
nimrobo net context clear
List commands support --limit and --skip for pagination:
nimrobo net posts list --limit 20 --skip 40 # Page 3
Add --json to any command for machine-readable output:
nimrobo net posts list --json
This skill includes the following documentation files for detailed reference:
| File | Description |
|---|---|
installation.md | Start Here: Installation, login, and onboarding steps |
commands.md | Quick reference table of all commands |
voice-commands.md | Detailed Voice platform commands with examples |
net-commands.md | Detailed Net platform commands with examples |
workflow.md | Common workflow patterns and examples |
# Create project and generate interview links
nimrobo voice projects create -f interview.json
nimrobo voice projects use proj_abc123
nimrobo voice links create -p default -l "Alice,Bob,Charlie" -e 1_week
# After interviews, get results
nimrobo voice sessions evaluation sess_xyz -t project -p default
nimrobo voice sessions transcript sess_xyz -t project -p default --json
# Create org and post
nimrobo net orgs create --name "Acme Corp" --use
nimrobo net posts create --title "Senior Engineer" --short-content "Join our team!" --expires "2024-06-01" --org current --use
# Review applications
nimrobo net posts applications current --status pending
nimrobo net applications accept app_123
# Search and apply
nimrobo net posts list --query "engineer" --filter '{"remote": "remote", "salary_min": 100000}'
nimrobo net posts apply post_xyz --note "I'm excited about this role..."
# Track applications
nimrobo net my applications --status pending
--json flag for parsing output programmaticallyuse commands to avoid repeating IDs-f) for complex create/update operationsmy summary for a quick overview of pending actionsbatch-action)| Code | Description |
|---|---|
| 0 | Success |
| 1 | Error |
See installation.md for setup instructions.
nimrobo --help # List all commands
nimrobo voice --help # Voice platform help
nimrobo net --help # Net platform help
nimrobo <command> --help # Help for specific command
nimrobo onboard