Skip to main content
Back to registry

deep-agents-orchestration

langchain-ai/langchain-skills

All three are automatically included in create_deep_agent() .

Installs1
Install command
npx skills add https://github.com/langchain-ai/langchain-skills --skill deep-agents-orchestration
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
All three are automatically included in create_deep_agent() . Default subagent : "general-purpose" - automatically available with same tools/config as main agent. @tool def search_papers(query: str) -> str: """Search academic papers.""" return f"Found 10 papers about {query}" agent = create_deep_agent( subagents=[ { "name": "researcher", "description": "Conduct web research and compile findings", "system_prompt": "Search thoroughly, return concise summary", "tools": [search_papers], } ] ) agent = create_deep_agent( subagents=[ { "name": "code-deployer", "description": "Deploy code to production", "system_prompt": "You deploy code after tests pass.", "tools": [run_tests, deploy_to_prod], "interrupt_on": {"deploy_to_prod": True}, # Require approval } ], checkpointer=MemorySaver() # Required for interrupts ) // CORRECT: Complete instructions upfront // task research: Find data on AI, save to /research/, return summary Each todo item has: agent = create_deep_agent() # TodoListMiddleware included by default result = agent.invoke({ "messages": [{"role": "user", "content": "Create a REST API: design models, implement CRUD, add auth, write tests"}] }, config={"configurable": {"thread_id": "session-1"}}) todos = result.get("todos", []) for todo in todos: print(f"[{todo['status']}] {todo['content']}") agent = create_deep_agent( interrupt_on={ "write_file": True, # All decisions allowed...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does deep-agents-orchestration do?

All three are automatically included in create_deep_agent() .

Is deep-agents-orchestration good?

deep-agents-orchestration does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does deep-agents-orchestration work with?

deep-agents-orchestration currently lists compatibility with codex, gemini-cli, opencode, cursor, github-copilot, claude-code.

What are alternatives to deep-agents-orchestration?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install deep-agents-orchestration?

npx skills add https://github.com/langchain-ai/langchain-skills --skill deep-agents-orchestration

Related skills

More from langchain-ai/langchain-skills

Related skills

Alternatives in Software Engineering