Skip to main content
Back to the directory
langchain-ai/langchain-skillsSoftware EngineeringFrontend and Design

deep-agents-core

Foundation framework for building multi-step agents with built-in planning, memory, and skill delegation.

SkillJury keeps community verdicts, source metadata, and external repository signals in separate lanes so ranking data never pretends to be a review.

SkillJury verdict
Pending

No approved reviews yet

Would recommend
Pending

Waiting on enough review volume

Install signal
5

Weekly or total install activity from catalog data

Sign in to review
0 review requests
Install command
npx skills add https://github.com/langchain-ai/langchain-skills --skill deep-agents-core
SkillJury does not have enough approved reviews to publish a community verdict yet. Source metadata and repository proof are still available above.
SkillJury Signal Summary

As of Apr 30, 2026, deep-agents-core has 5 weekly installs, 0 community reviews on SkillJury. Community votes currently stand at 0 upvotes and 0 downvotes. Source: langchain-ai/langchain-skills. Canonical URL: https://skills.sh/langchain-ai/langchain-skills/deep-agents-core.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Foundation framework for building multi-step agents with built-in planning, memory, and skill delegation. 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",...

Source description provided by the upstream listing. Community review signal and install context stay separate from this narrative layer.

Community reviews

Latest reviews

No community reviews yet. Be the first to review.

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

Foundation framework for building multi-step agents with built-in planning, memory, and skill delegation.

Is deep-agents-core good?

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

Which AI agents support deep-agents-core?

deep-agents-core currently lists compatibility with Skills CLI.

Is deep-agents-core safe to install?

deep-agents-core has been scanned by security audit providers tracked on SkillJury. Check the security audits section on this page for detailed results from Socket.dev and Snyk.

What are alternatives to deep-agents-core?

Skills in the same category include grimoire-morpho-blue, conversation-memory, second-brain-ingest, zai-tts.

How do I install deep-agents-core?

Run the following command to 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