Skip to main content
Back to registry

deep-agents-core

langchain-ai/langchain-skills

The agent harness provides these capabilities automatically - you configure, not implement.

Installs1
Install command
npx skills add https://github.com/langchain-ai/langchain-skills --skill deep-agents-core
Security audits
Gen Agent Trust HubPASS
SocketFAIL
SnykPASS
About this skill
The agent harness provides these capabilities automatically - you configure, not implement. @tool def get_weather(city: str) -> str: """Get the weather for a given city.""" return f"It is always sunny in {city}" agent = create_deep_agent( model="claude-sonnet-4-5-20250929", tools=[get_weather], system_prompt="You are a helpful assistant" ) config = {"configurable": {"thread_id": "user-123"}} result = agent.invoke({ "messages": [{"role": "user", "content": "What's the weather in Tokyo?"}] }, config=config) agent = create_deep_agent( name="my-assistant", model="claude-sonnet-4-5-20250929", tools=[custom_tool1, custom_tool2], system_prompt="Custom instructions", subagents=[research_agent, code_agent], backend=FilesystemBackend(root_dir=".", virtual_mode=True), interrupt_on={"write_file": True}, skills=["./skills/"], checkpointer=MemorySaver(), store=InMemoryStore() ) agent = create_deep_agent( backend=FilesystemBackend(root_dir=".", virtual_mode=True), skills=["./skills/"], checkpointer=MemorySaver() ) result = agent.invoke({ "messages": [{"role": "user", "content": "Use the python-testing skill"}] }, config={"configurable": {"thread_id": "session-1"}}) store = InMemoryStore() ...""" store.put( namespace=("filesystem",), key="/skills/python-testing/SKILL.md", value=create_file_data(skill_content) ) agent = create_deep_agent( backend=lambda rt: StoreBackend(rt), store=store,...

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-core do?

The agent harness provides these capabilities automatically - you configure, not implement.

Is deep-agents-core good?

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

What agent does deep-agents-core work with?

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

What are alternatives to deep-agents-core?

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

How do I install deep-agents-core?

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

Related skills

More from langchain-ai/langchain-skills

Related skills

Alternatives in Software Engineering