Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
wentorai avatar

Claude Code

  • 10 installs
  • 849 repo stars
  • Updated August 1, 2026
  • wentorai/research-claw

Helps with ai & agent building tasks during AI-assisted development.

About

claude-code is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • claude-code
  • AI & Agent Building
  • AI-coding skill

Claude Code by the numbers

  • 10 all-time installs (skills.sh)
  • Ranked #11,937 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/wentorai/research-claw --skill claude-code

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs10
repo stars849
Last updatedAugust 1, 2026
Repositorywentorai/research-claw

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Claude Code CLI (Anthropic)

Agentic coding tool by Anthropic. Reads, edits, and runs code with full project context. Supports non-interactive print mode for programmatic use.

Detect Installation

which claude  # should return a path
claude --version

Install

npm install -g @anthropic-ai/claude-code

Requires authentication: run claude auth login (Anthropic account or --console for API billing).

Non-Interactive Usage (print mode)

For programmatic invocation from Research-Claw, use -p (print mode):

# Basic non-interactive execution
claude -p "Refactor the auth module to use async/await"

# Pipe content for analysis
cat src/utils.ts | claude -p "Find bugs in this file"

# JSON output for parsing
claude -p --output-format json "List all TODO comments in the project"

# Skip permission prompts (for fully automated pipelines)
claude -p --dangerously-skip-permissions "Fix all lint errors"

# Budget and turn limits
claude -p --max-turns 5 --max-budget-usd 2.00 "Add unit tests for the auth module"

# Model selection
claude -p --model sonnet "Explain this codebase architecture"

Key Flags

FlagDescription
-p, --printNon-interactive mode: run task, print result, exit
--model <model>Set model (sonnet, opus, or full model ID)
--output-format <fmt>text / json / stream-json
--max-turns <n>Limit agentic turns (print mode)
--max-budget-usd <n>Spending cap in USD (print mode)
--dangerously-skip-permissionsSkip all permission prompts
--allowedTools <tools>Auto-approve specific tools, e.g. "Bash(git *)" "Read"
--tools <tools>Restrict available tools, e.g. "Bash,Read,Edit"
--add-dir <path>Grant access to additional directories
--append-system-prompt <text>Append to default system prompt
-c, --continueContinue most recent conversation
-r, --resume <id>Resume session by ID or name
--effort <level>low / medium / high / max

Research-Claw exec Patterns

# Delegate a complex coding task
exec("claude -p --dangerously-skip-permissions --max-turns 10 'Implement the feature described in TODO.md'")

# Read-only analysis with budget cap
exec("claude -p --tools 'Read' --max-budget-usd 1.00 'Review code quality and list issues'")

# JSON output for structured results
exec("claude -p --output-format json 'List all exported functions in src/'")

Docs

  • CLI reference: https://code.claude.com/docs/en/cli-reference
  • Common workflows: https://code.claude.com/docs/en/common-workflows

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.