.agent/skills/agent-tool-design/SKILL.md
Design reliable, well-documented tools for LLM agents — input schemas, error returns, idempotency, and naming conventions. Use when adding new MCP tools to bridge, cowork-mcp, or the orchestrator.
npx skillsauth add abzhaw/juliaz_agents agent-tool-designInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
send_telegram_message not send_msgserver.registerTool('create_task', {
title: 'Create Task',
description: `Create a new task in Julia's backend.
Use when the user asks to add, remember, or track something.
Returns the created task with its ID.
Example: create_task({ title: "Buy groceries" })`,
inputSchema: z.object({
title: z.string().min(1).max(500).describe('Task title — be specific and actionable'),
priority: z.enum(['low', 'medium', 'high']).default('medium').optional(),
}),
annotations: {
readOnlyHint: false,
destructiveHint: false,
idempotentHint: false,
}
}, async ({ title, priority }) => {
try {
const task = await backend.createTask({ title, priority });
return { content: [{ type: 'text', text: JSON.stringify(task) }] };
} catch (err) {
return { content: [{ type: 'text', text: `Error: ${err.message}` }] };
}
});
[One sentence: what it does]
Use when [trigger condition].
[Args description if non-obvious]
Returns [what the agent gets back].
Example: tool_name({ param: "value" })
// Always return errors as text content — never throw from a tool
// The LLM can read the error and decide what to do
return { content: [{ type: 'text', text: `Error: ${message}` }] };
| Category | Examples |
|----------|---------|
| Communication | send_telegram_message, get_pending_messages |
| Task management | create_task, update_task, list_tasks |
| System | get_pm2_status, restart_service, check_health |
| Delegation | claude_task, claude_code_review (cowork-mcp) |
development
Fortschrittsverfolgung der Masterarbeit. Wortanzahl pro Kapitel, Fertigstellungsgrad, fehlende Elemente, Deadlines. Haelt den Ueberblick.
development
Kapitelarchitektur und Gliederung der Masterarbeit. Verwaltet die Struktur, schlaegt vor wo Inhalte hingehoeren, validiert den logischen Fluss zwischen Kapiteln.
tools
Konvertiert Protokolleinträge und Session-Logs in thesis-fähiges deutsches Narrativ. Transformiert Entwicklungsdokumentation in akademische Prosa.
research
Sucht und analysiert akademische Literatur. Findet relevante Papers, erstellt strukturierte Zusammenfassungen. Zitiert NIEMALS — schlaegt nur vor.