{"id":50673749,"url":"https://github.com/jkaninda/okapi-skills","last_synced_at":"2026-06-08T14:01:44.267Z","repository":{"id":345136367,"uuid":"1184665536","full_name":"jkaninda/okapi-skills","owner":"jkaninda","description":"AI Agent skills for Okapi — a modern, minimalist HTTP web framework for Go inspired by FastAPI.","archived":false,"fork":false,"pushed_at":"2026-03-17T20:13:08.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-18T09:45:49.747Z","etag":null,"topics":["ai-agent-skills","ai-agents","okapi","okapi-go","okapi-skiils"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jkaninda.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-17T20:10:42.000Z","updated_at":"2026-03-17T20:14:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jkaninda/okapi-skills","commit_stats":null,"previous_names":["jkaninda/okapi-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jkaninda/okapi-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkaninda%2Fokapi-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkaninda%2Fokapi-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkaninda%2Fokapi-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkaninda%2Fokapi-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jkaninda","download_url":"https://codeload.github.com/jkaninda/okapi-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkaninda%2Fokapi-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34065354,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai-agent-skills","ai-agents","okapi","okapi-go","okapi-skiils"],"created_at":"2026-06-08T14:01:41.587Z","updated_at":"2026-06-08T14:01:44.262Z","avatar_url":"https://github.com/jkaninda.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Okapi Skills\n\nAI Agent skills for [Okapi](https://github.com/jkaninda/okapi) — a modern, minimalist HTTP framework for Go built for simplicity, performance, and developer experience.\n\n## What are Skills?\n\nSkills are focused, single-purpose reference files that AI agents (Claude Code, Cursor, Copilot, etc.) can load to understand and work with the Okapi framework. Each skill lives in its own directory with a `SKILL.md` file containing the API surface, patterns, and examples for one specific topic.\n\n## Skills\n\n| Skill | Description |\n|-------|-------------|\n| [overview](overview/) | Project structure, core types, constructors, app configuration, server lifecycle |\n| [routing](routing/) | HTTP methods, path parameters, generic handlers, route groups, route methods, fallbacks |\n| [route_definition](route_definition/) | Declarative `RouteDefinition` struct, bulk registration, project organization patterns |\n| [request_binding](request_binding/) | Struct tag binding (JSON, query, path, header, cookie, form), validation tags, formats |\n| [response](response/) | JSON/XML/YAML responses, file serving, structured responses, ResponseWriter extensions |\n| [error_handling](error_handling/) | Abort methods, custom error handlers, RFC 7807 Problem Details |\n| [openapi](openapi/) | Swagger UI, ReDoc, Scalar, OpenAPI 3.0 / 3.1, webhooks, OAuth flows, DocBuilder |\n| [authentication](authentication/) | JWT auth, claims expression DSL, Basic auth, CORS configuration |\n| [middleware](middleware/) | Built-in middleware (Logger, RequestID, BasicAuth, JWT, BodyLimit, CORS), chaining, std-lib bridge |\n| [dynamic_routes](dynamic_routes/) | Runtime enable/disable of routes, groups, and docs; deprecation; hiding |\n| [sse_stream](sse_stream/) | Server-Sent Events, single events, channel streaming, serializers |\n| [websocket](websocket/) | WebSocket upgrade via the `okapi-ws` package, with Okapi and `net/http` |\n| [http_client](http_client/) | `okapi/client` fluent HTTP client, retries, middleware, decoders |\n| [testing](testing/) | TestServer, TestContext, okapitest fluent client, assertions |\n| [cli](cli/) | okapicli package, flags, struct-based config, subcommands, server lifecycle hooks |\n| [context](context/) | Data store, request inspection, parameters, cookies, templates, static files, TLS |\n\n## Usage\n\n### Claude Code\n\nAdd skills to your project by referencing them in your `CLAUDE.md`:\n\n```markdown\nRead skills from https://github.com/jkaninda/okapi-skills\n```\n\nOr clone locally and point to specific skills:\n\n```bash\ngit clone https://github.com/jkaninda/okapi-skills.git skills/okapi\n```\n\n### Other AI Agents\n\nCopy the relevant `SKILL.md` files into your project's context or documentation directory. Each file is self-contained and can be loaded independently.\n\n## Structure\n\n```\nskills/\n├── README.md              # This file\n├── SKILLS.md              # Machine-readable index\n├── overview/SKILL.md\n├── routing/SKILL.md\n├── route_definition/SKILL.md\n├── request_binding/SKILL.md\n├── response/SKILL.md\n├── error_handling/SKILL.md\n├── openapi/SKILL.md\n├── authentication/SKILL.md\n├── middleware/SKILL.md\n├── dynamic_routes/SKILL.md\n├── sse_stream/SKILL.md\n├── websocket/SKILL.md\n├── http_client/SKILL.md\n├── testing/SKILL.md\n├── cli/SKILL.md\n└── context/SKILL.md\n```\n\n## Contributing\n\nTo add a new skill:\n\n1. Create a directory with a descriptive name (e.g. `metrics/`)\n2. Add a `SKILL.md` inside it with the API reference, types, and examples\n3. Update `README.md` and `SKILLS.md` with the new entry\n\nKeep skills focused on a single topic. Prefer code examples over prose.\n\n## License\n\nMIT — see the [Okapi repository](https://github.com/jkaninda/okapi) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkaninda%2Fokapi-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjkaninda%2Fokapi-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkaninda%2Fokapi-skills/lists"}