Add Skill: agent-creation-and-management #22
@@ -0,0 +1,73 @@
|
|||||||
|
---
|
||||||
|
name: agent-creation-and-management
|
||||||
|
version: 1.0.0
|
||||||
|
description: Create and manage workplace AI agents using PipesHub's no-code agent
|
||||||
|
builder.
|
||||||
|
inputs:
|
||||||
|
- Agent name with description
|
||||||
|
- Action to perform (e.g., 'Gather facts about a company')
|
||||||
|
steps:
|
||||||
|
- 'Step 1: Open the PipesHub UI at http://localhost:3000'
|
||||||
|
- 'Step 2: Navigate to the Agents section and click on ''Create Agent'''
|
||||||
|
- 'Step 3: Enter the agent name and description in the form'
|
||||||
|
- 'Step 4: Define the actions for the agent, such as ''Gather facts about a company'',
|
||||||
|
using PipesHub''s no-code interface'
|
||||||
|
- 'Step 5: Save and deploy the agent'
|
||||||
|
outputs:
|
||||||
|
- Agent created and deployed
|
||||||
|
- Access URL for the new agent
|
||||||
|
tags: []
|
||||||
|
metadata:
|
||||||
|
source_repo: https://github.com/pipeshub-ai/pipeshub-ai.git
|
||||||
|
extracted_at: ''
|
||||||
|
confidence: 0.95
|
||||||
|
---
|
||||||
|
|
||||||
|
# agent-creation-and-management
|
||||||
|
|
||||||
|
Create and manage workplace AI agents using PipesHub's no-code agent builder.
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
|
||||||
|
**Setup steps:**
|
||||||
|
|
||||||
|
1. Ensure Docker and Compose are installed
|
||||||
|
1. Clone the repository: git clone https://github.com/pipeshub-ai/pipeshub-ai.git
|
||||||
|
1. Run the installer: ./install.sh
|
||||||
|
|
||||||
|
## Key Files
|
||||||
|
|
||||||
|
- `N/A - Workflow implemented via UI`
|
||||||
|
|
||||||
|
## Steps
|
||||||
|
|
||||||
|
1. Step 1: Open the PipesHub UI at http://localhost:3000
|
||||||
|
2. Step 2: Navigate to the Agents section and click on 'Create Agent'
|
||||||
|
3. Step 3: Enter the agent name and description in the form
|
||||||
|
4. Step 4: Define the actions for the agent, such as 'Gather facts about a company', using PipesHub's no-code interface
|
||||||
|
5. Step 5: Save and deploy the agent
|
||||||
|
|
||||||
|
## Implementation Details
|
||||||
|
|
||||||
|
```python
|
||||||
|
N/A - Workflow implemented via UI
|
||||||
|
```
|
||||||
|
|
||||||
|
## Inputs
|
||||||
|
|
||||||
|
- Agent name with description
|
||||||
|
- Action to perform (e.g., 'Gather facts about a company')
|
||||||
|
|
||||||
|
## Outputs
|
||||||
|
|
||||||
|
- Agent created and deployed
|
||||||
|
- Access URL for the new agent
|
||||||
|
|
||||||
|
## Failure Modes
|
||||||
|
|
||||||
|
- If the agent creation fails due to missing required fields, ensure all necessary details are provided correctly
|
||||||
|
|
||||||
|
## Source
|
||||||
|
|
||||||
|
Extracted from: [https://github.com/pipeshub-ai/pipeshub-ai.git](https://github.com/pipeshub-ai/pipeshub-ai.git)
|
||||||
|
Confidence: 0.95
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
# Commands: agent-creation-and-management
|
||||||
|
|
||||||
|
## Available Commands
|
||||||
|
|
||||||
|
- `/skill agent-creation-and-management` — Load this skill
|
||||||
|
- `/run agent-creation-and-management` — Execute workflow
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
# Examples: agent-creation-and-management
|
||||||
|
|
||||||
|
## Usage Example
|
||||||
|
|
||||||
|
```python
|
||||||
|
# How to use this skill
|
||||||
|
# Inputs: Agent name with description, Action to perform (e.g., 'Gather facts about a company')
|
||||||
|
# Process: Step 1: Open the PipesHub UI at http://localhost:3000 → Step 2: Navigate to the Agents section and click on 'Create Agent' → Step 3: Enter the agent name and description in the form
|
||||||
|
# Outputs: Agent created and deployed, Access URL for the new agent
|
||||||
|
```
|
||||||
@@ -0,0 +1,27 @@
|
|||||||
|
{
|
||||||
|
"name": "agent-creation-and-management",
|
||||||
|
"version": "1.0.0",
|
||||||
|
"goal": "Create and manage workplace AI agents using PipesHub's no-code agent builder.",
|
||||||
|
"inputs": [
|
||||||
|
"Agent name with description",
|
||||||
|
"Action to perform (e.g., 'Gather facts about a company')"
|
||||||
|
],
|
||||||
|
"steps": [
|
||||||
|
"Step 1: Open the PipesHub UI at http://localhost:3000",
|
||||||
|
"Step 2: Navigate to the Agents section and click on 'Create Agent'",
|
||||||
|
"Step 3: Enter the agent name and description in the form",
|
||||||
|
"Step 4: Define the actions for the agent, such as 'Gather facts about a company', using PipesHub's no-code interface",
|
||||||
|
"Step 5: Save and deploy the agent"
|
||||||
|
],
|
||||||
|
"outputs": [
|
||||||
|
"Agent created and deployed",
|
||||||
|
"Access URL for the new agent"
|
||||||
|
],
|
||||||
|
"failure_modes": [
|
||||||
|
"If the agent creation fails due to missing required fields, ensure all necessary details are provided correctly"
|
||||||
|
],
|
||||||
|
"confidence": 0.95,
|
||||||
|
"explanation": "This workflow is specific but can be adapted for different agents and actions within PipesHub's platform.",
|
||||||
|
"source_repo": "https://github.com/pipeshub-ai/pipeshub-ai.git",
|
||||||
|
"score": 1.0
|
||||||
|
}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# Tests: agent-creation-and-management
|
||||||
|
|
||||||
|
## Test Checklist
|
||||||
|
|
||||||
|
- [ ] Workflow has at least 3 steps
|
||||||
|
- [ ] All inputs are defined
|
||||||
|
- [ ] All outputs are defined
|
||||||
|
- [ ] Failure modes are documented
|
||||||
|
- [ ] Skill can be loaded without errors
|
||||||
Reference in New Issue
Block a user