AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Rightbrain

skill-rightbrainai-rightbrain-agent-skill-rightbrain · by RightbrainAI

Builds and operates Rightbrain Tasks, TaskAgents, knowledge, tools, and automations. Use only when the user explicitly asks to work with Rightbrain, the Rightbrain API, rb-api, or a Rightbrain TaskAgent.

No reviews yet
0 installs
4 views
0.0% view→install

Install

$ agentstack add skill-rightbrainai-rightbrain-agent-skill-rightbrain

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-rightbrainai-rightbrain-agent-skill-rightbrain)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Rightbrain? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Rightbrain

Turn the user's goal into safe Rightbrain API operations. Live Rightbrain documentation owns endpoint contracts; this skill owns execution and safety.

Operating loop

  1. Resolve the directory containing this activated SKILL.md. Never infer it

from the process working directory.

  1. Run the wrapper's whoami command using its quoted absolute path.
  2. Confirm the production host, organization, project, target, and intended

effect before a write.

  1. Read the current operation contract from Rightbrain's live documentation.
  2. Execute through the wrapper, inspect the response, and report the result.
node "/absolute/path/to/rightbrain/scripts/rb-api.mjs" whoami

For several commands in one shell block:

RB_API="/absolute/path/to/rightbrain/scripts/rb-api.mjs"
node "$RB_API" whoami
node "$RB_API" METHOD /path [options]

Shell variables may not survive later tool calls. Use the literal absolute path again when needed. Never invoke rb-auth.mjs directly, inspect credential files, or print secrets.

Authentication and target

This public skill targets:

  • API: https://app.rightbrain.ai/api/v1
  • OAuth: https://oauth.rightbrain.ai

whoami must report the production API URL before any API operation. Stop if it reports another host.

Authentication precedence:

  1. RB_API_KEY with RB_ORG_ID and RB_PROJECT_ID
  2. RB_CLIENT_ID with RB_CLIENT_SECRET
  3. an authenticated Rightbrain CLI session

For a session, require Rightbrain CLI 0.3.0 or newer on PATH:

npm install --global rightbrain@latest
rightbrain login --non-interactive

The user must complete the browser flow. Retry whoami once, then stop and surface the error. Headless credentials must come from the caller's secret manager, never from chat.

If no organization or project is selected, use the live organization and project list operations, then ask the user to choose when the target is ambiguous.

Find the current contract

Stop as soon as the exact operation is clear:

  1. Use Rightbrain Docs MCP when available:

https://docs.rightbrain.ai/v-1/_mcp/server.

  1. Otherwise open the relevant page from

https://docs.rightbrain.ai/v-1/llms.txt.

  1. Use https://app.rightbrain.ai/api/v1/openapi.json only when exact method,

path, parameter, body, or response details remain unclear.

Do not reconstruct request fields from memory. If the live contract is unavailable, do not guess before a write.

Execute

node "/absolute/path/to/rightbrain/scripts/rb-api.mjs" METHOD /path [options]

Useful options:

  • --query k=v
  • --data '', --data @file, or --data -
  • --form k=v and --file field=@path
  • --sse for streams
  • --all for pagination
  • --accept mime --output path for files
  • --secret-output for a confirmed one-time secret
  • --project-scope for a project-relative suffix
  • --org-scope for an organization-relative suffix
  • --dry-run for a redacted routing preview
  • --compact for single-line JSON
  • --timeout to bound a slow request

Paths are exact by default. Use the canonical path from live docs and replace its path parameters with the selected IDs. Use --project-scope or --org-scope only when intentionally passing a relative suffix.

For example, call a documented /org/{org_id}/project/{project_id}/task path with its placeholders replaced, or call /task --project-scope.

Exit codes: 0 success, 2 unauthenticated, 3 rejected authentication, 4 usage/configuration/network error, and 5 API HTTP error. Fix the cause; do not blindly retry.

Safety

  • Reads may proceed.
  • For reversible writes, show the target and proposed change first.
  • Ask immediately before deletion, public exposure, sharing, credentials,

permissions, IAM, trigger enablement, production activation, external writes, or potentially expensive runs and evals.

  • Prefer private, draft, disabled, disposable, and bounded resources.
  • Treat Integrations, MCP tools, triggers, and webhooks as external side

effects unless proven otherwise.

  • Use --dry-run for sensitive routing previews, but never include secrets in

a dry-run body.

  • Structured output redacts known secret fields. Write a confirmed one-time

secret only with --secret-output and never read that file into the conversation.

  • Send the minimum required data. Prompts, files, and tool inputs may reach

configured model providers or third parties.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.