ワンクリックで
readme
Imported skill readme from langchain
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Imported skill readme from langchain
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Imported skill init_skill from anthropic
Imported skill node_mcp_server from anthropic
Imported skill readme from anthropic
Imported skill skill from anthropic
Imported skill commands from langchain
Imported skill init_skill from langchain
| description | Imported skill readme from langchain |
| name | readme |
| signature | c42d24449a80bd5531b14a919878ed75e4d4a54cdb4a31babf683ba95686a6f6 |
| source | /a0/tmp/skills_research/langchain/examples/content-builder-agent/README.md |
A content writing agent for writing blog posts, LinkedIn posts, and tweets with cover images included.
This example demonstrates how to define an agent through three filesystem primitives:
AGENTS.md) – persistent context like brand voice and style guidelinesskills/*/SKILL.md) – workflows for specific tasks, loaded on demandsubagents.yaml) – specialized agents for delegated tasks like researchThe content_writer.py script shows how to combine these into a working agent.
# Set API keys
export ANTHROPIC_API_KEY="..."
export GOOGLE_API_KEY="..." # For image generation
export TAVILY_API_KEY="..." # For web search (optional)
# Run (uv automatically installs dependencies on first run)
cd examples/content-builder-agent
uv run python content_writer.py "Write a blog post about prompt engineering"
More examples:
uv run python content_writer.py "Create a LinkedIn post about AI agents"
uv run python content_writer.py "Write a Twitter thread about the future of coding"
The agent is configured by files on disk, not code:
content-builder-agent/
├── AGENTS.md # Brand voice & style guide
├── subagents.yaml # Subagent definitions
├── skills/
│ ├── blog-post/
│ │ └── SKILL.md # Blog writing workflow
│ └── social-media/
│ └── SKILL.md # Social media workflow
└── content_writer.py # Wires it together (includes tools)
| File | Purpose | When Loaded |
|---|---|---|
AGENTS.md | Brand voice, tone, writing standards | Always (system prompt) |
subagents.yaml | Research and other delegated tasks | Always (defines task tool) |
skills/*/SKILL.md | Content-specific workflows | On demand |
What's in the skills? Each skill teaches the agent a specific workflow:
agent = create_deep_agent(
memory=["./AGENTS.md"], # ← Middleware loads into system prompt
skills=["./skills/"], # ← Middleware loads on demand
tools=[generate_cover, generate_social_image], # ← Image generation tools
subagents=load_subagents("./subagents.yaml"), # ← See note below
backend=FilesystemBackend(root_dir="./"),
)
The memory and skills parameters are handled natively by deepagents middleware. Tools are defined in the script and passed directly.
Note on subagents: Unlike memory and skills, subagents must be defined in code. We use a small load_subagents() helper to externalize config to YAML. You can also define them inline:
subagents=[
{
"name": "researcher",
"description": "Research topics before writing...",
"model": "anthropic:claude-haiku-4-5-20251001",
"system_prompt": "You are a research assistant...",
"tools": [web_search],
}
],
Flow:
researcher subagent → saves to research/blogs/ or linkedin/blogs/
└── prompt-engineering/
├── post.md # Blog content
└── hero.png # Generated cover image
linkedin/
└── ai-agents/
├── post.md # Post content
└── image.png # Generated image
research/
└── prompt-engineering.md # Research notes
Change the voice: Edit AGENTS.md to modify brand tone and style.
Add a content type: Create skills/<name>/SKILL.md with YAML frontmatter:
---
name: newsletter
description: Use this skill when writing email newsletters
---
# Newsletter Skill
...
Add a subagent: Add to subagents.yaml:
editor:
description: Review and improve drafted content
model: anthropic:claude-haiku-4-5-20251001
system_prompt: |
You are an editor. Review the content and suggest improvements...
tools: []
Add a tool: Define it in content_writer.py with the @tool decorator and add to tools=[].
This agent has filesystem access and can read, write, and delete files on your machine. Review generated content before publishing and avoid running in directories with sensitive data.
ANTHROPIC_API_KEY - For the main agentGOOGLE_API_KEY - For image generation (uses Gemini's Imagen / "nano banana" via gemini-2.5-flash-image)TAVILY_API_KEY - For web search (optional, research still works without it)