antigravity-native-e2e…
Spin up a live local Omnigent server + runner and exercise the native Antigravity (agy) TUI harness (antigravity-native) end-to-end — launch the real `agy` CLI…
Detect Python agent frameworks from code imports and map them to Omnigent executor types. Load when the user has existing agent code to integrate.
$ npx -y skills add omnigent-ai/omnigent --skill detect-framework --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/detect-frameworkContext preview
The summary Claude sees to decide when to auto-load this skill.
Detect Python agent frameworks from code imports and map them to Omnigent executor types. Load when the user has existing agent code to integrate.
name: detect-framework description: Detect Python agent frameworks from code imports and map them to Omnigent executor types. Load when the user has existing agent code to integrate.
When the user has existing Python code they want to integrate into Omnigent, detect the framework from import statements and recommend the appropriate executor type.
1. Ask the user for the path to their agent code (or look for Python files in the current directory if filesystem access is enabled).
2. Scan Python files for import patterns. Check in this priority order:
| Import pattern | Framework | Executor type | |---------------|-----------|---------------| | `import anthropic` or `from anthropic` + agent patterns (e.g. `Agent`, `tool`, system prompt setup) | Claude SDK | `claude_sdk` | | `import openai` or `from openai` + agents patterns (e.g. `Agent`, `Runner`, `function_tool`) | OpenAI Agents SDK | `agents_sdk` | | `from langgraph` or `import langgraph` | LangGraph | Not natively supported yet | | `from deepagents` or `import deepagents` | DeepAgents | Not natively supported yet | | `from langchain` or `import langchain` | LangChain | Not natively supported yet | | `from crewai` or `import crewai` | CrewAI | Not natively supported yet | | `from autogen` or `import autogen` | AutoGen | Not natively supported yet | | None of the above | Unknown | Not natively supported yet |
3. Report what you found and recommend the executor type.
Generate a standard agent directory:
executor: type: llm # or omit entirely (llm is the default)
The user's Claude SDK code runs directly. Generate config that points to their entry module:
executor: type: claude_sdk
The user's OpenAI Agents SDK code runs directly:
executor: type: agents_sdk
If the user's framework is not natively supported, let them know:
support for their framework.
Omnigent is an open-source AI agent framework and meta-harness: orchestrate Claude Code, Codex, Cursor, Pi, and custom agents — swap harnesses without rewriting, enforce policies and sandboxing, and collaborate in real time from any device.
Repo: omnigent-ai/omnigent
Spin up a live local Omnigent server + runner and exercise the native Antigravity (agy) TUI harness (antigravity-native) end-to-end — launch the real `agy` CLI…
Spin up a live local Omnigent server and exercise the Antigravity (Gemini) SDK harness end-to-end — build antigravity agents, run real turns, smoke-test, and…
Verify the Omnigent CLI's setup/onboarding flow, terminal UI/UX, and critical user journeys in a completely isolated, reproducible loop. Drives the real…
Spin up a live local Omnigent server and exercise the GitHub Copilot SDK harness end-to-end — build copilot agents, run real turns, smoke-test, and bug-bash.…
Spin up a live local Omnigent server and exercise the Cursor SDK harness end-to-end — build cursor agents, run real turns, smoke-test, and bug-bash. Load when…
Reference guide for building new Omnigent harness integrations — covers SDK/subprocess harnesses and native harnesses as separate tracks, each with their own…