{"id":47929934,"url":"https://github.com/alexk-dev/golemcore-skills","last_synced_at":"2026-04-04T07:14:56.966Z","repository":{"id":344481581,"uuid":"1165195830","full_name":"alexk-dev/golemcore-skills","owner":"alexk-dev","description":null,"archived":false,"fork":false,"pushed_at":"2026-03-15T04:02:25.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-15T08:16:41.388Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alexk-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":null,"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":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-02-23T23:23:41.000Z","updated_at":"2026-03-15T03:42:15.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/alexk-dev/golemcore-skills","commit_stats":null,"previous_names":["alexk-dev/golemcore-skills"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/alexk-dev/golemcore-skills","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexk-dev%2Fgolemcore-skills","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexk-dev%2Fgolemcore-skills/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexk-dev%2Fgolemcore-skills/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexk-dev%2Fgolemcore-skills/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alexk-dev","download_url":"https://codeload.github.com/alexk-dev/golemcore-skills/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alexk-dev%2Fgolemcore-skills/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31391078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T04:26:24.776Z","status":"ssl_error","status_checked_at":"2026-04-04T04:23:34.147Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-04-04T07:14:55.587Z","updated_at":"2026-04-04T07:14:56.956Z","avatar_url":"https://github.com/alexk-dev.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# golemcore-skills\n\nCanonical repository for Golemcore skills and skill packs.\n\nThis repository defines the structure, naming rules, and contribution workflow for publishing reusable Golemcore skills. It is designed to support:\n\n- standalone skills maintained by individual authors\n- packs that ship multiple related skills together\n- multiple maintainers with stable namespaces\n- future registry tooling that can install either a single skill artifact or a pack artifact\n\n## Status\n\nThe repository is currently documentation-first. The layout described here is the canonical contract for future content. Consumer tooling may adopt the full contract incrementally.\n\n## Repository Goals\n\n- provide one predictable home for community and first-party skills\n- avoid naming conflicts across maintainers\n- support both single-skill artifacts and multi-skill packs\n- make artifact ownership, versioning, and provenance explicit\n- keep repository review and automation simple\n\n## Canonical Layout\n\n```text\nregistry/\n  \u003cmaintainer-slug\u003e/\n    maintainer.yaml\n    \u003cartifact-id\u003e/\n      artifact.yaml\n      SKILL.md\n    \u003cpack-id\u003e/\n      artifact.yaml\n      skills/\n        \u003cskill-id\u003e/SKILL.md\n        \u003cskill-id\u003e/SKILL.md\n\ndocs/\n  REPOSITORY_STRUCTURE.md\n```\n\n## Artifact Types\n\n### Standalone skill\n\nA standalone skill is one installable artifact containing exactly one `SKILL.md`.\n\nExample:\n\n```text\nregistry/golemcore/code-reviewer/\n  artifact.yaml\n  SKILL.md\n```\n\nCanonical artifact reference:\n\n```text\ngolemcore/code-reviewer\n```\n\n### Pack\n\nA pack is one installable artifact that contains multiple skills.\n\nExample:\n\n```text\nregistry/golemcore/devops-pack/\n  artifact.yaml\n  skills/\n    deploy-review/SKILL.md\n    incident-triage/SKILL.md\n```\n\nCanonical artifact reference:\n\n```text\ngolemcore/devops-pack\n```\n\nCanonical skill reference inside a pack:\n\n```text\ngolemcore/devops-pack/deploy-review\n```\n\n## Required Documents\n\n- [Repository Structure](docs/REPOSITORY_STRUCTURE.md): full layout and metadata contract\n- [Contributing Guide](CONTRIBUTING.md): contribution rules, commit format, and PR expectations\n\n## Contribution Rules\n\n- All documentation and metadata must be written in English.\n- Each artifact must live under exactly one maintainer namespace.\n- File and directory names must use stable lowercase slugs.\n- Repository changes must use Conventional Commits.\n- Pull requests to `main` are required; direct commits to `main` are not allowed.\n- Pull requests should clearly state whether they add a maintainer, a standalone skill, a pack, or repository-level documentation.\n\n## Conventional Commits\n\nConventional Commits are required for this repository.\n\nExamples:\n\n- `feat(skill): add golemcore/code-reviewer standalone artifact`\n- `feat(pack): add golemcore/devops-pack artifact`\n- `docs: document repository structure and contribution workflow`\n- `fix(skill): correct metadata for golemcore/code-reviewer`\n\n## Recommended Workflow\n\n1. Create a topic branch such as `feat/add-code-reviewer` or `docs/repository-structure`.\n2. Add or update files under `registry/` and `docs/`.\n3. Verify that names, paths, and metadata follow the repository contract.\n4. Commit using a Conventional Commit message.\n5. Open a pull request with a concise summary of the maintainer, artifact, and expected install surface.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexk-dev%2Fgolemcore-skills","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexk-dev%2Fgolemcore-skills","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexk-dev%2Fgolemcore-skills/lists"}