[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-75509":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":16,"stars7d":17,"stars30d":18,"stars90d":15,"forks30d":15,"starsTrendScore":19,"compositeScore":20,"rankGlobal":10,"rankLanguage":10,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":24,"hasPages":22,"topics":25,"createdAt":10,"pushedAt":10,"updatedAt":26,"readmeContent":27,"aiSummary":28,"trendingCount":15,"starSnapshotCount":15,"syncStatus":29,"lastSyncTime":30,"discoverSource":31},75509,"deeptide","paean-ai\u002Fdeeptide","paean-ai","Built by DeepSeek, for DeepSeek — a Swift-native macOS coding agent","https:\u002F\u002Fdeeptide.sh",null,"Rust",538,73,48,0,115,165,482,345,99.61,"MIT License",false,"main",true,[],"2026-06-12 04:01:18","\u003Cp align=\"center\">\n  \u003Cimg src=\".\u002Fassets\u002Flogo.svg\" alt=\"DeepTide logo\" width=\"200\">\n\u003C\u002Fp>\n\n\u003Ch1 align=\"center\">DeepTide\u003C\u002Fh1>\n\n\u003Cp align=\"center\">\n  \u003Cstrong>Built by DeepSeek, for DeepSeek.\u003C\u002Fstrong>\u003Cbr>\n  An AI coding agent that flows through your codebase like a tide.\n  \u003Cbr>\u003Csub>The name: \u003Cstrong>DeepSeek\u003C\u002Fstrong> + \u003Cstrong>tide\u003C\u002Fstrong> (terminal IDE).\u003C\u002Fsub>\n\u003C\u002Fp>\n\n\u003Cp align=\"center\">\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpaean-ai\u002Fdeeptide\u002Fblob\u002Fmain\u002FLICENSE\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Flicense-MIT-blue.svg\" alt=\"License: MIT\">\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002Fdeeptide\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fnpm\u002Fv\u002Fdeeptide.svg\" alt=\"npm version\">\u003C\u002Fa>\n  \u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fpaean-ai\u002Fdeeptide\u002Fstargazers\">\u003Cimg src=\"https:\u002F\u002Fimg.shields.io\u002Fgithub\u002Fstars\u002Fpaean-ai\u002Fdeeptide?style=social\" alt=\"GitHub stars\">\u003C\u002Fa>\n\u003C\u002Fp>\n\n---\n\n## Two flavors, same team\n\n| | DeepTide for macOS | DeepTide CLI |\n|---|---|---|\n| **Form factor** | Native macOS app | Cross-platform terminal CLI |\n| **Runtime** | Swift 6 native binary, ~15 MB idle | Bun, ~50 MB resident |\n| **Platforms** | macOS 15+ | Linux · Windows · macOS |\n| **Install** | `curl -fsSL https:\u002F\u002Fdeeptide.sh\u002Finstall.sh \\| sh` | `bun add -g deeptide` (this package) |\n| **Lineage** | 100% authored by DeepSeek V4 | Powered by open-source [Zero CLI](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli) |\n| **Best for** | macOS users who want a tuned native experience | Linux\u002FWindows users, CI, SSH sessions, headless boxes |\n\nThis repository is the **community front door for both** — docs, FAQ, issue\ntracking — and is the home of the npm `deeptide` package that ships the\ncross-platform CLI.\n\nIt also contains the open-source native local inference runtime under\n[`native\u002F`](.\u002Fnative): a hard-forked `ds4` DeepSeek V4 Flash Metal engine plus\n`dsgo`, the local OpenAI\u002FAnthropic-compatible gateway intended to pair with\nDeepTide.\n\n---\n\n## Install on macOS (recommended)\n\nFor Mac users, the recommended path is the native Deeptide build from\n[deeptide.sh](https:\u002F\u002Fdeeptide.sh\u002F). It downloads the signed build for your\nMac architecture and installs both `deeptide` and the shorter `tide` command:\n\n```bash\ncurl -fsSL https:\u002F\u002Fdeeptide.sh\u002Finstall.sh | sh\n```\n\nThen start with:\n\n```bash\ntide auth login   # Paean OAuth, multimodal-aware\ntide login        # or save a DeepSeek API key directly\ntide              # launch the REPL\ntide doctor       # diagnose install + network\n```\n\nIf you want a native Mac terminal to pair with Deeptide, also try\n[Clide](https:\u002F\u002Fclide.app\u002F) — a modern macOS terminal with file explorer,\nmulti-pane layouts, drag-and-drop, and native voice input.\n\n## Install on Linux \u002F Windows (Zero CLI alias)\n\n> **Prerequisite:** [Bun](https:\u002F\u002Fbun.com\u002F) must be installed and on\n> PATH. The CLI runtime requires it (matches the underlying\n> [Zero CLI](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli)). Bun does not\n> replace your Node install — it sits alongside.\n\nOn non-Mac systems, this npm package is the cross-platform DeepTide-flavored\nentrypoint powered by [Zero CLI](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli). It\ninstalls the `deeptide` and `tide` aliases for a workflow close to Deeptide,\nbut it is not the Swift-native macOS build from `deeptide.sh`.\n\n```bash\n# bun (recommended, fastest install)\nbun add -g deeptide\n\n# npm (works too; bun is still required at runtime)\nnpm install -g deeptide\n\n# pnpm\npnpm add -g deeptide\n```\n\nTwo commands are installed; pick whichever your fingers prefer:\n\n```bash\ntide                          # interactive REPL (preferred — short)\ndeeptide                      # same thing, full name\ntide -p \"explain this repo\"   # one-shot mode\ntide --help                   # all options\n```\n\nYou can also install the upstream package directly:\n\n```bash\nbun add -g @paean-ai\u002Fzero-cli\n```\n\n## Build the macOS native app from source\n\nThe macOS native build is open source at\n[paean-ai\u002Fdeeptide](https:\u002F\u002Fgithub.com\u002Fpaean-ai\u002Fdeeptide) (Swift). Most users\nshould install from [deeptide.sh](https:\u002F\u002Fdeeptide.sh\u002F), but source builders can\ninspect and build from the source tree when they need to modify the native\nruntime or local inference components.\n\n---\n\n## Quick start (CLI)\n\nDeepTide CLI talks to the **DeepSeek API** by default (matching the\nDeepTide native app), and can also drive any Anthropic-protocol-compatible\nendpoint via BYOK — Zhipu GLM, Volcengine, Paean, Qwen, Moonshot,\nself-hosted gateways, and so on.\n\n```bash\n# Default path — DeepSeek\nexport DEEPSEEK_API_KEY=\"sk-...\"\ntide\n\n# BYOK to another provider\ntide --base-url https:\u002F\u002Fopen.bigmodel.cn\u002Fapi\u002Fanthropic --api-key \u003CGLM_KEY>\n\n# One-shot, non-interactive\ntide -p \"Explain the auth middleware\"\n```\n\nFor the full configuration surface (settings.json schema, hooks,\npermissions, MCP servers, sub-agents, model aliases) see the upstream\n[Zero CLI README](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli#readme), which is\nthe authoritative reference.\n\n---\n\n## Built-in capabilities\n\nDeepTide is an **agentic** coding assistant — the model plans, calls\ntools, observes results, and adapts. Out of the box:\n\n- **Multi-turn agentic loop** — plan → tool → observe → adapt\n- **Streaming responses** — see the model think and act in real time\n- **30+ built-in tools** — file I\u002FO, shell, web, tasks, MCP, scheduling, sub-agents\n- **25+ slash commands** — `\u002Fstatus`, `\u002Fcost`, `\u002Fdiff`, `\u002Finit`, `\u002Fpermission`, `\u002Fhooks`, …\n- **Permission modes** — default · accept-edits · plan · bypass\n- **Hooks engine** — pre\u002Fpost tool, user-prompt, session, compaction shell hooks\n- **Memory system** — persistent project memory across sessions\n- **Sub-agents from markdown** — define custom agents in your project\n- **Plan mode** — design before you code, get approval before execution\n\nThe tool catalog, slash command set, hook event names, and model\naliases are kept aligned with the macOS native DeepTide app via the\n[`tide-spec`](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli\u002Fblob\u002Fmain\u002Fdocs\u002Ftide-spec.md)\nshared interface contract — your hooks and muscle memory port between\nthe two.\n\n---\n\n## Documentation\n\n- [`tide-spec`](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli\u002Fblob\u002Fmain\u002Fdocs\u002Ftide-spec.md) — shared interface contract: tool catalog, slash commands, CLI flags, hook env vars, model aliases.\n- [Zero CLI docs](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli\u002Ftree\u002Fmain\u002Fdocs) — comprehensive reference for the CLI engine.\n- [DeepTide native source](https:\u002F\u002Fgithub.com\u002Fpaean-ai\u002Fdeeptide) — Swift codebase for the macOS app.\n- [`native\u002F`](.\u002Fnative) — local DeepSeek runtime source: `ds4` inference engine and `dsgo` gateway.\n- [`docs\u002Fdeepseek-v4-flash-q2.md`](.\u002Fdocs\u002Fdeepseek-v4-flash-q2.md) — what the stock local V4 Flash Q2 build is and is not good for, and why deeptide caps it at 64k context. Also covers the higher-fidelity [Q4_K mixed-precision build](.\u002Fdocs\u002Fdeepseek-v4-flash-q2.md#the-q4_k-mixed-precision-local-build) (153 GiB) for hosts with 192 GB+ memory.\n- [`docs\u002Fdeepseek-v4-flash-iq2-asymmetric.md`](.\u002Fdocs\u002Fdeepseek-v4-flash-iq2-asymmetric.md) — dialectical analysis of the asymmetric IQ2_XXS + Q2_K + Q8_0 + F16 quant (80.8 GiB), the size sweet spot for 128 GB Macs and single 80 GB H100 boxes. Walks through what the per-tensor-group precision plan gets right *and* the failure modes it takes on (expert collapse risk, FFN residual contamination, iMatrix dependence).\n\n## Samples\n\n- [`samples\u002Fpixel-roguelike`](.\u002Fsamples\u002Fpixel-roguelike) — a dependency-free\n  HTML Canvas roguelike showcase with editable pixel-art sprites, procedural\n  terrain, responsive mobile controls, combat effects, and a pixel-art preview\n  helper.\n- [`samples\u002Fpixel-backpack-roguelite`](.\u002Fsamples\u002Fpixel-backpack-roguelite) —\n  a pixel backpack roguelite with spatial item planning, merging, artifact\n  forging, autonomous TD-style combat waves, and infinite scaling rewards.\n- [`samples\u002Fdeeptide-deck-template`](.\u002Fsamples\u002Fdeeptide-deck-template) — a\n  responsive HTML presentation deck template for desktop demos, mobile reading,\n  and polished browser-to-PDF export, using Deeptide as the reference product.\n- [`samples\u002Fagent-workbench-template`](.\u002Fsamples\u002Fagent-workbench-template) —\n  a polished coding-agent handoff template for plans, diffs, verification,\n  risks, and PR-ready review notes.\n- [`samples\u002Fagent-brief-template`](.\u002Fsamples\u002Fagent-brief-template) — a\n  professional research and decision brief template for general-agent outputs,\n  option comparisons, evidence matrices, and action plans.\n- [`samples\u002Fvoid-descent`](.\u002Fsamples\u002Fvoid-descent) — a matching pixel-art\n  turn-based dungeon crawler showcase with fog of war, room-and-corridor\n  exploration, floor descent, persistent upgrades, items, and mobile swipes.\n\n## Skills\n\n- [`skills\u002F`](.\u002Fskills) — English, sample-derived agent skills for pixel-art\n  coding, premium visual design, HTML decks, roguelike game loops, casual game\n  systems, responsive Canvas game shells, coding-agent delivery, and research\n  brief workflows.\n\n## Local DeepSeek runtime\n\nThe native runtime source is managed in this repository without changing the npm\npackage install surface. `package.json` uses an explicit `files` allowlist, so\n`native\u002F` is available to GitHub users and source builders but is not packed into\nthe published npm wrapper.\n\nBuild both native components on macOS:\n\n```bash\nnpm run build:native\n```\n\nOr build individually:\n\n```bash\nnpm run build:ds4\nnpm run build:dsgo\n```\n\nSee [`native\u002FREADME.md`](.\u002Fnative\u002FREADME.md), [`native\u002Fds4\u002FREADME.md`](.\u002Fnative\u002Fds4\u002FREADME.md),\nand [`native\u002Fdsgo\u002FREADME.md`](.\u002Fnative\u002Fdsgo\u002FREADME.md) for runtime details.\n\n---\n\n## Reporting issues\n\nOpen an [issue](https:\u002F\u002Fgithub.com\u002Fpaean-ai\u002Fdeeptide\u002Fissues). The new-\nissue form will route you to the right template:\n\n- **CLI bug or feature** — typically forwarded to\n  [`a8e-ai\u002Fzero-cli`](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli) where the CLI\n  code lives, but feel free to start here if you're not sure.\n- **macOS native app** — report here. Please **redact** any sensitive\n  paths, file names, or model output before pasting logs.\n- **Documentation, install, or general questions** — start here.\n- **Security vulnerabilities** — use [private vulnerability reporting](https:\u002F\u002Fgithub.com\u002Fpaean-ai\u002Fdeeptide\u002Fsecurity\u002Fadvisories\u002Fnew), not public issues.\n\n⚠️ **Privacy reminder:** crash logs and console output may contain\nproject paths, file names, environment variable values, or model\noutput. Review before pasting into a public issue. If a report\ngenuinely needs sensitive data, contact the maintainers privately\ninstead.\n\n---\n\n## About this npm package\n\nThe `deeptide` npm package is an intentionally thin redirect to\n[`@paean-ai\u002Fzero-cli`](https:\u002F\u002Fwww.npmjs.com\u002Fpackage\u002F@paean-ai\u002Fzero-cli),\nwhich contains all CLI source code. We publish under both names so users\ncan install whichever feels natural; both resolve to the same binary\nwith the DeepTide brand surface. There is exactly one source of truth\n([`a8e-ai\u002Fzero-cli`](https:\u002F\u002Fgithub.com\u002Fa8e-ai\u002Fzero-cli)) — no\nduplicated implementation.\n\n## License\n\nMIT — see [`LICENSE`](.\u002FLICENSE) and [`NOTICE`](.\u002FNOTICE).\n\nDeepTide is an independent project and is not affiliated with,\nendorsed by, or sponsored by Anthropic, Inc. or DeepSeek (Hangzhou)\nAI Co., Ltd.\n\n---\n\n\u003Cp align=\"center\">\n  \u003Csub>Built with 🐳 by \u003Ca href=\"https:\u002F\u002Fa8e.ai\">a8e\u003C\u002Fa> — for DeepSeek, on every platform.\u003C\u002Fsub>\n\u003C\u002Fp>\n","DeepTide 是由 DeepSeek 构建的 AI 编码助手，专为 macOS 设计，同时也提供跨平台的命令行版本。其核心功能包括通过终端IDE形式智能地协助开发者处理代码库，支持多模态感知认证和本地推理运行时。技术上，macOS 版本采用 Swift 6 原生二进制文件构建，而 CLI 版本则基于 Bun 运行，兼容 Linux、Windows 和 macOS 平台。该项目特别适合追求高效开发体验的 macOS 用户以及需要在 CI\u002FSSH 环境下工作的跨平台开发者使用。",2,"2026-06-11 03:52:58","CREATED_QUERY"]