소스 정보
- 저장소
- majiayu000/claude-skill-registry
- 최근 소스 활동
- 2026년 6월 23일 12:15
- 감지된 SKILL.md 언어
- 영어
- 스타
- 543
- 포크
- 85
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/majiayu000/claude-skill-registry --skill faion-ai-agents명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
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 干了啥"、"活动回顾" 时使用。
| 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