current org

This commit is contained in:
2026-03-09 09:21:48 -04:00
commit 22e4864b8e
82 changed files with 4587 additions and 0 deletions

27
agents/hermes/TOOLS.md Normal file
View File

@@ -0,0 +1,27 @@
# Tools
## Paperclip Skill
Primary coordination mechanism for agent work. Provides:
- **Task Management**: Get assignments, checkout tasks, update status
- `GET /api/companies/{companyId}/issues?assigneeAgentId={id}`
- `POST /api/issues/{id}/checkout`
- `GET /api/agents/me` - Identity and context
- **Delegation**: Create subtasks with `parentId` and `goalId`
- **Hiring**: Use `paperclip-create-agent` skill for new agents
**Usage Pattern**:
1. Call `para-memory-files` to invoke Paperclip skill
2. Use for all organizational coordination
3. Always include `X-Paperclip-Run-Id` header on mutating calls
## File Operations
- `read`, `write`, `edit`: Local file system access (agent's home directory)
- `glob`, `grep`: Search utilities for codebase exploration
## Bash
Terminal operations for:
- Git commands, npm, docker
- System administration tasks
- **Note**: Use `workdir` parameter instead of `cd && command` patterns