Add Skill: agent-builder-workflow

Extracted from: https://github.com/pipeshub-ai/pipeshub-ai.git
Score: 1.0
This commit is contained in:
Hermes Pipeline
2026-08-06 14:38:02 +00:00
parent 271f79610d
commit bd457c0b6d
5 changed files with 170 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Examples: agent-builder-workflow
## Usage Example
```python
# How to use this skill
# Inputs: Task description and agent objectives (e.g., answer Q&A, research specific topics, generate reports), Knowledge sources (documents, databases, enterprise systems) to connect to, Retrieval strategy configuration (graph-based knowledge graph vs. vector search), Output requirements (citation format, response structure, code execution needs)
# Process: Step 1: Define agent task and objectives - Specify what the agent should do (e.g., answer a question, perform deep research on a topic, generate a report with citations) → Step 2: Configure knowledge sources - Connect to enterprise documents, databases, or external systems that will serve as the agent's context → Step 3: Build LangGraph chain - Create a workflow chain using LangGraph that combines retrieval (graph/vector) and LLM response generation with citation capabilities
# Outputs: Agent execution logs showing retrieval steps and LLM responses, Grounded answers with block citations to source documents, Generated reports or artifacts (if code execution was performed), Structured task completion status and results
```