[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-81318":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":15,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":16,"rankGlobal":10,"rankLanguage":10,"license":17,"archived":18,"fork":18,"defaultBranch":19,"hasWiki":20,"hasPages":18,"topics":21,"createdAt":10,"pushedAt":10,"updatedAt":22,"readmeContent":23,"aiSummary":24,"trendingCount":15,"starSnapshotCount":15,"syncStatus":25,"lastSyncTime":26,"discoverSource":27},81318,"peezy-cli","p0systems\u002Fpeezy-cli","p0systems","A terminal coding agent for real project work.","https:\u002F\u002Fpeezy.p0.systems",null,"TypeScript",22,14,44,0,43.53,"MIT License",false,"main",true,[],"2026-06-12 04:01:32","\u003Cp align=\"center\">\n  \u003Cimg src=\".\u002Fassets\u002Fpeezy-logo.svg\" alt=\"Peezy\" width=\"420\" \u002F>\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  A terminal coding agent for real project work.\n\u003C\u002Fp>\n\n# Peezy CLI\n\nPeezy CLI connects your terminal to the Peezy Agent Gateway. It provides a\nfocused coding-agent workflow with browser login, model discovery, usage\ntracking, repository-aware file mentions, and optional managed tools for image\ngeneration and web research.\n\n## Install\n\n```bash\nnpm install -g @p0systems\u002Fpeezy\npeezy\n```\n\nThe package installs the `peezy` binary.\n\n## Quick Start\n\nSign in with Peezy to get free starter usage through the hosted gateway:\n\n```bash\npeezy login\npeezy auth status\npeezy models\npeezy \"summarize this repo\"\n```\n\nPrefer to use your own provider instead of Peezy login:\n\n```bash\npeezy providers\npeezy config use \u003Cprovider-id>\npeezy config set apiKey \u003Ckey>\npeezy models\n```\n\nRun a single non-interactive prompt:\n\n```bash\npeezy --print \"summarize @src\u002Findex.ts\"\n```\n\n## Peezy Go\n\nPeezy login includes free starter usage through the hosted gateway. Peezy Go\nadds a larger monthly usage allowance, managed image generation, and stronger\ndefault model access. Run `peezy upgrade` or `\u002Fupgrade` inside the TUI to open\nthe Peezy Go dashboard.\n\n## Configuration\n\nThe first run creates `~\u002F.peezy\u002Fconfig.json` with `0600` permissions when the\nfilesystem supports it. Browser login stores a Peezy gateway key in that file.\nDo not commit it.\n\nEnvironment variables can override config values:\n\n- `PEEZY_API_KEY`\n- `PEEZY_BASE_URL`\n- `PEEZY_MODEL`\n- `PEEZY_PROVIDER`\n- `PEEZY_WEB_URL`\n- `OPENAI_API_KEY`\n- `OPENROUTER_API_KEY`\n- `AI_GATEWAY_API_KEY`\n- `VERCEL_OIDC_TOKEN`\n- `CUSTOM_OPENAI_API_KEY`\n\n`PEEZY_API_KEY`, `PEEZY_BASE_URL`, and `PEEZY_MODEL` only apply when the active\nprovider is `peezy`, so they are not sent to OpenAI, OpenRouter, or custom\nproviders.\n\nUseful commands:\n\n```bash\npeezy config show\npeezy config path\npeezy config use openai\npeezy config use vercel\npeezy config set apiKey \u003Ckey>\npeezy providers\npeezy credits\npeezy models\npeezy tools\npeezy mcp\npeezy upgrade\n```\n\nBuilt-in providers are `peezy`, `openai`, `openrouter`, `vercel`, `local`, and\n`custom`. Provider profiles use OpenAI-compatible APIs.\n\n## Provider Support\n\nPeezy CLI supports the Peezy Agent Gateway and providers with\nOpenAI-compatible APIs. This build supports 106 unique provider profiles: 6\nbuilt-ins plus 100 additional runnable providers from the live Models.dev\nfeed. Run `peezy providers` to list configured providers plus the live\nproviders Peezy can actually connect to.\n\nConnect a supported provider:\n\n```bash\npeezy providers\npeezy config use \u003Cprovider-id>\npeezy config set apiKey \u003Ckey>\npeezy models\npeezy config set model \u003Cmodel-id>\n```\n\nFor one-key access to a large multi-provider model catalog, use Vercel AI\nGateway:\n\n```bash\nexport AI_GATEWAY_API_KEY=\u003Ckey>\npeezy config use vercel\npeezy models\npeezy config set model anthropic\u002Fclaude-sonnet-4.6\n```\n\nNative-only provider adapters are not bundled, so providers without an\nOpenAI-compatible API are not shown by `peezy providers`. Use an\nOpenAI-compatible gateway such as Vercel AI Gateway or OpenRouter, or configure\nyour own compatible endpoint with `custom`:\n\n```bash\npeezy config use custom\npeezy config set baseUrl \u003Copenai-compatible-url>\npeezy config set apiKey \u003Ckey>\npeezy models\npeezy config set model \u003Cmodel-id>\n```\n\n## TUI Commands\n\nInside the Peezy TUI:\n\n- `\u002Fmodel` lists available models.\n- `\u002Fmodel \u003Cname>` switches model and starts a fresh thread.\n- `\u002Fcredits` shows current usage.\n- `\u002Ftools` shows available tools.\n- `\u002Fmcp` shows connected MCP tools.\n- `\u002Fupgrade` opens Peezy Go.\n- `@` opens file suggestions.\n\nHeadless prompts also expand file mentions:\n\n```bash\npeezy --print \"explain @src\u002Fconfig.ts\"\n```\n\n## Development\n\n```bash\nnpm install\nnpm run build\nnpm link\npeezy --help\n```\n\nRun from source:\n\n```bash\nnpm run dev -- --help\nnpm run dev -- --print \"summarize this repo\"\n```\n\nUse another provider without Peezy login:\n\n```bash\nOPENAI_API_KEY=\u003Ckey> npm run dev -- --provider openai --print \"summarize this repo\"\n```\n\n## Publishing\n\nBefore publishing:\n\n```bash\nnpm run build\nnpm audit --audit-level=high\nnpm pack --dry-run\n```\n\nThe npm package includes `dist\u002F`, `assets\u002F`, `README.md`, `SECURITY.md`,\n`LICENSE`, and `package.json`.\n\n## Security\n\nDo not commit `~\u002F.peezy\u002Fconfig.json`, API keys, access tokens, or local `.env`\nfiles. See [SECURITY.md](.\u002FSECURITY.md) for reporting guidance.\n\n## License\n\nMIT\n","Peezy CLI 是一个面向实际项目工作的终端编码代理工具。它通过连接到Peezy Agent Gateway，为用户提供了一个专注于编码的工作流程，包括浏览器登录、模型发现、使用跟踪、仓库感知文件引用等功能，并可选地支持图像生成和网络研究的管理工具。采用TypeScript编写，具有良好的扩展性和兼容性，支持多种OpenAI兼容API的服务提供商。适用于需要提高开发效率、简化代码管理和自动化处理任务的软件开发场景。",2,"2026-06-11 04:04:36","CREATED_QUERY"]