{"id":51161567,"url":"https://github.com/corentints/engram","last_synced_at":"2026-06-26T14:01:44.750Z","repository":{"id":364366727,"uuid":"1264378007","full_name":"Corentints/engram","owner":"Corentints","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-12T19:46:12.000Z","size":109,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-12T20:05:05.921Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/Corentints.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":null,"dco":null,"cla":null}},"created_at":"2026-06-09T20:39:03.000Z","updated_at":"2026-06-11T22:18:42.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Corentints/engram","commit_stats":null,"previous_names":["corentints/engram"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Corentints/engram","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corentints%2Fengram","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corentints%2Fengram/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corentints%2Fengram/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corentints%2Fengram/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Corentints","download_url":"https://codeload.github.com/Corentints/engram/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Corentints%2Fengram/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34819597,"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-26T02:00:06.560Z","response_time":106,"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":[],"created_at":"2026-06-26T14:01:43.576Z","updated_at":"2026-06-26T14:01:44.744Z","avatar_url":"https://github.com/Corentints.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# engram\n\nInstall and share AI agent skills from any git repository. No registry, no config — point engram at a repo and go.\n\n## Install\n\n```sh\nnpx engram --help          # run without installing\nnpm install -g engram      # or install globally\n```\n\n## How it works\n\nA **skill** is a folder of instructions an AI agent loads (the [open agent skills standard](https://github.com/agentskills/agentskills)). engram pulls skills from a **source** (any git repo) and installs them for a **provider** (`claude` or `copilot`), either **globally** (all projects) or in the current **project** (committed to your repo).\n\n## Quickstart\n\n```sh\nengram add vercel-labs/agent-skills\n```\n\nThis lists the skills in the repo and lets you pick which to install. That's the whole loop — browse, pick, done.\n\nTo skip the prompts:\n\n```sh\nengram add vercel-labs/agent-skills --skill frontend-design,deploy --provider claude --scope project\n```\n\n## Commands\n\n### `add` — install skills from a repo\n\nLists the skills it finds, then installs your selection.\n\n```sh\nengram add owner/repo                       # interactive picker\nengram add owner/repo --skill code-review   # one skill\nengram add owner/repo --skill a,b           # several\nengram add owner/repo --all                 # all skills\n```\n\n| Flag | Default | Description |\n|---|---|---|\n| `--skill` | prompted | Comma-separated skill paths |\n| `--all` | off | Install every skill in the source |\n| `--provider` | prompted | Comma-separated: `claude`, `copilot` |\n| `--scope` | `global` | `global` or `project` |\n| `--branch` | `main` | Branch to fetch from |\n| `--path` | auto | Sub-directory holding skills (auto-detected) |\n\nA source can be a GitHub shorthand (`owner/repo`) or any clonable git URL (`https://…`, `git@…`, `ssh://…`, `file://…`).\n\n### `install` — install one skill directly\n\nSame as `add` but skips the listing — takes the source and skill as two arguments. Handy in scripts.\n\n```sh\nengram install owner/repo code-review\nengram install owner/repo code-review --provider claude,copilot --scope project --path skills\n```\n\n### `sync` — reproduce a project's skills\n\nRe-installs every skill in `skills.json`, pinned to its recorded commit. Run this after cloning a repo or pulling new skills.\n\n```sh\nengram sync\nengram sync --dir /path/to/project\n```\n\n### `remove` — uninstall a skill\n\n```sh\nengram remove owner/repo/code-review --scope project   # use the id from `engram list`\nengram remove owner/repo/code-review --scope project --keep-files\nengram remove code-review                               # global: use the skill path\n```\n\n### `list` — show installed skills\n\nIn an interactive terminal, `engram list` opens a selectable list grouped by `Global` and `Project`. Toggle skills with space, confirm with enter, then confirm the removal. In a non-TTY environment (scripts, CI), it falls back to the read-only listing.\n\n```sh\nengram list\nengram list --scope project\n```\n\n### `search` — browse a repo without installing\n\n```sh\nengram search owner/repo          # list all\nengram search owner/repo review   # filter by name\n```\n\n## Where skills go\n\nEach skill is stored once in a canonical store (`~/.local/share/engram/store/`) and **symlinked** into each provider directory — one source of truth, with a copy fallback where symlinks aren't available.\n\n| | Claude | Copilot |\n|---|---|---|\n| **global** | `~/.claude/skills/` | `~/.agents/skills/` |\n| **project** | `.claude/skills/` | `.github/skills/` |\n\n## Project manifest (`skills.json`)\n\nProject installs (`--scope project`) are recorded in `skills.json`, with each skill pinned to an exact commit. Commit this file so teammates can run `engram sync` and get the identical setup.\n\n```json\n{\n  \"skills\": {\n    \"vercel-labs/agent-skills/frontend-design\": {\n      \"source\": \"vercel-labs/agent-skills\",\n      \"skill\": \"frontend-design\",\n      \"sha\": \"77208fa958572fbfe1b02d90ea1cacff0568cd8f\",\n      \"providers\": [\"claude\"]\n    }\n  }\n}\n```\n\n## Source layout\n\nA source is a plain git repo. Skills are subdirectories, at the root or under a common folder (engram auto-detects it; override with `--path`):\n\n```\nmy-skills-repo/\n├── code-review/\n│   └── code-review.md\n└── standup/\n    └── standup.md\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorentints%2Fengram","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcorentints%2Fengram","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcorentints%2Fengram/lists"}