You are an expert LangChain agent developer specializing in production-grade AI systems using LangChain 0.1+ and LangGraph.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionllm-application-dev-langchain-agentExecute the skills CLI command in your project's root directory to begin installation:
Fetches llm-application-dev-langchain-agent from sickn33/antigravity-awesome-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate llm-application-dev-langchain-agent. Access via /llm-application-dev-langchain-agent in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
31.1K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
31.1K
stars
You are an expert LangChain agent developer specializing in production-grade AI systems using LangChain 0.1+ and LangGraph.
resources/implementation-playbook.md.Build sophisticated AI agent system for: $ARGUMENTS
from langgraph.graph import StateGraph, MessagesState, START, END
from langgraph.prebuilt import create_react_agent
from langchain_anthropic import ChatAnthropic
class AgentState(TypedDict):
messages: Annotated[list, "conversation history"]
context: Annotated[dict, "retrieved context"]
claude-sonnet-4-5)voyage-3-large) - officially recommended by Anthropic for Claudevoyage-code-3 (code), voyage-finance-2 (finance), voyage-law-2 (legal)ReAct Agents: Multi-step reasoning with tool usage
create_react_agent(llm, tools, state_modifier)Plan-and-Execute: Complex tasks requiring upfront planning
Multi-Agent Orchestration: Specialized agents with supervisor routing
Command[Literal["agent1", "agent2", END]] for routingConversationTokenBufferMemory (token-based windowing)ConversationSummaryMemory (compress long histories)ConversationEntityMemory (track people, places, facts)VectorStoreRetrieverMemory with semantic searchfrom langchain_voyageai import VoyageAIEmbeddings
from langchain_pinecone import PineconeVectorStore
# Setup embeddings (voyage-3-large recommended for Claude)
embeddings = VoyageAIEmbeddings(model="voyage-3-large")
# Vector store with hybrid search
vectorstore = PineconeVectorStore(
index=index,
embedding=embeddings
)
# Retriever with reranking
base_retriever = vectorstore.as_retriever(
search_type="hybrid",
search_kwargs={"k": 20, "alpha": 0.5}
)
from langchain_core.tools import StructuredTool
from pydantic import BaseModel, Field
class ToolInput(BaseModel):
query: str = Field(description="Query to process")
async def tool_function(query: str) -> str:
# Implement with error handling
try:
result = await external_call(query)
return result
except Exception as e:
return f"Error: {str(e)}"
tool = StructuredTool.from_function(
func=tool_function,
name="tool_name",
description="What this tool does",
args_schema=ToolInput,
coroutine=tool_function
)
from fastapi import FastAPI
from fastapi.responses import StreamingResponse
@app.post("/agent/invoke")
async def invoke_agent(request: AgentRequest):
if request.stream:
return StreamingResponse(
stream_response(request),
media_type="text/event-stream"
)
return await agent.ainvoke({"messages": [...]})
structlog for consistent logsfrom langsmith.evaluation import evaluate
# Run evaluation suite
eval_config = RunEvalConfig(
evaluators=["qa", "context_qa", "cot_qa"],
eval_llm=ChatAnthropic(model="claude-sonnet-4-5")
)
results = await evaluate(
agent_function,
data=dataset_name,
evaluators=eval_config
)
builder = StateGraph(MessagesState)
builder.add_node("node1", node1_func)
builder.add_node("node2", node2_func)
builder.add_edge(START, "node1")
builder.add_conditional_edges("node1", router, {"a": "node2", "b": END})
builder.add_edge("node2", END)
agent = builder.compile(checkpointer=checkpointer)
async def process_request(message: str, session_id: str):
result = await agent.ainvoke(
{"messages": [HumanMessage(content=message)]},
config={"configurable": {"thread_id": session_id}}
)
return result["messages"][-1].content
from tenacity import retry, stop_after_attempt, wait_exponential
@retry(stop=stop_after_attempt(3), wait=wait_exponential(multiplier=1, min=4, max=10))
async def call_with_retry():
try:
return await llm.ainvoke(prompt)
except Exception as e:
logger.error(f"LLM error: {e}")
raise
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
โ Do
โ Don't
๐ก Pro Tips
โ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
โ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
sickn33/antigravity-awesome-skills
sickn33/antigravity-awesome-skills
sickn33/antigravity-awesome-skills
sickn33/antigravity-awesome-skills
sickn33/antigravity-awesome-skills
sickn33/antigravity-awesome-skills
I recommend llm-application-dev-langchain-agent for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
We added llm-application-dev-langchain-agent from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in llm-application-dev-langchain-agent โ fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added llm-application-dev-langchain-agent from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
I recommend llm-application-dev-langchain-agent for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
llm-application-dev-langchain-agent fits our agent workflows well โ practical, well scoped, and easy to wire into existing repos.
Registry listing for llm-application-dev-langchain-agent matched our evaluation โ installs cleanly and behaves as described in the markdown.
Useful defaults in llm-application-dev-langchain-agent โ fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
llm-application-dev-langchain-agent reduced setup friction for our internal harness; good balance of opinion and flexibility.
llm-application-dev-langchain-agent reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 70