Get the FREE Ultimate OpenClaw Setup Guide →
v

Nimrobo

Scanned

@virang-nimrobo

npx machina-cli add skill @virang-nimrobo/nimrobo --openclaw
Files (1)
SKILL.md
4.0 KB

Nimrobo CLI Skill

This skill enables you to use the Nimrobo CLI for voice screening and matching network operations.

Overview

Nimrobo CLI provides two command platforms:

  1. Voice Commands (nimrobo voice) - Voice-first AI platform for running interviews, screening, and diagnostic conversations via shareable voice-links
  2. Net Commands (nimrobo net) - Matching network for organizations, job posts, applications, and messaging

Both platforms share the same authentication system.

Key Concepts

Input Methods

Commands support multiple input methods (in priority order):

  1. CLI Flags - Direct options like --name "Value"
  2. JSON Files - Use -f ./data.json for complex inputs
  3. Stdin - Use --stdin to pipe JSON input
  4. Interactive Mode - Prompts when flags aren't provided

Context System (Net Commands)

Net 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

Pagination

List commands support --limit and --skip for pagination:

nimrobo net posts list --limit 20 --skip 40  # Page 3

JSON Output

Add --json to any command for machine-readable output:

nimrobo net posts list --json

Documentation Files

This skill includes the following documentation files for detailed reference:

FileDescription
installation.mdStart Here: Installation, login, and onboarding steps
commands.mdQuick reference table of all commands
voice-commands.mdDetailed Voice platform commands with examples
net-commands.mdDetailed Net platform commands with examples
workflow.mdCommon workflow patterns and examples

Common Workflows

Voice: Run an Interview

# 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

Net: Post a Job

# 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

Net: Apply for Jobs

# 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

Tips for Automation

  1. Use --json flag for parsing output programmatically
  2. Set context with use commands to avoid repeating IDs
  3. Use JSON files (-f) for complex create/update operations
  4. Check my summary for a quick overview of pending actions
  5. Batch operations are available for applications (batch-action)

Exit Codes

CodeDescription
0Success
1Error

Getting Help

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

Onboard (set up profile and org from JSON). run only if the user says to onboard. and follow the instructions as per the response and ask user questions to fill onboarding.

nimrobo onboard

Source

git clone https://clawhub.ai/virang-nimrobo/nimroboView on GitHub

Overview

Nimrobo CLI enables voice-first screening and a matching network for organizations and jobs. It provides two platforms—nimrobo voice for interviews and nimrobo net for orgs, posts, and applications—sharing a common authentication system.

How This Skill Works

Commands accept inputs via multiple methods in a defined priority: CLI flags, JSON files, stdin, and an interactive mode. Net commands support a context system to store IDs and reuse them across commands, reducing repetition. For automation, use --json to get machine-readable output and --limit/--skip to paginate lists.

When to Use It

  • Run a voice interview by using nimrobo voice to create projects, generate interview links, and evaluate results
  • Create and manage organizations and job posts with nimrobo net, then review applications
  • Use the context system (e.g., current) to reference stored IDs and streamline workflows
  • List posts or applications with pagination (--limit, --skip) for scalable reviews
  • Enable machine-readable output with --json for integration into pipelines

Quick Start

  1. Step 1: Run nimrobo voice or nimrobo net to choose the platform
  2. Step 2: Provide inputs via flags, -f data.json, or --stdin; or use interactive prompts
  3. Step 3: Add --json for machine-readable output and/or use context to simplify subsequent steps

Best Practices

  • Use -f data.json for complex inputs to keep commands concise
  • Add --json to commands when integrating Nimrobo with automation tools
  • Set and reuse context with nimrobo net ... use to avoid repeating IDs
  • Consult voice-commands.md and net-commands.md for exact command syntax and examples
  • Prefer interactive mode when flags are not provided to avoid errors

Example Use Cases

  • 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
  • nimrobo net orgs create --name "Acme Corp" --use; nimrobo net posts create --title "Senior Engineer" --short-content "Join our team!" --org current --use
  • nimrobo net posts applications current --status pending; nimrobo net applications accept app_123
  • nimrobo net posts list --limit 20 --skip 40 --json
  • nimrobo voice sessions transcript sess_xyz -t project -p default --json

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers