{"id":48367051,"url":"https://github.com/yortw/winix","last_synced_at":"2026-04-05T15:01:53.461Z","repository":{"id":348642776,"uuid":"1194845179","full_name":"Yortw/winix","owner":"Yortw","description":"Cross-platform CLI tools for the gaps between Windows and *nix — timeit, peep, squeeze, wargs, files, treex","archived":false,"fork":false,"pushed_at":"2026-04-02T06:17:30.000Z","size":1080,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-02T17:40:48.480Z","etag":null,"topics":["aot","cli","command-line-tools","cross-platform","csharp","dotnet","linux","macos","windows"],"latest_commit_sha":null,"homepage":"https://github.com/Yortw/winix","language":"C#","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/Yortw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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-28T22:13:59.000Z","updated_at":"2026-04-02T06:17:33.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Yortw/winix","commit_stats":null,"previous_names":["yortw/winix"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Yortw/winix","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yortw%2Fwinix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yortw%2Fwinix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yortw%2Fwinix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yortw%2Fwinix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Yortw","download_url":"https://codeload.github.com/Yortw/winix/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Yortw%2Fwinix/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31439442,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T13:13:19.330Z","status":"ssl_error","status_checked_at":"2026-04-05T13:13:17.778Z","response_time":75,"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":["aot","cli","command-line-tools","cross-platform","csharp","dotnet","linux","macos","windows"],"created_at":"2026-04-05T15:01:51.742Z","updated_at":"2026-04-05T15:01:53.456Z","avatar_url":"https://github.com/Yortw.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"Winix.png\" alt=\"Winix — a penguin peeking through Windows shutters\" width=\"128\" /\u003e\n\u003c/p\u003e\n\n# Winix\n\n[![CI](https://github.com/Yortw/winix/actions/workflows/ci.yml/badge.svg)](https://github.com/Yortw/winix/actions/workflows/ci.yml)\n[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)\n[![GitHub release](https://img.shields.io/github/v/release/Yortw/winix?include_prereleases)](https://github.com/Yortw/winix/releases)\n\n**Cross-platform CLI tools for the gaps between Windows and *nix.**\n\nWinix is a suite of small, focused command-line tools built with .NET and compiled to native binaries via AOT. Each tool fills a gap where Linux utilities either don't exist on Windows, have poor/abandoned ports, or where a modern implementation can do better than the original.\n\n## Tools\n\n| Tool | What it does | *nix equivalent | Status |\n|------|-------------|-----------------|--------|\n| [**timeit**](src/timeit/README.md) | Time a command — wall clock, CPU time, peak memory, exit code | `time` | Shipped |\n| [**peep**](src/peep/README.md) | Watch a command on interval + re-run on file changes | `watch` + `entr` | Shipped |\n| [**squeeze**](src/squeeze/README.md) | Multi-format compression (gzip, brotli, zstd) | `gzip`, `brotli`, `zstd` | Shipped |\n| [**wargs**](src/wargs/README.md) | Build and execute commands from stdin | `xargs` | Shipped |\n| [**files**](src/files/README.md) | Find files by name, size, date, type, and content | `find` | Shipped |\n| [**treex**](src/treex/README.md) | Enhanced directory tree with colour, filtering, sizes | `tree` | Shipped |\n\n## Install\n\n### Scoop (Windows)\n\n```bash\nscoop bucket add winix https://github.com/Yortw/winix\nscoop install winix/timeit    # individual tool\nscoop install winix/winix     # all tools\n```\n\n### Winget (Windows, stable releases)\n\n```bash\nwinget install Winix.TimeIt\nwinget install Winix.Squeeze\nwinget install Winix.Peep\nwinget install Winix.Wargs\nwinget install Winix.Files\nwinget install Winix.TreeX\n```\n\n### .NET Tool (cross-platform)\n\n```bash\ndotnet tool install -g Winix.TimeIt\ndotnet tool install -g Winix.Squeeze\ndotnet tool install -g Winix.Peep\ndotnet tool install -g Winix.Wargs\ndotnet tool install -g Winix.Files\ndotnet tool install -g Winix.TreeX\n```\n\n### Direct Download\n\nDownload native binaries from [GitHub Releases](https://github.com/Yortw/winix/releases).\nAvailable for Windows (x64), Linux (x64), and macOS (x64, ARM64).\n\n## Quick Start\n\n```bash\n# Time a build\ntimeit dotnet build\n\n# Watch a command, re-run on file changes\npeep -w \"src/**/*.cs\" dotnet test\n\n# Compress with zstd\nsqueeze --zstd largefile.bin\n\n# Find files and batch-process them\nfiles src --ext cs | wargs dotnet format\n\n# Browse a directory tree with sizes\ntreex --size --gitignore --no-hidden\n\n# JSON output for CI\ntimeit --json dotnet test\n\n# AI agent metadata\nfiles --describe\n```\n\n## Building from Source\n\n```bash\ngit clone https://github.com/Yortw/winix.git\ncd winix\ndotnet build Winix.sln\ndotnet test Winix.sln\n\n# AOT native binary\ndotnet publish src/timeit/timeit.csproj -c Release -r win-x64\n```\n\n## Status\n\nSix tools shipped (`timeit`, `peep`, `squeeze`, `wargs`, `files`, `treex`) — all functional, tested, and AOT-ready. More tools planned.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyortw%2Fwinix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyortw%2Fwinix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyortw%2Fwinix/lists"}