auto_agent/docs/skills/agently-langchain-langgraph-translation/SKILL.md
Translate LangChain/LangGraph patterns into Agently code (model control + TriggerFlow).
npx skillsauth add agentera/agently-nexustodo agently-langchain-langgraph-translationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill to translate LangChain/LangGraph code into Agently patterns for production services.
agent.set_agent_prompt / agent.set_request_prompt with mappingsagent.input(...).output(...).start()get_data() / ensure_keys@agent.tool_func + agent.use_tool(...)when()/to()/if_condition()/match()get_generator / get_async_generator or runtime_stream@agent.tool_func and call via use_tool or ReAct loop.references/overview.mdexamples/langchain_to_agently_map.pyexamples/langgraph_to_agently_triggerflow.pySee examples/run.sh for runnable commands.
data-ai
Event-driven TriggerFlow orchestration patterns and branching.
tools
Streaming outputs, runtime streams, and ReAct-style tool loops.
data-ai
Structured output patterns with ensure_keys, ordering, and instant streaming.
development
FastAPI service wrappers for Agently Agent + TriggerFlow (POST, SSE, WebSocket).