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

deep-agents-memory

Pluggable memory and file backends for Deep Agents with ephemeral, persistent, and hybrid routing options.

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
6

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-memory
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-memory has 6 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-memory.

Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Pluggable memory and file backends for Deep Agents with ephemeral, persistent, and hybrid routing options. Short-term (StateBackend) : Persists within a single thread, lost when thread ends Long-term (StoreBackend) : Persists across threads and sessions Hybrid (CompositeBackend) : Route different paths to different backends FilesystemMiddleware provides tools: ls , read_file , write_file , edit_file , glob , grep agent = create_deep_agent() # Default: StateBackend result = agent.invoke({ "messages": [{"role": "user", "content": "Write notes to /draft.txt"}] }, config={"configurable": {"thread_id": "thread-1"}}) store = InMemoryStore() composite_backend = lambda rt: CompositeBackend( default=StateBackend(rt), routes={"/memories/": StoreBackend(rt)} ) agent = create_deep_agent(backend=composite_backend, store=store) config2 = {"configurable": {"thread_id": "thread-2"}} agent.invoke({"messages": [{"role": "user", "content": "Read /memories/style.txt"}]}, config=config2) agent = create_deep_agent( backend=FilesystemBackend(root_dir=".", virtual_mode=True), # Restrict access interrupt_on={"write_file": True, "edit_file": True}, checkpointer=MemorySaver() ) Security: Never use FilesystemBackend in web servers - use StateBackend or sandbox instead. @tool def get_user_preference(key: str, runtime: ToolRuntime) -> str: """Get a user preference from long-term storage.""" store =...

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

Pluggable memory and file backends for Deep Agents with ephemeral, persistent, and hybrid routing options.

Is deep-agents-memory good?

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

Which AI agents support deep-agents-memory?

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

Is deep-agents-memory safe to install?

deep-agents-memory 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-memory?

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

How do I install deep-agents-memory?

Run the following command to install deep-agents-memory: npx skills add https://github.com/langchain-ai/langchain-skills --skill deep-agents-memory

Related skills

More from langchain-ai/langchain-skills

Related skills

Alternatives in Software Engineering