{"id":51439852,"url":"https://github.com/sidisinsane/guck","last_synced_at":"2026-07-05T10:30:27.935Z","repository":{"id":357088233,"uuid":"1234689975","full_name":"sidisinsane/guck","owner":"sidisinsane","description":"A collection of shell scripts that report structured information an LLM agent needs to act, without the noise it doesn't.","archived":false,"fork":false,"pushed_at":"2026-05-11T08:12:56.000Z","size":23,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-11T10:22:13.740Z","etag":null,"topics":["agents","bash-scripts","cli","developer-tools","hashfm","llm","shell-scripts"],"latest_commit_sha":null,"homepage":"","language":"Shell","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/sidisinsane.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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-05-10T14:13:24.000Z","updated_at":"2026-05-11T08:13:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/sidisinsane/guck","commit_stats":null,"previous_names":["sidisinsane/guck"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/sidisinsane/guck","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidisinsane%2Fguck","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidisinsane%2Fguck/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidisinsane%2Fguck/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidisinsane%2Fguck/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sidisinsane","download_url":"https://codeload.github.com/sidisinsane/guck/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sidisinsane%2Fguck/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35151638,"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-07-05T02:00:06.290Z","response_time":100,"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":["agents","bash-scripts","cli","developer-tools","hashfm","llm","shell-scripts"],"created_at":"2026-07-05T10:30:27.176Z","updated_at":"2026-07-05T10:30:27.918Z","avatar_url":"https://github.com/sidisinsane.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# guck\n\n**Guck** — German for *look* — is a collection of shell scripts that report\nstructured information an LLM agent needs to act, without the noise it doesn't.\n\nAn agent working without context will go looking for it — reading files, running\ncommands, making assumptions. Guck anticipates that need. Before the agent asks,\nyou already have the answer: what runtime the project uses, what tools are\ninstalled, how far the repository is from its last release. No guessing, no\ndigging, no back and forth.\n\n---\n\n## Getting Started\n\n**Install (macOS and Linux):**\n\n```bash\ncurl -o- https://raw.githubusercontent.com/sidisinsane/guck/main/install.sh | bash\n```\n\n**Install (Windows):**\n\n```powershell\nirm https://raw.githubusercontent.com/sidisinsane/guck/main/install.ps1 | iex\n```\n\n**Clone (for development):**\n\n```bash\ngit clone https://github.com/sidisinsane/guck.git\ncd guck\n```\n\n---\n\n## Usage\n\nScripts are invoked via the `guck` dispatcher as `guck \u003ccategory\u003e \u003cendpoint\u003e`.\n\n| Command | Description |\n|---|---|\n| `guck env build-tools [runtime...]` | Reports installed build tools, optionally filtered by runtime group. |\n| `guck env container-tools` | Reports installed container and orchestration tools and their versions. |\n| `guck env data-tools` | Reports installed data processing tools and their versions. |\n| `guck env network-tools` | Reports installed network tools and their versions. |\n| `guck env system` | Reports OS, architecture, and shell of the current system. |\n| `guck env vcs-tools` | Reports installed version control tools and their versions. |\n| `guck git changelog` | Reports commits since the last tag as a TSV index. |\n| `guck git status` | Reports the current git repository status. |\n| `guck project dependency-snapshot \u003cmanager\u003e [--dev\\|--all]` | Reports a dependency snapshot for the specified package manager. |\n| `guck project info` | Reports a structured snapshot of the current project. |\n| `guck project stats` | Reports file counts and line counts, sorted by relevance. |\n\n### Examples\n\n**`guck project info`**\n\n```yaml\nenvironments:\n  - runtime: nodejs\n    language: typescript\n    version:\n      required: 20.0.0+\n      installed: 20.11.0\n    manager:\n      name: pnpm\n      installed: 8.6.0\n    path: .\nvcs:\n  type: git\n  branch: main\n  last_tag: v1.2.0\n  commits_since_tag: 3\n  uncommitted_changes: 1\n```\n\n**`guck git status`**\n\n```yaml\nbranch: feat/dispatcher\nahead: 2\nstaged: 1\nunstaged: 3\nuntracked: 0\nstash: 0\n```\n\n**`guck project dependency-snapshot npm`**\n\n```tsv\nname\tversion\tdepth\nastro\t2.9.6\t1\ndotenv\t16.3.1\t1\n@astrojs/compiler\t1.7.0\t2\n@astrojs/markdown-remark\t2.2.1\t2\n```\n\n---\n\n## Using with hashfm-agent\n\nEvery script in guck has a [hashfm](https://github.com/sidisinsane/hashfm) block\n— a structured metadata comment that makes it self-describing. Combined with\n[hashfm-agent](https://github.com/sidisinsane/hashfm-agent), this or any other\ncollection becomes directly consumable by an LLM agent.\n\nRun once to generate a token-efficient index:\n\n```bash\nhashfm-agent generate ./scripts\n```\n\nThe result is a compact index the agent uses to discover and invoke the right\nscript without reading documentation:\n\n```tsv\nname                    path                                        description\nbuild-tools             ./scripts/env/build-tools.sh               Reports installed build tools, optionally filtered by runtime group.\nchangelog               ./scripts/git/changelog.sh                 Reports commits since the last tag as a TSV index.\ndependency-snapshot     ./scripts/project/dependency-snapshot.sh   Reports a dependency snapshot for the specified package manager.\n...\n```\n\n---\n\n## Contributing\n\nThis is a personal project. The conventions in [CONTRIBUTING.md](CONTRIBUTING.md)\ndocument how scripts are structured, which may be useful if you fork the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidisinsane%2Fguck","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsidisinsane%2Fguck","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsidisinsane%2Fguck/lists"}