com um clique
api-client
Make API requests and parse JSON responses
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Make API requests and parse JSON responses
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Implement features in the Edictum OSS core (src/edictum/). Use when the task touches pipeline, adapters, YAML engine, CLI, audit, envelope, or session. Core NEVER imports from ee/.
Fix a single audit issue in a git worktree. Creates a feature branch, follows fix-bug procedure, and creates a PR. Designed for parallel execution by spawned agents.
Transform a feature spec into audited, implementation-ready prompts. Use when starting a new feature, designing a new adapter, or turning a design doc into sequenced build steps. Covers spec audit against project rules, gap identification, decision collection, and prompt generation.
Sync documentation with code changes. Use on every PR that touches library code to keep docs accurate and consistent.
Manage files in the workspace directory
A helper for bird watching
| name | api-client |
| author | webdev-tools |
| description | Make API requests and parse JSON responses |
| tags | ["api","http","json"] |
| requires_bins | ["curl","jq"] |
| requires_network | true |
Make HTTP requests and parse JSON responses.
curl -s https://api.example.com/users | jq '.data[]'
curl -s -X POST https://api.example.com/items \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "test"}' | jq '.id'
curl -s "https://api.example.com/items?page=1&limit=100" | jq '.items[] | .name'
curl -s "https://api.example.com/items?page=2&limit=100" | jq '.items[] | .name'
curl -s https://api.example.com/health | jq '.status'