Metadata-Version: 2.4
Name: zigpeek
Version: 0.3.1
Summary: Fast CLI for Zig 0.16 stdlib + Skill for coding agents
Project-URL: Homepage, https://github.com/TanGentleman/zigpeek
Project-URL: Repository, https://github.com/TanGentleman/zigpeek
Project-URL: Issues, https://github.com/TanGentleman/zigpeek/issues
License: MIT License
        
        Copyright (c) 2026 Tanuj Vasudeva
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        ---
        
        This project bundles `src/zigpeek/_vendor/main.wasm`, built from the
        `zig-mcp` project (https://github.com/loonghao/zig-mcp), which is also
        distributed under the MIT License. See `vendor/PROVENANCE.md` for build
        details.
License-File: LICENSE
Requires-Python: >=3.12
Requires-Dist: beautifulsoup4>=4.12.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: lxml>=5.0.0
Requires-Dist: wasmtime>=25.0.0
Description-Content-Type: text/markdown

# zigpeek

Fast CLI for Zig 0.16 stdlib + Skill for coding agents. Replaces the
[`zig-docs` MCP server](https://github.com/zig-wasm/zig-mcp) where MCP
isn't available — typically cloud agents.

## Install

```sh
uv tool install zigpeek      # or: pipx install zigpeek
```

## Usage

```sh
zigpeek prefetch                                 # warm cache (once per session)
zigpeek search ArrayList --limit 10              # fuzzy stdlib search
zigpeek get std.ArrayList                        # full docs for an FQN
zigpeek get std.ArrayList --source-file          # source file containing it
zigpeek builtins list                            # all @-builtins
zigpeek builtins get atomic                      # specific builtin
zigpeek batch <<EOF                              # amortize startup
search ArrayList
get std.ArrayList
EOF
```

## Claude Code skill

```sh
cp -r skills/zigpeek ~/.claude/skills/
```

See [`skills/zigpeek/SKILL.md`](skills/zigpeek/SKILL.md) for the
agent-facing usage.

## License

MIT — see [`LICENSE`](LICENSE) and [`ARCHITECTURE.md`](ARCHITECTURE.md)
for internals.
