用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/majiayu000/claude-skill-registry --skill faion-ai-agents命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
LLM token logprobs and calibration. Per-decision confidence, ECE, Brier, reliability diagrams, low-confidence triage.
Analyze LLM token logprobs and calibration. Use for per-decision confidence, ECE, Brier scores, reliability diagrams, and low-confidence triage.
回顾最近 N 天的 Claude Code 使用记录——扫描原始会话数据,按主题分组汇总"我都做了什么",并从个人操作系统视角输出模式、风险与增删建议。当用户说 /recap、"看看我这几天做了什么"、"回顾一下我最近的会话"、"这两天我用 claude 干了啥"、"活动回顾" 时使用。
基于 SOC 职业分类
正在显示 SKILL.md
| name | faion-ai-agents |
| description | AI agents: autonomous agents, multi-agent systems, LangChain, LlamaIndex, MCP. |
| user-invocable | false |
| allowed-tools | Read, Write, Edit, Glob, Grep, Bash, Task, AskUserQuestion, TodoWrite |
Entry point:
/faion-net— invoke this skill for automatic routing to the appropriate domain.
Communication: User's language. Code: English.
Specializes in AI agent development and orchestration. Covers autonomous agents, multi-agent systems, frameworks, and MCP.
Check these project signals before asking questions:
| Signal | Where to Check | What to Look For |
|---|---|---|
| Dependencies | package.json, requirements.txt | langchain, llamaindex, anthropic (MCP) |
| Agent code | Grep for "agent", "tool", "ReAct" | Existing agent implementations |
| MCP config | mcp.json, claude_desktop_config.json | MCP servers configuration |
| Tools/functions | Grep for "function", "tool_def" | Available agent tools |
question: "What type of agent are you building?"
header: "Agent Architecture"
multiSelect: false
options:
- label: "Single autonomous agent"
description: "One agent with tools (ReAct, plan-and-execute)"
- label: "Multi-agent system"
description: "Multiple agents collaborating/delegating"
- label: "Agentic RAG"
description: "Agent-driven document retrieval"
- label: "MCP integration (Claude tools)"
description: "Model Context Protocol for Claude Code"
question: "Which agent framework?"
header: "Framework"
multiSelect: false
options:
- label: "LangChain"
description: "Most mature, extensive tooling"
- label: "LlamaIndex"
description: "Best for data/document agents"
- label: "Custom implementation"
description: "Direct API calls to LLM"
- label: "Claude MCP (native)"
description: "Claude-native tool protocol"
question: "What tools/capabilities does the agent need?"
header: "Agent Capabilities"
multiSelect: true
options:
- label: "Web search"
description: "Search internet for information"
- label: "Code execution"
description: "Run Python/JS code safely"
- label: "Database queries"
description: "Query SQL/NoSQL databases"
- label: "API calls"
description: "Call external REST/GraphQL APIs"
- label: "File operations"
description: "Read/write files, search codebase"
| Area | Coverage |
|---|---|
| Agent Patterns | ReAct, plan-and-execute, reasoning-first |
| Autonomous Agents | Agent loops, memory, tool use |
| Multi-Agent | Coordination, communication, delegation |
| Frameworks | LangChain, LlamaIndex agent implementations |
| MCP | Model Context Protocol, Claude tools |
| Governance | EU AI Act compliance, safety |
| Task | Files |
|---|---|
| Basic agent | ai-agent-patterns.md → agent-patterns.md |
| Autonomous agent | autonomous-agents.md → agent-architectures.md |
| Multi-agent | multi-agent-basics.md → multi-agent-patterns.md |
| LangChain agents | langchain-agents-architectures.md |
| MCP integration | mcp-model-context-protocol.md → mcp-ecosystem-2026.md |
Agent Fundamentals (4):
Multi-Agent (4):
LangChain (7):
LlamaIndex (3):
MCP & Tooling (4):
Governance (2):
Advanced (2):
Input → Thought → Action → Observation → Thought → ... → Answer
Input → Plan → Execute Step 1 → Execute Step 2 → ... → Synthesize
Input → Extended Thinking → Plan → Execute → Answer
from langchain.agents import create_react_agent, AgentExecutor
from langchain_openai import ChatOpenAI
from langchain.tools import Tool
tools = [
Tool(
name="Calculator",
func=lambda x: eval(x),
description="Math calculator"
)
]
llm = ChatOpenAI(model="gpt-4o")
agent = create_react_agent(llm, tools, prompt)
executor = AgentExecutor(agent=agent, tools=tools)
result = executor.invoke({"input": "What is 25 * 17?"})
from langchain.agents import initialize_agent, Tool
from langchain_openai import ChatOpenAI
# Define specialized agents
researcher = ChatOpenAI(model="gpt-4o")
writer = ChatOpenAI(model="gpt-4o")
# Orchestrator delegates tasks
orchestrator = initialize_agent(
tools=[
Tool(name="research", func=research_agent),
Tool(name="write", func=writer_agent)
],
llm=ChatOpenAI(model="gpt-4o"),
agent="zero-shot-react-description"
)
result = orchestrator.invoke("Research AI trends and write a summary")
import anthropic
client = anthropic.Anthropic()
response = client.messages.create(
model="claude-sonnet-4-20250514",
max_tokens=1024,
tools=[{
"name": "get_weather",
"description": "Get weather data",
"input_schema": {
"type": "object",
"properties": {
"location": {"type": "string"}
}
}
}],
messages=[{"role": "user", "content": "Weather in NYC?"}]
)
from llama_index.agent import ReActAgent
from llama_index.llms import OpenAI
from llama_index.tools import QueryEngineTool
llm = OpenAI(model="gpt-4o")
tools = [
QueryEngineTool.from_defaults(
query_engine=query_engine,
name="docs",
description="Documentation search"
)
]
agent = ReActAgent.from_tools(tools, llm=llm)
response = agent.chat("How do I use embeddings?")
| Pattern | Use Case |
|---|---|
| Hierarchical | Manager delegates to specialists |
| Peer-to-Peer | Agents collaborate as equals |
| Sequential | Chain of agents, each refines |
| Parallel | Multiple agents work simultaneously |
| Server | Purpose |
|---|---|
| filesystem | File operations |
| postgres | Database queries |
| puppeteer | Web automation |
| github | GitHub API access |
| slack | Slack integration |
| Risk Tier | Requirements |
|---|---|
| Unacceptable | Banned (social scoring, manipulation) |
| High-risk | Conformity assessment, documentation |
| Limited-risk | Transparency obligations |
| Minimal-risk | No obligations |
| Skill | Relationship |
|---|---|
| faion-llm-integration | Provides LLM APIs |
| faion-rag-engineer | Agentic RAG integration |
| faion-ml-ops | Agent evaluation |
AI Agents v1.0 | 26 methodologies