.claude/skills/omega-claude-cli/SKILL.md
Shell out to Claude Code CLI to invoke a second Claude session headlessly. Useful for cross-validation, second opinions, and isolated analysis without sharing current agent context. Requires Anthropic account.
npx skillsauth add oimiragieo/agent-studio omega-claude-cliInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Headless wrapper for Claude Code CLI. Invokes a separate Claude session via
claude -p "PROMPT" --dangerously-skip-permissions. Provides isolated second
opinions without sharing the current agent's context window.
node .claude/skills/omega-claude-cli/scripts/ask-claude.mjs "What are the security implications of this auth design?"
node .claude/skills/omega-claude-cli/scripts/ask-claude.mjs "Review this code" --model sonnet
node .claude/skills/omega-claude-cli/scripts/ask-claude.mjs "Analyze dependencies" --json
node .claude/skills/omega-claude-cli/scripts/ask-claude.mjs "Deep security review of auth.ts" --timeout-ms 300000
node .claude/skills/omega-claude-cli/scripts/verify-setup.mjs
# Exit 0 = available (CLI found)
# Exit 1 = not available
| Script | Purpose |
| ------------------- | ---------------------------------------------------------- |
| ask-claude.mjs | Core headless wrapper — prompt as positional arg to -p |
| parse-args.mjs | Argument parser (--model, --json, --sandbox, --timeout-ms) |
| verify-setup.mjs | Availability check with npx fallback |
| format-output.mjs | Output normalization with extractJsonResponse() |
| Flag | Description |
| ---------------- | ---------------------------------------------------------------- |
| --model MODEL | opus (Opus 4.6), sonnet (4.5), haiku (4.5), or full model ID |
| --json | JSON output (strips conversational text via extractJsonResponse) |
| --sandbox | Code execution sandbox mode |
| --timeout-ms N | Timeout in milliseconds (exit code 124 on expiry) |
| Code | Meaning | | ---- | ------------------------------- | | 0 | Success | | 1 | Error (CLI failure, auth issue) | | 124 | Timeout (--timeout-ms exceeded) |
Before work: Read .claude/context/memory/learnings.md
After work: Append findings to learnings or issues as needed.
Note: Use pnpm search:code to discover references to this skill codebase-wide.
tools
Comprehensive biosignal processing toolkit for analyzing physiological data including ECG, EEG, EDA, RSP, PPG, EMG, and EOG signals. Use this skill when processing cardiovascular signals, brain activity, electrodermal responses, respiratory patterns, muscle activity, or eye movements. Applicable for heart rate variability analysis, event-related potentials, complexity measures, autonomic nervous system assessment, psychophysiology research, and multi-modal physiological signal integration.
tools
Comprehensive toolkit for creating, analyzing, and visualizing complex networks and graphs in Python. Use when working with network/graph data structures, analyzing relationships between entities, computing graph algorithms (shortest paths, centrality, clustering), detecting communities, generating synthetic networks, or visualizing network topologies. Applicable to social networks, biological networks, transportation systems, citation networks, and any domain involving pairwise relationships.
data-ai
Molecular featurization for ML (100+ featurizers). ECFP, MACCS, descriptors, pretrained models (ChemBERTa), convert SMILES to features, for QSAR and molecular ML.
development
Run Python code in the cloud with serverless containers, GPUs, and autoscaling. Use when deploying ML models, running batch processing jobs, scheduling compute-intensive tasks, or serving APIs that require GPU acceleration or dynamic scaling.