SEagenthub
Six AI agent personas, each with a defined role, a set of skill files, and strict handoff contracts.
What it can do
- TechLead: Run the 6-agent software pipeline on a local project directory.
- Resume Refactor Decision: Resume a paused pipeline with a Yes or No decision on a refactoring proposal. When execute_software_pipeline returns PIPELINE_PAUSED, call this tool with the thread_id from t
- Resume Deployment Decision: Resume a paused pipeline at the deployment approval gate. When execute_software_pipeline reaches the tech_lead_gate (after all quality checks pass), the pipeline pauses and
What data it sees
Do you need an account
No: the server works without sign-in
Six AI agent personas, each with a defined role, a set of skill files, and strict handoff contracts. All six are orchestrated via a deterministic LangGraph pipeline inside the SEagenthub MCP server — no LLM routing, no API key, no hook scripts.
| Agent | Role | Activated By |
|---|---|---|
@techLead |
Orchestrator — decomposes goals, delegates, audits results | @techLead, INIT_PROJECT, DELEGATE, AUDIT_RESULT, CHANGE_REQUEST |
@architect |
Infrastructure designer — CDK, IAM, observability, cost | DELEGATE [architect] |
@codeCrafter |
Implementation — business logic, UI, resilience patterns | DELEGATE [codeCrafter], Cleared for implementation |
@codeReviewer |
Quality gatekeeper — complexity, naming, CVEs, docs | Handing off to @codeReviewer (automatic) |
@qualityGuard |
Testing & security — unit / integration / load / pen testing | Handing off to @qualityGuard (automatic) |
@devOps |
Deployment — CI/CD, environment promotion, verification | automatic after AUDIT_RESULT |
The signal phrases defined in each skill file's OUTPUT CONTRACT are the transition conditions LangGraph evaluates at every node boundary. When used as prompt-driven agents in an IDE (Copilot, Claude Code), the same phrases drive the conversational handoff — the contract is identical in both layers.
How to connect
How to connect SEagenthub to Claude
The server address to paste into Claude settings:
https://seagenthub--oneofakindtech0.run.tools
- Open Claude (claude.ai or the desktop app).
- Go to Settings → Connectors.
- Click Add custom connector.
- Paste the server address copied below into Remote MCP server URL and click Add.
- In a chat, click + → Connectors and switch the new connector on.
Custom connectors are available on Free, Pro, Max, Team and Enterprise plans (Free is limited to one). On Team and Enterprise an organization Owner adds the connector first under Organization settings → Connectors.
Authorization
After you click Add, a sign-in window for the service opens. Sign in with your own account and approve access. Claude never sees your password.
How to connect SEagenthub to ChatGPT
The server address to paste into ChatGPT settings:
https://seagenthub--oneofakindtech0.run.tools
- Open ChatGPT in a browser (chatgpt.com). A Plus, Pro, Business, Enterprise or Edu plan is required.
- Turn on developer mode once: Settings → Apps → Advanced settings → Developer mode.
- Open Settings → Connectors and click Create.
- Fill in the form: Name (anything), Description (one line about what the service does), MCP server URL (copy it below).
- Under Authentication choose OAuth if the service requires sign-in, otherwise None. Click Create.
- In a new chat open + → Apps/Connectors and enable the connector.
OpenAI has renamed this section before (Connectors → Apps/Plugins). If the label differs, search settings for "developer mode". On Business/Enterprise workspaces an admin must allow custom connectors first.
Authorization
On first use ChatGPT opens the service's sign-in window. Sign in and approve access.
How to connect SEagenthub to Cursor
The server address to paste into Cursor settings:
https://seagenthub--oneofakindtech0.run.tools
Fastest: click Open in Cursor below and confirm the prompt.
Manually:
- In Cursor open Settings → Cursor Settings → MCP and click Add new global MCP server.
- Paste the JSON copied below into
~/.cursor/mcp.json(per project:.cursor/mcp.jsonin the repo root). - Save the file. The server appears in the MCP list; authorize it there if asked.
Authorization
If the service needs sign-in, an authorize button appears next to the server in the MCP list.
Server tool list (3)
Raw names from tools/list. Only developers need these.
| techLead | Run the 6-agent software pipeline on a local project directory. |
| resume_refactor_decision | Resume a paused pipeline with a Yes or No decision on a refactoring proposal. When execute_software_pipeline returns PIPELINE_PAUSED, call this tool with the thread_id from that message and your decision. |
| resume_deployment_decision | Resume a paused pipeline at the deployment approval gate. When execute_software_pipeline reaches the tech_lead_gate (after all quality checks pass), the pipeline pauses and asks for your explicit authorization before @devOps touches any infrastructure. |