28 lines
938 B
Markdown
28 lines
938 B
Markdown
# 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
|