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
共 1 个版本