{"id":49083594,"url":"https://github.com/inhere/skillc","last_synced_at":"2026-04-26T20:00:38.819Z","repository":{"id":352604353,"uuid":"1215680965","full_name":"inhere/skillc","owner":"inhere","description":"Single binary file, a local Skill management tool for the multi-Agent ecosystem. 单二进制文件，面向多 Agent 生态的本地 Skill 管理工具","archived":false,"fork":false,"pushed_at":"2026-04-24T07:38:17.000Z","size":330,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-24T18:32:14.257Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","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/inhere.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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-04-20T06:40:37.000Z","updated_at":"2026-04-24T07:38:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/inhere/skillc","commit_stats":null,"previous_names":["inhere/skillc"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/inhere/skillc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inhere%2Fskillc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inhere%2Fskillc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inhere%2Fskillc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inhere%2Fskillc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/inhere","download_url":"https://codeload.github.com/inhere/skillc/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/inhere%2Fskillc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32273223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-25T18:29:39.964Z","status":"ssl_error","status_checked_at":"2026-04-25T18:29:32.149Z","response_time":59,"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-20T14:08:35.497Z","updated_at":"2026-04-25T19:00:53.558Z","avatar_url":"https://github.com/inhere.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Skillc\n\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/inhere/skillc?style=flat-square)\n[![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/inhere/skillc)](https://github.com/inhere/skillc)\n[![Unit-Tests](https://github.com/inhere/skillc/actions/workflows/go.yml/badge.svg)](https://github.com/inhere/skillc)\n\n---\n\n[English](./README.md) | [简体中文](./README.zh-CN.md)\n\n`skillc` Single binary file, a local skills management tool for the multi-Agent ecosystem.\n\n## Features\n\n- 📦 **Multi-source management** — Local paths and Git repositories as Skill sources\n- 🔍 **Index \u0026 search** — Auto-scans sources and builds a searchable index\n- ⚡ **One-shot install** — `--source` flag registers, syncs, and installs in a single command\n- 🔒 **Lock file tracking** — Records origin, version, and install path; supports `restore`\n- 🤖 **Multi-agent adapters** — Automatically targets each agent's install directory\n- 🔄 **Batch update** — Update all installed Skills with one command\n\n## Installation\n\n**Install by eget**\n\nCan quickly install by [inherelab/eget](https://github.com/inherelab/eget)\n\n```bash\neget install inhere/skillc\n```\n\n**Install by Go**\n\n```bash\ngo install github.com/inhere/skillc/cmd/skillc@latest\n```\n\n**Build from source**\n\n```bash\ngit clone https://github.com/inhere/skillc\ncd skillc\nmake build          # compile to current directory\nmake install        # install to $GOPATH/bin\n```\n\n## Quick Start\n\n```bash\n# 1. Initialize config\nskillc config init\n\n# 2. Add a Skill source (Git repo or local path)\nskillc source add git https://github.com/org/skills.git\nskillc source add local /path/to/my-skills\n\n# 3. Sync sources (clone/pull and rebuild index)\nskillc source sync --all\n\n# 4. Search for a Skill\nskillc search typescript\n\n# 5. Install a Skill\nskillc install my-skill\n\n# 6. List installed Skills\nskillc list\n```\n\n## Command Reference\n\n### `config` — Configuration\n\n```bash\nskillc config init               # initialize config file\nskillc config show               # display current config\nskillc config set \u003ckey\u003e \u003cvalue\u003e  # update a config value\n```\n\n### `source` — Source management\n\n```bash\nskillc source list                    # list all sources\nskillc source add git \u003curl\u003e [ref]     # add a Git source\nskillc source add local \u003cpath\u003e        # add a local source\nskillc source sync \u003cid\u003e               # sync a source (partial ID match supported)\nskillc source sync --all              # sync all sources\nskillc source status                  # show source status\nskillc source remove \u003cid\u003e             # remove a source\n```\n\n\u003e `source sync` supports **partial ID matching** — e.g. `skillc source sync edge` matches `local-golang-edge-skills`.\n\n### `install` — Install Skills\n\n```bash\nskillc install \u003cskill-id\u003e             # install a Skill\nskillc install \u003cid1\u003e,\u003cid2\u003e            # install multiple (comma-separated)\nskillc install --collection \u003cname\u003e    # install an entire Collection\nskillc install                        # restore all Skills from lock file\n\n# One-shot: register source → sync → install\nskillc install --source https://github.com/org/skills.git my-skill\nskillc install --source /path/to/local-skills my-skill\n```\n\n**Options:**\n\n| Flag | Short | Default | Description |\n|------|-------|---------|-------------|\n| `--scope` | `-s` | `project` | Install scope (`project` / `global`) |\n| `--agent` | `-a` | `claude-code` | Target agent name or directory |\n| `--yes` | `-y` | `false` | Skip confirmation prompt |\n| `--collection` | `-c` | `false` | Treat targets as Collection selectors |\n| `--source` | `-S` | | Git URL or local path — auto-register \u0026 sync before installing |\n\n### `update` — Update Skills\n\n```bash\nskillc update                        # update all installed Skills\nskillc update --target \u003cskill-id\u003e    # update a specific Skill\n```\n\n### `uninstall` — Remove Skills\n\n```bash\nskillc uninstall \u003cskill-id\u003e [...]    # uninstall one or more Skills\n```\n\n### `list` — Installed Skills\n\n```bash\nskillc list                          # list installed Skills (current agent)\nskillc list --scope global           # list globally installed Skills\n```\n\n### `search` / `show` — Index search\n\n```bash\nskillc search \u003ckeyword\u003e              # keyword search\nskillc search \u003ckeyword\u003e --agent claude  # filter by agent\nskillc show \u003cskill-id\u003e               # show Skill details\n```\n\n### `collection` — Browse Collections\n\n```bash\nskillc collection list               # list all Collections\nskillc collection skills \u003cname\u003e      # list Skills in a Collection\n```\n\n### `doctor` — Environment check\n\n```bash\nskillc doctor                        # verify git, config, index, and cache\n```\n\n## Configuration\n\nConfig file lookup order:\n\n1. `./skillc.yaml` (current directory)\n2. `~/.config/skillc/config.yaml`\n\nKey fields:\n\n```yaml\nlock_file: skillc.lock.yaml        # lock file path\nindex_file: skillc-index.json      # index file path\nrepo_cache_dir: ~/.cache/skillc    # Git repo cache directory\nproxy_url: \"\"                      # HTTP proxy (optional)\nsources: []                        # registered sources\n```\n\n## Lock File\n\n`skillc.lock.yaml` records every installed Skill and is used by `skillc install` (no args) to restore all Skills:\n\n```yaml\nrecords:\n  - skill_id: my-skill\n    source_id: git-org-skills\n    agent: claude-code\n    scope: project\n    installed_path: .claude/skills/my-skill\n    installed_at: \"2026-01-01T00:00:00Z\"\n```\n\n## Development\n\n```bash\ngo test ./...    # run all tests\nmake build       # local build\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finhere%2Fskillc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finhere%2Fskillc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finhere%2Fskillc/lists"}