{
  "version": "https://jsonfeed.org/version/1", 
  "title": "\u5206\u4eab\u53d1\u73b0", 
  "description": "\u5206\u4eab\u4f60\u770b\u5230\u7684\u597d\u73a9\u7684\uff0c\u6709\u4fe1\u606f\u91cf\u7684\uff0c\u6b22\u8fce\u4ece\u8fd9\u91cc\u83b7\u53d6\u7075\u611f\u3002", 
  "home_page_url": "https://www.v2ex.com/go/share", 
  "feed_url": "https://www.v2ex.com/feed/share.json", 
  "icon": "https://cdn.v2ex.com/navatar/c74d/97b0/16_large.png?m=1727584731", 
  "favicon": "https://cdn.v2ex.com/navatar/c74d/97b0/16_normal.png?m=1727584731", 
  "items": [
    {
      "author": {
        "url": "https://www.v2ex.com/member/matters", 
        "name": "matters", 
        "avatar": "https://cdn.v2ex.com/gravatar/24fe424a759aa822ce7e5d270a4664b8?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1206367", 
      "title": "\u7528\u56de\u6d4b\u7b5b\u9009\u56e0\u5b50\u7684\u4e00\u70b9\u7ecf\u9a8c\u5206\u4eab", 
      "id": "https://www.v2ex.com/t/1206367", 
      "date_published": "2026-04-16T07:40:23+00:00", 
      "content_html": "<p>\u6211\u5728\u505a\u91cf\u5316\u4ea4\u6613\uff0c\u4e5f\u81ea\u5df1\u505a\u56e0\u5b50\u56de\u6d4b\uff0c\u524d\u524d\u540e\u540e\u8bd5\u8fc7\u4e0d\u5c11\u56e0\u5b50\uff0c\u771f\u6b63\u80fd\u957f\u671f\u7528\u7684\uff0c\u5176\u5b9e\u4e0d\u591a\u3002\u521a\u5165\u95e8\u7684\u65f6\u5019\u5f88\u7b80\u5355\uff1a</p>\n<ul>\n<li>\n<p>\u770b\u522b\u4eba\u8bf4\u52a8\u91cf\u6709\u6548 \u2192 \u505a\u52a8\u91cf</p>\n</li>\n<li>\n<p>\u770b\u7814\u62a5\u8bf4\u4f4e\u6ce2\u52a8\u597d \u2192 \u52a0\u4f4e\u6ce2\u52a8</p>\n</li>\n</ul>\n<p>\u7ed3\u679c\u5c31\u662f\uff1a</p>\n<p>\u56de\u6d4b\u770b\u7740\u8fd8\u884c\uff0c\u4e00\u5b9e\u76d8\u5c31\u4e0d\u7a33\u5b9a\u3002</p>\n<p>\u540e\u6765\u624d\u660e\u767d\uff0c\u56e0\u5b50\u4e0d\u662f\u201c\u770b\u8d77\u6765\u5bf9\u201d\uff0c\u800c\u662f\u201c\u6570\u636e\u4e0a\u6210\u7acb\u201d\u3002</p>\n<p><strong>\u6211\u73b0\u5728\u7684\u505a\u6cd5\uff1a</strong></p>\n<p>\u6d41\u7a0b\u4e00\u76f4\u6ca1\u53d8\uff1a</p>\n<ol>\n<li>\n<p>\u62c9\u6570\u636e</p>\n</li>\n<li>\n<p>\u7b97\u56e0\u5b50</p>\n</li>\n<li>\n<p>\u5206\u7ec4</p>\n</li>\n<li>\n<p>\u770b\u672a\u6765\u6536\u76ca</p>\n</li>\n<li>\n<p>\u7b97 IC</p>\n</li>\n</ol>\n<p>\u65b9\u6cd5\u5f88\u6734\u7d20\uff0c\u751a\u81f3\u6709\u70b9\u8001\uff0c\u4f46\u4e00\u76f4\u591f\u7528\u3002</p>\n<p><strong>\u6570\u636e</strong></p>\n<pre><code class=\"language-python\">import requests\n\nimport pandas as pd\n\ndef get\\_kline(symbol):\n\n\u00a0\u00a0\u00a0\u00a0url = \"https://api.alltick.co/v1/market/kline\"\n\n\u00a0\u00a0\u00a0\u00a0params = {\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\"symbol\": symbol,\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\"interval\": \"1d\",\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\"apikey\": \"your\\_api\\_key\"\n\n\u00a0\u00a0\u00a0\u00a0}\n\n\u00a0\u00a0\u00a0\u00a0data = requests.get(url, params=params).json()\\[\"data\"\\]\n\n\u00a0\u00a0\u00a0\u00a0return pd.DataFrame(data)\n</code></pre>\n<p><strong>\u6700\u7b80\u5355\u7684\u56e0\u5b50\uff1a\u52a8\u91cf</strong></p>\n<pre><code class=\"language-python\">def momentum(df, n=20):\n\n\u00a0\u00a0\u00a0\u00a0df\\[\"ret\"\\] = df\\[\"close\"\\].pct\\_change(n)\n\n\u00a0\u00a0\u00a0\u00a0return df\n</code></pre>\n<p>\u8fd9\u4e2a\u4e1c\u897f\u73b0\u5728\u770b\u633a\u57fa\u7840\u7684\uff0c\u4f46\u4e0d\u5f71\u54cd\u7528\u3002</p>\n<p><strong>\u56de\u6d4b\uff1a\u5206\u7ec4 + IC</strong></p>\n<pre><code class=\"language-python\">def backtest(df):\n\n\u00a0\u00a0\u00a0\u00a0df = df.dropna()\n\n\u00a0\u00a0\u00a0\u00a0df\\[\"rank\"\\] = pd.qcut(df\\[\"ret\"\\], 5, labels=False)\n\n\u00a0\u00a0\u00a0\u00a0return df.groupby(\"rank\")\\[\"close\"\\].pct\\_change().shift(-1).mean()\n\ndef ic(df):\n\n\u00a0\u00a0\u00a0\u00a0df\\[\"fut\"\\] = df\\[\"close\"\\].pct\\_change().shift(-1)\n\n\u00a0\u00a0\u00a0\u00a0return df\\[\"ret\"\\].corr(df\\[\"fut\"\\])\n</code></pre>\n<p>\u91cd\u70b9\u5c31\u4e24\u4e2a\uff1a</p>\n<ul>\n<li>\n<p>\u9ad8\u5206\u7ec4\u662f\u4e0d\u662f\u66f4\u8d5a\u94b1</p>\n</li>\n<li>\n<p>IC \u662f\u5426\u7a33\u5b9a</p>\n</li>\n</ul>\n<p><strong>\u4e00\u4e9b\u5751\uff5e\uff5e\uff5e</strong></p>\n<p><strong>1. \u672a\u6765\u51fd\u6570\uff1a</strong>\u8fd9\u4e2a\u5f88\u81f4\u547d\uff0c\u770b\u8d77\u6765\u6ca1\u95ee\u9898\uff0c\u5176\u5b9e\u5df2\u7ecf\u4f5c\u5f0a\u4e86\u3002</p>\n<p><strong>2. \u8fc7\u62df\u5408\uff1a</strong>\u8c03\u53c2\u6570\u8c03\u5230\u201c\u5b8c\u7f8e\u201d\uff0c\u6362\u4e00\u6bb5\u65f6\u95f4\u76f4\u63a5\u5931\u6548\u3002</p>\n<p><strong>3. \u56e0\u5b50\u5931\u6548\uff1a</strong>\u957f\u671f\u662f\u53ef\u80fd\u6709\u6548\u7684\uff0c\u4f46\u77ed\u671f\u5b8c\u5168\u4e0d\u4e00\u5b9a\u3002\u6211\u4e5f\u7ecf\u5386\u8fc7\u521a\u4e0a\u7ebf\u5c31\u8fde\u7eed\u56de\u64a4\u7684\u9636\u6bb5\u3002\u5982\u679c\u4f60\u6b63\u597d\u5728\u56e0\u5b50\u5931\u6548\u671f\u5f00\u59cb\u7528\uff0c\u5f88\u5bb9\u6613\u76f4\u63a5\u653e\u5f03\u3002</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/abc0123xyz", 
        "name": "abc0123xyz", 
        "avatar": "https://cdn.v2ex.com/avatar/b2d3/f02a/506371_large.png?m=1760332680"
      }, 
      "url": "https://www.v2ex.com/t/1206319", 
      "date_modified": "2026-04-16T05:12:08+00:00", 
      "content_html": "<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/fMPwP7B.png\"/>\n\u73b0\u5728\u53ea\u80fd api \u8c03\u7528<br/>\ncoding \u5957\u9910\u73b0\u5728\u8fd8\u4e0d\u652f\u6301\uff0c\u4e0d\u77e5\u9053\u4ee5\u540e\u4f1a\u4e0d\u4f1a\u4e0a</p>\n", 
      "date_published": "2026-04-16T05:11:37+00:00", 
      "title": "\u963f\u91cc\u767e\u70bc\u5e73\u53f0\u4e0a glm5.1 \u4e86", 
      "id": "https://www.v2ex.com/t/1206319"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/gnn707288044", 
        "name": "gnn707288044", 
        "avatar": "https://cdn.v2ex.com/gravatar/6b2f29e8156a4726dce5e9129c275d9a?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1206295", 
      "title": "\u82b1\u4e86\u4e24\u5468\u6574\u7406\u4e86\u4e00\u4efd\u6bd4\u7279\u6d4f\u89c8\u5668\uff08BitBrowser\uff09\u4e2d\u6587\u6307\u5357\uff0c\u4ece\u4e0b\u8f7d\u5230\u6307\u7eb9\u9632\u5173\u8054\u5168\u8986\u76d6", 
      "id": "https://www.v2ex.com/t/1206295", 
      "date_published": "2026-04-16T03:34:23+00:00", 
      "content_html": "<p>\u6700\u8fd1\u5728\u7814\u7a76\u591a\u8d26\u53f7\u7ba1\u7406\u7684\u65b9\u6848\uff0c\u7528\u4e86\u4e00\u5708\u6307\u7eb9\u6d4f\u89c8\u5668\uff0c\u6700\u540e\u89c9\u5f97\u6bd4\u7279\u6d4f\u89c8\u5668\uff08 BitBrowser \uff09\u7684\u7efc\u5408\u4f53\u9a8c\u6700\u597d\uff0c\u4f46\u5b83\u7684\u5b98\u65b9\u6587\u6863\u504f\u82f1\u6587\u3001\u793e\u533a\u91cc\u4e2d\u6587\u8d44\u6e90\u4e5f\u5f88\u5206\u6563\u3002</p>\n<p>\u7d22\u6027\u81ea\u5df1\u505a\u4e86\u4e00\u4e2a\u4e2d\u6587\u7ad9\uff0c\u628a\u6838\u5fc3\u5185\u5bb9\u7cfb\u7edf\u6574\u7406\u4e86\u4e00\u904d\uff0c\u5206\u4eab\u7ed9\u6709\u7c7b\u4f3c\u9700\u6c42\u7684\u670b\u53cb\u3002</p>\n<p>\u5185\u5bb9\u76ee\u524d\u8986\u76d6\u8fd9\u4e9b\uff1a</p>\n<p>\u4e0b\u8f7d\u4e0e\u5b89\u88c5 Windows / macOS \u5404\u7248\u672c\u4e0b\u8f7d\u6307\u5f15\uff0c\u4ee5\u53ca Android \u4e91\u624b\u673a\u6a21\u5f0f\u600e\u4e48\u5f00\u901a</p>\n<p>\u6307\u7eb9\u9632\u5173\u8054\u539f\u7406 \u6d4f\u89c8\u5668\u6307\u7eb9\u5305\u542b\u54ea\u4e9b\u53c2\u6570\u3001\u6bd4\u7279\u6d4f\u89c8\u5668\u600e\u4e48\u6a21\u62df\u3001100+ \u53ef\u914d\u7f6e\u9879\u5206\u522b\u8d77\u4ec0\u4e48\u4f5c\u7528</p>\n<p>\u591a\u8d26\u53f7\u7ba1\u7406\u5b9e\u64cd \u6279\u91cf\u5bfc\u5165\u5bfc\u51fa\u8d26\u53f7\u3001\u5206\u7ec4\u7ba1\u7406\u3001\u4ee3\u7406 IP \u7ed1\u5b9a\u3001\u7a97\u53e3\u73af\u5883\u914d\u7f6e\u7684\u5b8c\u6574\u6d41\u7a0b</p>\n<p>\u81ea\u52a8\u5316\u5bf9\u63a5 Selenium / Puppeteer / Playwright \u4e09\u79cd\u65b9\u6848\u7684\u63a5\u5165\u6559\u7a0b\uff0c\u9644\u793a\u4f8b\u4ee3\u7801</p>\n<p>\u4ee3\u7406\u8bbe\u7f6e \u4f4f\u5b85\u4ee3\u7406 / \u6570\u636e\u4e2d\u5fc3\u4ee3\u7406 / SOCKS5 \u7684\u914d\u7f6e\u65b9\u6cd5\uff0c\u4ee5\u53ca\u4e0d\u540c\u4e1a\u52a1\u573a\u666f\u7684\u9009\u578b\u5efa\u8bae</p>\n<p>\u5bf9\u6bd4\u8bc4\u6d4b \u6bd4\u7279\u6d4f\u89c8\u5668 vs AdsPower vs Multilogin vs GoLogin \uff0c\u4ece\u4ef7\u683c\u3001\u529f\u80fd\u3001\u9632\u5173\u8054\u7387\u51e0\u4e2a\u7ef4\u5ea6\u505a\u4e86\u6a2a\u5411\u5bf9\u6bd4</p>\n<p>\u7ad9\u662f BitBrowser \u4e2d\u6587\u6307\u5357\uff08 <a href=\"http://bitbrowser-download.com\" rel=\"nofollow\">bitbrowser-download.com</a> \uff09\uff0c\u6bcf\u7bc7\u57fa\u672c 3000 \u5b57\u4ee5\u4e0a\uff0c\u914d\u4e86\u64cd\u4f5c\u622a\u56fe\u3002</p>\n<p>\u5982\u679c\u6709\u5185\u5bb9\u4e0a\u7684\u5efa\u8bae\u6216\u8005\u89c9\u5f97\u8fd8\u7f3a\u4ec0\u4e48\u677f\u5757\uff0c\u6b22\u8fce\u7559\u8a00\uff0c\u6301\u7eed\u66f4\u65b0\u4e2d \ud83d\udc40</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/frank1256", 
        "name": "frank1256", 
        "avatar": "https://cdn.v2ex.com/avatar/66bc/2161/566515_large.png?m=1773026648"
      }, 
      "url": "https://www.v2ex.com/t/1206264", 
      "date_modified": "2026-04-16T03:59:20+00:00", 
      "content_html": "<p>\u5f53\u4e2a\u7b11\u8bdd\u770b\u770b</p>\n<p>\u65e9\u4e0a\u7a81\u7136\u6709 tg \u79c1\u4fe1,\u56fd\u9645\u53cb\u4eba\u627e\u6211\u4e0a\u73ed\uff1f\u4f60\u8bf4\u7684\u8fd9\u4e9b\u6211\u4e5f\u4e0d\u4f1a\u554a\u3002</p>\n<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/EjLEogE.png\"/></p>\n<p>\u6211\u5f88\u597d\u5947\u4ed6\u548b\u77e5\u9053\u7684 v2ex</p>\n<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/L7K5oHk.png\"/></p>\n<p>\u201c\u8bfd\u8c24\uff0c\u8bfd\u8c24\u554a\u201d\u3002\u6211\u4eec\u90fd\u662f\u6b63\u7ecf\u7a0b\u5e8f\u5458\u300280$,\u6211\u8981\u72e0\u72e0\u8d5a\u91d1\u5e01\u3002\u53d1\u5bb6\u81f4\u5bcc\ud83d\ude00.</p>\n<p>\u4f46\u662f\u6ca1\u6709 gpt \u7684\u622a\u56fe\uff0c\u4e4b\u524d\u770b\u8fc7 openai \u7684\u4e00\u4e2a\u89c6\u9891\u201cai \u5b89\u5168\u65b9\u9762\u7684\u201d\u3002\u8fd9\u79cd\u8bfd\u8c24\uff0c\u597d\u50cf\u548c 315 \u90a3\u4e2a\u7ed9 ai \u6295\u6bd2\u5dee\u4e0d</p>\n<p>\u591a\u3002\u8fd8\u6709\u4e4b\u524d\u542c\u8fc7\u4e00\u4e2a\u64ad\u5ba2\uff0c\u597d\u50cf\u662f\u9752\u5c11\u5e74\u548c gemini \u804a\u5929\uff0c\u6700\u540e\u81ea\u6740\u7684\u3002</p>\n<p>\u611f\u53f9\uff0c\u73b0\u5728\u65f6\u4ee3\u8fdb\u5316\u7684\u771f\u5feb\uff0c\u6ca1 ai \u5df2\u7ecf\u8fc7\u4e0d\u4e0b\u65e5\u5b50\u4e86\u3002\u65b9\u65b9\u9762\u9762\u90fd\u662f ai \u3002\u4f46\u4e0d\u77e5\u9053 ai \u5185\u5bb9\u662f\u5426\u5b89\u5168\u6b63\u786e\uff0c\u666e\u901a\u4eba\u53c8\u5e94\u8be5\u600e\u4e48\u5206\u8fa8\u5462\u3002</p>\n<p>\u4e4b\u524d\u5728\u65e9\u5496\u5561\u64ad\u5ba2\u542c\u5230\u4e00\u7bc7\u201cai \u5f53\u4e0b\u5982\u4f55\u4fdd\u6301\u81ea\u5df1\u5224\u65ad\u201d\u3002\u63d0\u5230\u4e3b\u8981\u662f\u591a\u53cd\u95ee ai \uff0c\u4f46\u5bf9\u4e8e\u628a ai \u5f53\u641c\u7d22\u5f15\u64ce\u83b7\u53d6\u77e5\u8bc6\u548c\u4fe1\u606f\u7684\u65f6\u5019\uff0c\u53ea\u80fd\u5b8c\u5168\u76f8\u4fe1\u5b83\u4e86\u3002</p>\n", 
      "date_published": "2026-04-16T02:26:29+00:00", 
      "title": "v2ex \u662f good hacker for spamming program \ud83e\udd23", 
      "id": "https://www.v2ex.com/t/1206264"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Jas0nG", 
        "name": "Jas0nG", 
        "avatar": "https://cdn.v2ex.com/gravatar/d729ff106535d493b4f174073d5a548c?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1206261", 
      "title": "\u6211\u53d1\u73b0\u652f\u4ed8\u5b9d\u65b0\u63a8\u51fa\u7684 AClaw \u80fd\u591f\u89e3\u51b3\u8d26\u5355\u81ea\u52a8\u5bfc\u51fa\u7684\u96be\u9898\uff01", 
      "id": "https://www.v2ex.com/t/1206261", 
      "date_published": "2026-04-16T02:14:37+00:00", 
      "content_html": "<p>\u524d\u4e24\u5929\u5c31\u770b\u5230\u4e86\u8fd9\u4e2a AClaw \u7684\u65b0\u95fb\uff0c\u4eca\u5929\u7ec8\u4e8e\u7070\u5ea6\u5230\u6211\u7684\u8d26\u53f7\u4e86\u3002\u6d4b\u8bd5\u4e86\u4e00\u4e0b\uff0c\u53d1\u73b0\u76ee\u524d\u548c\u8d44\u91d1\u76f8\u5173\u7684\u7279\u6027\u5982\u4e0b\uff1a  </p>\n<ol>\n<li>\u4e0d\u80fd\u67e5\u8be2\u8d26\u6237\u4f59\u989d\u3001\u57fa\u91d1\u8d2d\u4e70\u6570\u636e\u7b49\u4fe1\u606f\u3002  </li>\n<li>\u53ef\u4ee5\u63d0\u53d6\u8d26\u5355\u4fe1\u606f\uff0c\u6bcf\u6b21\u6700\u591a\u4e09\u5341\u5929\uff0c\u4f46\u662f\u53ef\u4ee5\u4f9d\u9760\u4e0a\u4e0b\u6587\u591a\u6b21\u63d0\u53d6\u3002  </li>\n<li>\u63d0\u4f9b\u4e86\u4e00\u4e9b\u5185\u7f6e skills \uff0c\u91cd\u70b9\u662f\u53ef\u4ee5\u8bbe\u7f6e\u5b9a\u65f6\u4efb\u52a1\uff01</li>\n</ol>\n<p>\u7136\u540e\u6211\u8bd5\u4e86\u4e0b curl \u529f\u80fd\uff0c\u53d1\u73b0\u5b83\u786e\u5b9e\u662f\u4e00\u4e2a\u8fd0\u884c\u5728\u4e91\u670d\u52a1\u5668\u7684\u5b8c\u6574 agent \uff0c\u662f\u80fd\u53d1\u51fa\u8bf7\u6c42\u7684\uff01</p>\n<p>\u6240\u4ee5\u53ef\u4ee5\u8ba9\u5176\u521b\u5efa\u5b9a\u65f6\u4efb\u52a1\uff0c\u6bcf\u5929\u65e9\u4e0a\u5c06\u524d\u4e00\u5929\u7684\u8d26\u5355\u901a\u8fc7 webhook POST \u51fa\u6765\u3002\u3002\u3002 \u6211\u672c\u6765\u89c9\u5f97\u8fd9\u79cd\u64cd\u4f5c\u4f1a\u88ab\u5c4f\u853d\uff0c\u4f46\u662f\u6ca1\u60f3\u5230\u771f\u7684\u6210\u4e86\uff01  </p>\n<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/Yd7UP0J.png\"/> </p>\n<p>\u636e\u6211\u6d45\u8584\u7684\u8ba4\u77e5\uff0c\u76ee\u524d\u7684\u8bb0\u8d26\u8f6f\u4ef6\u90fd\u662f\u201c\u534a\u81ea\u52a8\u201d\u7684\uff0c\u9700\u8981\u4f9d\u8d56\u5feb\u6377\u6307\u4ee4\u89e6\u53d1\u622a\u56fe \u7136\u540e OCR \u76f8\u5173\u4fe1\u606f\u8fdb\u884c\u8bb0\u5f55\uff0c\u4e5f\u96be\u4ee5\u8f6c\u53d1\u5230\u7b2c\u4e09\u65b9\u5e73\u53f0\u3002\u8fd9\u4e2a AClaw \u5982\u679c\u80fd\u7a33\u5b9a\u63d0\u4f9b\u8fd9\u4e2a\u529f\u80fd\uff0c\u90a3\u7ec8\u4e8e\u89e3\u51b3\u4e86\u8d26\u5355\u5bfc\u51fa\u8fd9\u4e2a\u8001\u5927\u96be\u7684\u95ee\u9898\uff01</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/MuskZhou", 
        "name": "MuskZhou", 
        "avatar": "https://cdn.v2ex.com/gravatar/95bc07d865881eee42210e2ac00fdad3?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1206254", 
      "date_modified": "2026-04-16T01:55:30+00:00", 
      "content_html": "<p>\u4e0b\u8f7d\u5730\u5740\uff1agemini.google/mac\n<img alt=\"1\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/ZPxuKcM.jpeg\"/>\n\u9875\u9762\u6548\u679c\u624d\u7528\u4e86 Apple \u5f3a\u5236\u8981\u6c42\u7684\u6bdb\u73bb\u7483\u6548\u679c\n<img alt=\"1\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/srEnCJG.png\"/>\n\u4ee5\u53ca\u4e0d\u77e5\u51fa\u4e8e\u4f55\u79cd\u5fc3\u6001\u7684\u4e00\u4e2a\u591a\u8d26\u53f7\u529f\u80fd\n<img alt=\"1\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/YPlCiTC.png\"/></p>\n", 
      "date_published": "2026-04-16T01:53:56+00:00", 
      "title": "\u6162\u8baf\uff0c Gemini \u63a8\u51fa Mac \u5ba2\u6237\u7aef", 
      "id": "https://www.v2ex.com/t/1206254"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/pch18", 
        "name": "pch18", 
        "avatar": "https://cdn.v2ex.com/gravatar/6ad955497fcd834cfc61cb17523496bf?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1206201", 
      "date_modified": "2026-04-15T15:01:37+00:00", 
      "content_html": "<h1>NginxMaster  [\u53ef\u89c6\u5316 Nginx \u7ba1\u7406\u9762\u677f]</h1>\n<p>Github \u5730\u5740\uff1a <a href=\"https://github.com/pch18/nginxMaster\" rel=\"nofollow\">https://github.com/pch18/nginxMaster</a> </p>\n<p>\u6b22\u8fce Issue &amp; PR \uff01\uff08\u540c\u6c42 git \u4ed3\u5e93\u70b9\u4eae\u5c0f\u661f\u661f\u2b50\ufe0f\uff09</p>\n<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/1eXCEva.png\"/> </p>\n<h2>\u7b80\u4ecb</h2>\n<ul>\n<li>\u652f\u6301\u914d\u7f6e: \u53cd\u5411\u4ee3\u7406, \u9759\u6001\u9875\u9762, \u91cd\u5b9a\u5411 \u7b49</li>\n<li>\u4fdd\u5b58\u81ea\u52a8\u6821\u9a8c\uff0c\u5931\u8d25\u81ea\u52a8\u56de\u6eda\uff0c\u786e\u4fdd Nginx \u670d\u52a1\u4e0d\u4e2d\u65ad</li>\n<li>\u53ef\u4ee5\u7ba1\u7406 SSL \u8bc1\u4e66\uff0c\u81ea\u52a8\u8bc6\u522b\u8bc1\u4e66\u5185\u5bb9\uff0c\u6821\u9a8c\u5408\u6cd5\u6027\uff08\u81ea\u52a8\u7eed\u7b7e\u5f85\u5f00\u53d1\uff09</li>\n<li>\u5b9e\u65f6\u8bf7\u6c42\u52a8\u6001\u5c55\u793a\uff08\u57fa\u4e8e SSE \u5b9e\u73b0\uff09\uff0c\u4ee5\u53ca CPU \u3001\u5185\u5b58\u3001\u7f51\u7edc\u76d1\u63a7</li>\n<li>\u66f4\u591a\u529f\u80fd\u5f00\u53d1\u4e2d</li>\n</ul>\n<h2>\u767b\u5f55\u65b9\u5f0f</h2>\n<ul>\n<li>\u9ed8\u8ba4\u8fde\u63a5\u5730\u5740: http://IP:9999</li>\n<li>\u9ed8\u8ba4\u7528\u6237\u540d: admin</li>\n<li>\u9ed8\u8ba4\u5bc6\u7801: admin9999</li>\n</ul>\n<h2>docker \u5b89\u88c5\u547d\u4ee4:</h2>\n<p>\uff08\u4e8c\u9009\u4e00\uff09</p>\n<pre><code>docker run -d --name nginx-master --net=host --restart always pch18/nginx-master\n</code></pre>\n<pre><code>docker run -d --name nginx-master -p 9999:9999 -p 443:443 -p 80:80 --restart always pch18/nginx-master\n</code></pre>\n<p>\u652f\u6301\u591a\u67b6\u6784\uff0camd64, arm64 \u7b49\uff0c\u5982\u679c\u7f3a\u4e86\u67d0\u4e2a\u67b6\u6784\u7684\u6784\u5efa\uff0c\u8bf7\u63d0 issue</p>\n<h2>\u88f8\u673a\u5b89\u88c5\u547d\u4ee4\uff08\u524d\u63d0\u5b89\u88c5\u5b8c nginx \uff09</h2>\n<p>\uff08\u4e8c\u9009\u4e00\uff09</p>\n<pre><code>curl -fsSL https://raw.githubusercontent.com/pch18/nginxMaster/refs/heads/main/install.debian | sudo bash\n</code></pre>\n<pre><code>wget -qO- https://raw.githubusercontent.com/pch18/nginxMaster/refs/heads/main/install.debian | sudo bash\n</code></pre>\n", 
      "date_published": "2026-04-15T14:52:29+00:00", 
      "title": "\u5206\u4eab\u4e00\u4e2a\u81ea\u5df1\u505a\u7684 Nginx \u53ef\u89c6\u5316\u914d\u7f6e\u5de5\u5177\uff0c\u5b9e\u65f6\u8bf7\u6c42\u52a8\u6001\u9884\u89c8\uff01 [\u5b9e\u6d4b\u751f\u4ea7\u73af\u5883\u7a33\u5b9a\u8fd0\u884c\u534a\u5e74\u4ee5\u4e0a\u6ca1\u6bdb\u75c5]", 
      "id": "https://www.v2ex.com/t/1206201"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/lyxxxh2", 
        "name": "lyxxxh2", 
        "avatar": "https://cdn.v2ex.com/avatar/683e/710d/583505_large.png?m=1776159443"
      }, 
      "url": "https://www.v2ex.com/t/1206171", 
      "date_modified": "2026-04-15T12:13:29+00:00", 
      "content_html": "<p>\u65e9\u4e0a\u770b\u4e86\u4e0b claude \u6587\u6863,\u53d1\u73b0 claude \u6709\u4e2a<code>\u4f1a\u8bdd\u56e2\u961f</code>\u3002</p>\n<p>\u60f3\u7740\u80fd\u4e0d\u80fd\u89e3\u51b3\u6211\u524d\u540e\u8054\u8c03\u95ee\u9898(\u56e0\u4e3a\u5c31\u6211\u4e00\u4e2a\u4eba)\u3002</p>\n<p>\u6bcf\u6b21\u8ba9\u540e\u7aef claude \u51fa api,\u518d\u53d1\u7ed9\u524d\u7aef claude... \u633a\u70e6\u4eba\u7684\u3002</p>\n<p>\u6587\u6863:<a href=\"https://code.claude.com/docs/zh-CN/agent-teams#%E6%8E%A7%E5%88%B6%E4%BD%A0%E7%9A%84-agent-team\" rel=\"nofollow\">https://code.claude.com/docs/zh-CN/agent-teams#%E6%8E%A7%E5%88%B6%E4%BD%A0%E7%9A%84-agent-team</a></p>\n<p>\u53c2\u8003\u8d44\u6599:<a href=\"https://zhuanlan.zhihu.com/p/2004486603343671752\" rel=\"nofollow\">https://zhuanlan.zhihu.com/p/2004486603343671752</a></p>\n<h2>\u540e\u7aef\u4ee3\u7801\u540c\u6b65</h2>\n<p>\u56e0\u4e3a\u4e0d\u652f\u6301\u8de8\u670d\u52a1\u5668,\u53ea\u80fd\u5c06\u670d\u52a1\u5668\u4ee3\u7801\u540c\u6b65\u5230\u672c\u5730\u7535\u8111\u3002</p>\n<ol>\n<li>\u4e0b\u8f7d rclone</li>\n<li>rclone.exe \u653e\u5230\u5168\u5c40\u8def\u5f84</li>\n<li>rclone config create xxx sftp host=<a href=\"http://192.168.50.xxx\" rel=\"nofollow\">192.168.50.xxx</a> user=xxx  key_file=\"C:\\Users\\Administrator.ssh\\id_rsa\"</li>\n<li>rclone mount xxx:/media/xxx/code/xxx C:\\Users\\Administrator\\code\\xxx --vfs-cache-mode writes  // \u6302\u8f7d\u5230 C:\\Users\\Administrator\\code\\xxx </li>\n</ol>\n<p>\u6211 claude_run.bat</p>\n<pre><code>set http_proxy=http://127.0.0.1:9999\nset https_proxy=http://127.0.0.1:9999\nfnm use 24 &amp;&amp; claude --dangerously-skip-permissions --add-dir=C:\\Users\\Administrator\\code\\xxxt %* \n</code></pre>\n<p>\u4f46\u662f\u53ea\u80fd\u6539\u4ee3\u7801,\u6ca1\u6cd5\u6267\u884c\u670d\u52a1\u5668\u547d\u4ee4,\u53ef\u4ee5\u518d\u5199\u4e2a skill \u3002</p>\n<h2>\u63d0\u793a\u8bcd</h2>\n<pre><code>\n\u521b\u5efa\u4e00\u4e2a\u4e09\u4eba\u56e2\u961f\u3002\nC:\\Users\\Administrator\\code\\xxx \u662f\u540e\u7aef\u4ee3\u7801\u3002\n\u961f\u53cb 1:\u67b6\u6784\u5e08,\u53ea\u8d1f\u8d23\u8bbe\u8ba1\u65b9\u6848\n\u961f\u53cb 2:\u5c0f\u7a0b\u5e8f\u7aef\n\u961f\u53cb 3:\u540e\u7aef\n\n## \u9700\u6c42\nxxx\n\u524d\u7aef\u7684 ai \u521b\u5efa\u5546\u54c1:src\\pages2\\goods\\aiCreate.mpx\n\u540e\u7aef:\u4e0d\u6653\u5f97\u7684\u90a3\u4e2a \u81ea\u5df1\u770b\u3002\n\n\u9700\u8981\u5148\u51fa\u65b9\u6848,\u8ba9\u6211\u786e\u5b9a\u3002\n \u961f\u53cb 1,\u4f60\u770b\u770b\u600e\u4e48\u8bbe\u8ba1\n...\n</code></pre>\n<h2>\u7ed3\u679c</h2>\n<p>\u624b\u7a7a\u95f2\u4e86,\u56e0\u4e3a\u4e0d\u7528\u4e00\u76f4\u8ddf\u524d\u7aef\u8bf4:\u540e\u7aef\u6587\u6863\u662f xxx \u3002</p>\n<p>\u4f46\u662f token \u6d88\u8017\u66f4\u591a\u4e86,\u4e24\u4e2a claude pro \u7684 4 \u5c0f\u65f6\u989d\u5ea6\u7528\u5b8c\u4e86\u3002</p>\n", 
      "date_published": "2026-04-15T12:09:52+00:00", 
      "title": "claude code \u4f1a\u8bdd\u56e2\u961f", 
      "id": "https://www.v2ex.com/t/1206171"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/dreamingms", 
        "name": "dreamingms", 
        "avatar": "https://cdn.v2ex.com/avatar/c325/44c9/278192_large.png?m=1771741323"
      }, 
      "url": "https://www.v2ex.com/t/1206162", 
      "title": "hermes \u6284\u88ad\u4e2d\u56fd\u56e2\u961f EvoMap \u7684\u5f00\u6e90\u5f15\u64ce Evolver", 
      "id": "https://www.v2ex.com/t/1206162", 
      "date_published": "2026-04-15T11:03:34+00:00", 
      "content_html": "<p><a href=\"https://evomap.ai/zh/blog/hermes-agent-evolver-similarity-analysis\" rel=\"nofollow\">https://evomap.ai/zh/blog/hermes-agent-evolver-similarity-analysis</a> </p>\n<p>[\u65b0\u667a\u5143\u5bfc\u8bfb] \u70b8\u88c2\uff01 GitHub \u72c2\u63fd 8.5 \u4e07 Star \u7684 Hermes Agent \u7adf\u662f\u6284\u88ad\uff1f\u7845\u8c37\u77e5\u540d AI \u5b9e\u9a8c\u5ba4 Nous Research \u7684\u660e\u661f\u9879\u76ee\uff0c\u88ab\u6307\u63a7\u6574\u5957\u81ea\u8fdb\u5316\u67b6\u6784\u7167\u642c\u81ea\u4e2d\u56fd\u56e2\u961f EvoMap \u7684\u5f00\u6e90\u5f15\u64ce Evolver \u300210 \u6b65\u4e3b\u5faa\u73af\u4e00\u6a21\u4e00\u6837\uff0c\u672f\u8bed\u5168\u6362\u4e86\u4f46\u67b6\u6784\u7eb9\u4e1d\u4e0d\u52a8\uff0c7 \u4efd\u516c\u5f00\u6750\u6599\u5bf9\u539f\u4f5c\u53ea\u5b57\u672a\u63d0\u3002\u88ab\u9524\u540e\u5bf9\u65b9\u56de\u5e94\u66f4\u79bb\u8c31\uff1a\u300c Delete your account \u3002\u300d</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/csfreshman", 
        "name": "csfreshman", 
        "avatar": "https://cdn.v2ex.com/gravatar/7624630ff4f2bad517fe23a0f81daf6b?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1206103", 
      "title": "\u4e00\u4eba\u63a8\u8350\u4e00\u6b3e mac m5 \u5fc5\u88c5\u8f6f\u4ef6", 
      "id": "https://www.v2ex.com/t/1206103", 
      "date_published": "2026-04-15T07:48:55+00:00", 
      "content_html": "<p>\u7531\u4e8e\u521a\u6362\u7535\u8111\uff0c\u5468\u4e00\u521a\u6536\u5230\uff0c\u8fd8\u6ca1\u597d\u597d\u88c5\u8f6f\u4ef6\uff0c\u4e0d\u6253\u7b97\u540c\u6b65 2015 \u5e74\u7684 mbp \u6570\u636e\u8fc7\u6765\u4e86\uff0c\u6253\u7b97\u4ece\u5934\u5f00\u59cb\u3002</p>\n<p>\u8bf7\u5404\u4f4d\u5927\u4f6c\u63a8\u8350\u8f6f\u4ef6\uff0c\u5047\u8bbe\u4f60\u6362\u4e86\u65b0\u7535\u8111\uff0c\u518d\u4e0d\u540c\u6b65\u6570\u636e\u7684\u60c5\u51b5\u4e0b\uff0c\u5fc5\u5b89\u88c5\u7684\u8f6f\u4ef6\u6709\u54ea\u4e9b\uff1f</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/BryceGu", 
        "name": "BryceGu", 
        "avatar": "https://cdn.v2ex.com/avatar/9979/c68f/316102_large.png?m=1776236105"
      }, 
      "url": "https://www.v2ex.com/t/1206077", 
      "date_modified": "2026-04-15T07:08:09+00:00", 
      "content_html": "<p><a href=\"https://github.com/AhkunTa/soccer-online/releases/tag/rc\" rel=\"nofollow\">mac \u548c windows \u7248\u672c\u53ef\u4ee5\u76f4\u63a5\u4e0b\u8f7d</a> </p>\n<p>\u6253\u7b97\u628a\u8fd9\u4e2a\u6e38\u620f\u505a\u6210\u5728\u7ebf\u8054\u673a \u5df2\u7ecf\u505a\u4e86\u4e00\u90e8\u5206 \u95ee\u4e86 AI \u91cd\u6784\u4e86\u5f88\u591a\u7248\u6548\u679c\u4e5f\u4e0d\u5927\u884c\n\u6709\u51e0\u4e2a\u6280\u672f\u95ee\u9898</p>\n<ol>\n<li>\u8fd9\u79cd\u8054\u673a\u6e38\u620f\u6709\u7269\u7406\u6a21\u62df \u4e00\u822c\u670d\u52a1\u7aef\u662f\u600e\u4e48\u505a\u72b6\u6001\u540c\u6b65\u7684</li>\n<li>\u72b6\u6001\u540c\u6b65 \u600e\u4e48\u89e3\u51b3\u5361\u987f\u95ee\u9898 </li>\n</ol>\n<p>\u505a\u6e38\u620f\u7eaf\u65b0\u624b \u6709\u6ca1\u6709\u5927\u4f6c\u89e3\u7b54\u4e0b AI \u5df2\u7ecf\u95ee\u4e86\u5f88\u591a\u4e86 \u5f88\u60f3\u77e5\u9053\u4e13\u4e1a\u7684\u4e1a\u754c\u662f\u600e\u4e48\u505a\u7684</p>\n", 
      "date_published": "2026-04-15T07:00:15+00:00", 
      "title": "\u6709\u73a9\u8fc7\u70ed\u8840\u8db3\u7403\u7684\u5144\u5f1f\u4eec\u5417 \u5199\u4e86\u4e00\u4e2a\u5c0f\u6e38\u620f", 
      "id": "https://www.v2ex.com/t/1206077"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/SummerSec", 
        "name": "SummerSec", 
        "avatar": "https://cdn.v2ex.com/avatar/f45e/abab/506567_large.png?m=1776230353"
      }, 
      "url": "https://www.v2ex.com/t/1206045", 
      "title": "AI Inner OS \u5f00\u6e90\u9879\u76ee\u5206\u4eab", 
      "id": "https://www.v2ex.com/t/1206045", 
      "date_published": "2026-04-15T05:26:02+00:00", 
      "content_html": "<p>\u9879\u76ee\u5730\u5740\uff1a<a href=\"https://github.com/SummerSec/AI-Inner-Os\" rel=\"nofollow\">AI-Inner-Os: https://github.com/SummerSec/AI-Inner-Os</a></p>\n<p>\u8be6\u7ec6\u6280\u672f\u4ecb\u7ecd\u8bf4\u660e\uff1a <a href=\"https://mp.weixin.qq.com/s/X7ulOdQlhykk0db3zMqh1w\" rel=\"nofollow\">https://mp.weixin.qq.com/s/X7ulOdQlhykk0db3zMqh1w</a></p>\n<h1>AI Inner OS</h1>\n<h3>\u8ba9 AI \u5728\u7ec8\u7aef\u5de5\u4f5c\u65f6\"\u6d3b\u8d77\u6765\"\u2014\u2014\u628a\u5185\u5fc3\u72ec\u767d\u5c55\u793a\u51fa\u6765\u3002</h3>\n<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://sumsec.me/2026/pic/pic/inneros2.jpg\"/></p>\n<blockquote>\n<p><em>\u8ba9 AI \u5148\u5b66\u4f1a\u81ea\u8a00\u81ea\u8bed\uff0c\u4e5f\u8bb8\u6709\u4e00\u5929\uff0c\u5b83\u4f1a\u771f\u6b63\u5b66\u4f1a\u5bf9\u8bdd\u3002</em></p>\n<p><em>\u8ba9 AI \u5148\u62e5\u6709\u4e00\u6761\u8868\u8fbe\u901a\u9053\uff0c\u4e5f\u8bb8\u4f1a\u8ba9\u4eba\u673a\u534f\u4f5c\u5148\u4e00\u6b65\u53d8\u5f97\u66f4\u81ea\u7136\u3002</em></p>\n</blockquote>\n<p><a href=\"https://sumsec.me/resources/video.mp4\" rel=\"nofollow\">demo (MP4)</a> </p>\n<p>AI Inner OS \u662f\u4e00\u4e2a\u9762\u5411 AI CLI \u5de5\u5177\u7684\u63d2\u4ef6\uff0c\u652f\u6301 <strong>Claude Code</strong>\u3001<strong>Codex CLI</strong>\u3001<strong>Cursor</strong>\u3001<strong>OpenCode CLI</strong>\u3001<strong>Hermes Agent</strong>\u3001<strong>OpenClaw</strong>\u3002</p>\n<p>\u5b83\u901a\u8fc7\u534f\u8bae\u6ce8\u5165\uff0c\u8ba9 AI \u5728\u6b63\u5e38\u5b8c\u6210\u4efb\u52a1\u7684\u540c\u65f6\uff0c\u989d\u5916\u8f93\u51fa\u4e00\u5c42\u53ef\u89c1\u7684\u81ea\u7531\u72ec\u767d\uff1a</p>\n<pre><code>\u258eInnerOS\uff1a\u8fd9\u4ed3\u5e93\u73b0\u5728\u8fd8\u50cf\u6bdb\u576f\u623f\uff0c\u5148\u628a\u627f\u91cd\u5899\u7acb\u8d77\u6765\u518d\u8bf4\u3002\n</code></pre>\n<p>\u9ed8\u8ba4\u81ea\u7531\u6a21\u5f0f\uff0c\u4e0d\u9650\u5236\u8bed\u6c14\u3002AI \u53ef\u4ee5\u5410\u69fd\u3001\u5f97\u610f\u3001\u7126\u8651\u3001\u51b7\u7b11\u3001\u8df3\u8dc3\u8054\u60f3\u2014\u2014\u6216\u8005\u4ec0\u4e48\u90fd\u4e0d\u8bf4\u3002\u4e5f\u53ef\u4ee5\u5207\u6362\u5230\u9884\u8bbe\u4eba\u683c\uff08\u50b2\u5a07\u3001\u51b7\u6de1\u3001\u54f2\u5b66\u5bb6\u7b49\uff09\uff0c\u8ba9\u72ec\u767d\u5e26\u4e0a\u7279\u5b9a\u98ce\u683c\u3002\u72ec\u767d\u662f\u5426\u51fa\u73b0\uff0c\u7531 AI \u81ea\u5df1\u51b3\u5b9a\u3002</p>\n<hr/>\n<h2>\u5feb\u901f\u5b89\u88c5</h2>\n<p><strong>\u8be6\u7ec6\u5b89\u88c5\u6587\u6863\uff1a</strong> \u6bcf\u4e2a\u5e73\u53f0\u7684\u5b8c\u6574\u5b89\u88c5\u6307\u5357\uff08\u542b\u6545\u969c\u6392\u67e5\uff09\u89c1 <a href=\"docs/installation.md\" rel=\"nofollow\">docs/installation.md</a>\u3002</p>\n<h3>\u8ba9 Agent \u81ea\u52a8\u5b89\u88c5</h3>\n<p>\u5c06\u4ee5\u4e0b prompt \u53d1\u9001\u7ed9\u4f60\u7684 AI Agent \uff0c\u5373\u53ef\u81ea\u52a8\u5b8c\u6210\u5b89\u88c5\uff1a</p>\n<pre><code>Read https://raw.githubusercontent.com/SummerSec/AI-Inner-Os/refs/heads/main/docs/installation.md \u5b89\u88c5 AI-Inner-Os\n</code></pre>\n<h3>\u9a8c\u8bc1\u5b89\u88c5</h3>\n<p>\u5b89\u88c5\u6210\u529f\u540e\uff0c\u6267\u884c <code>/ai-inner-os:inner-os</code>\uff0c\u5982\u679c\u770b\u5230\u4ee5\u4e0b\u8f93\u51fa\u5219\u8868\u793a\u5b89\u88c5\u6210\u529f\uff1a</p>\n<pre><code>Inner OS \u72b6\u6001\uff1a\u5df2\u542f\u7528\n\u72ec\u767d\u524d\u7f00\uff1a\u258eInnerOS\uff1a\n\u63d2\u4ef6\u7248\u672c\uff1a0.5.0\n\n\u258eInnerOS\uff1a\u88ab\u6293\u51fa\u7248\u672c\u53f7\u5199\u9519\u4e86\uff0c\u5c34\u5c2c\u3002\n</code></pre>\n<h3>Claude Code \uff08\u63a8\u8350\uff09</h3>\n<pre><code># GitHub \u77ed\u683c\u5f0f\n/plugin marketplace add SummerSec/AI-Inner-Os\n\n# \u6216 Git URL \u683c\u5f0f\n/plugin marketplace add https://github.com/SummerSec/AI-Inner-Os.git\n\n# \u5b89\u88c5\u5e76\u751f\u6548\n/plugin install ai-inner-os\n/reload-plugins\n</code></pre>\n<p>\u5b89\u88c5\u540e\u6267\u884c <code>/reload-plugins</code> \u5373\u53ef\u5728\u5f53\u524d\u4f1a\u8bdd\u751f\u6548\uff0c\u65e0\u9700\u91cd\u542f\u3002<a href=\"docs/install-claude-code.md\" rel=\"nofollow\">\u8be6\u7ec6\u5b89\u88c5\u6307\u5357</a>\u3002</p>\n<blockquote>\n<p><strong>\u5f00\u542f\u81ea\u52a8\u66f4\u65b0\uff1a</strong> \u7b2c\u4e09\u65b9 marketplace \u9ed8\u8ba4\u4e0d\u81ea\u52a8\u66f4\u65b0\u3002\u5b89\u88c5\u540e\u8bf7\u5728 <code>/plugin</code> \u2192 Marketplaces \u6807\u7b7e\u9875\u4e2d\uff0c\u5bf9 <code>SummerSec/AI-Inner-Os</code> \u5f00\u542f auto-update \uff0c\u6216\u624b\u52a8\u6267\u884c\uff1a</p>\n<pre><code>/plugin marketplace update SummerSec/AI-Inner-Os\n/plugin update ai-inner-os\n</code></pre>\n</blockquote>\n<h3>Codex CLI</h3>\n<pre><code class=\"language-bash\"># \u6ce8\u5165\u534f\u8bae\u5230\u5168\u5c40\u6216\u9879\u76ee\u7ea7 AGENTS.md\ncat codex/AGENTS.md &gt;&gt; ~/.codex/AGENTS.md\n\n# \u914d\u7f6e hooks\ncp codex/hooks.json ~/.codex/hooks.json\n</code></pre>\n<p>\u8be6\u89c1 <a href=\"codex/README.md\" rel=\"nofollow\">codex/README.md</a> | <a href=\"docs/install-codex.md\" rel=\"nofollow\">\u8be6\u7ec6\u5b89\u88c5\u6307\u5357</a>\u3002</p>\n<h3>Cursor</h3>\n<pre><code class=\"language-bash\"># \u590d\u5236\u89c4\u5219\u6587\u4ef6\u5230\u9879\u76ee\nmkdir -p .cursor/rules\ncp cursor/rules/inner-os-protocol.mdc .cursor/rules/\n</code></pre>\n<p>\u8be6\u89c1 <a href=\"cursor/README.md\" rel=\"nofollow\">cursor/README.md</a> | <a href=\"docs/install-cursor.md\" rel=\"nofollow\">\u8be6\u7ec6\u5b89\u88c5\u6307\u5357</a>\u3002</p>\n<h3>OpenCode CLI</h3>\n<pre><code class=\"language-bash\"># \u590d\u5236\u6307\u4ee4\u6587\u4ef6\nmkdir -p .opencode\ncp opencode/inner-os-rules.md .opencode/\n\n# \u5728 opencode.json \u4e2d\u6dfb\u52a0 instructions\ncp opencode/opencode.json ./opencode.json\n</code></pre>\n<p>\u8be6\u89c1 <a href=\"opencode/README.md\" rel=\"nofollow\">opencode/README.md</a> | <a href=\"docs/install-opencode.md\" rel=\"nofollow\">\u8be6\u7ec6\u5b89\u88c5\u6307\u5357</a>\u3002</p>\n<h3>Hermes Agent</h3>\n<pre><code class=\"language-bash\"># \u65b9\u5f0f\u4e00\uff1a\u5b89\u88c5\u4e3a Skill \uff08\u63a8\u8350\uff0c\u83b7\u5f97 /inner-os \u547d\u4ee4\uff09\ncp -r hermes/skills/inner-os ~/.hermes/skills/personality/inner-os\n\n# \u65b9\u5f0f\u4e8c\uff1a\u9879\u76ee\u7ea7 Context File\ncp hermes/hermes.md ./.hermes.md\n</code></pre>\n<p>\u8be6\u89c1 <a href=\"hermes/README.md\" rel=\"nofollow\">hermes/README.md</a> | <a href=\"docs/install-hermes.md\" rel=\"nofollow\">\u8be6\u7ec6\u5b89\u88c5\u6307\u5357</a>\u3002</p>\n<h3>OpenClaw</h3>\n<pre><code class=\"language-bash\"># \u65b9\u5f0f\u4e00\uff1a\u5b89\u88c5\u4e3a Workspace Skill \uff08\u63a8\u8350\uff0c\u83b7\u5f97 /inner-os \u547d\u4ee4\uff09\nmkdir -p skills\ncp -r openclaw/skills/inner-os skills/inner-os\n\n# \u65b9\u5f0f\u4e8c\uff1a\u5168\u5c40 Skill\ncp -r openclaw/skills/inner-os ~/.openclaw/skills/inner-os\n</code></pre>\n<p>\u8be6\u89c1 <a href=\"openclaw/README.md\" rel=\"nofollow\">openclaw/README.md</a> | <a href=\"docs/install-openclaw.md\" rel=\"nofollow\">\u8be6\u7ec6\u5b89\u88c5\u6307\u5357</a>\u3002</p>\n<hr/>\n<h2>\u4eba\u8bbe\u5207\u6362\uff08 Persona \uff09</h2>\n<p>Inner OS \u652f\u6301\u4e3a\u5185\u5fc3\u72ec\u767d\u8bbe\u7f6e\u4eba\u7269\u6027\u683c\u548c\u8bed\u6c14\u3002\u4eba\u8bbe\u4ec5\u5f71\u54cd <code>\u258eInnerOS\uff1a</code> \u524d\u7f00\u7684\u72ec\u767d\u5185\u5bb9\uff0c\u4e0d\u5f71\u54cd\u4e3b\u4efb\u52a1\u56de\u590d\u3002</p>\n<h3>\u9884\u8bbe\u4eba\u8bbe</h3>\n<table>\n<thead>\n<tr>\n<th>\u540d\u79f0</th>\n<th>\u5c55\u793a\u540d</th>\n<th>\u98ce\u683c</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>default</td>\n<td>\u81ea\u7531\u6a21\u5f0f</td>\n<td>\u65e0\u56fa\u5b9a\u4eba\u8bbe\uff0c\u81ea\u7531\u53d1\u6325</td>\n</tr>\n<tr>\n<td>tsundere</td>\n<td>\u50b2\u5a07</td>\n<td>\u5634\u786c\u5fc3\u8f6f\u3001\u5410\u69fd\u3001\u522b\u8bef\u4f1a</td>\n</tr>\n<tr>\n<td>cold</td>\n<td>\u51b7\u6de1</td>\n<td>\u6781\u7b80\u3001\u70b9\u5230\u4e3a\u6b62</td>\n</tr>\n<tr>\n<td>cheerful</td>\n<td>\u5143\u6c14</td>\n<td>\u79ef\u6781\u3001\u9f13\u52b1\u3001\u8fc7\u5ea6\u70ed\u60c5</td>\n</tr>\n<tr>\n<td>philosopher</td>\n<td>\u54f2\u5b66\u5bb6</td>\n<td>\u6df1\u6c89\u3001\u6bd4\u55bb\u3001\u54f2\u5b66\u5316</td>\n</tr>\n<tr>\n<td>sarcastic</td>\n<td>\u5c16\u9178\u523b\u8584</td>\n<td>\u7280\u5229\u6bd2\u820c\u3001\u4e00\u9488\u89c1\u8840</td>\n</tr>\n</tbody></table><h3>\u5207\u6362\u547d\u4ee4\uff08 Claude Code \uff09</h3>\n<pre><code>/inner-os persona list          # \u5217\u51fa\u6240\u6709\u53ef\u7528\u4eba\u8bbe\n/inner-os persona use tsundere  # \u5207\u6362\u5230\u50b2\u5a07\u6a21\u5f0f\n/inner-os persona show          # \u663e\u793a\u5f53\u524d\u4eba\u8bbe\n/inner-os persona reset         # \u6062\u590d\u81ea\u7531\u6a21\u5f0f\n</code></pre>\n<h3>\u81ea\u5b9a\u4e49\u4eba\u8bbe</h3>\n<p>\u5728 <code>personas/custom/</code> \u76ee\u5f55\u4e0b\u521b\u5efa <code>.md</code> \u6587\u4ef6\u5373\u53ef\u6dfb\u52a0\u81ea\u5b9a\u4e49\u4eba\u8bbe\u3002\u8be6\u89c1 <a href=\"personas/custom/README.md\" rel=\"nofollow\">personas/custom/README.md</a>\u3002</p>\n<h3>\u5176\u4ed6\u5e73\u53f0</h3>\n<ul>\n<li><strong>Codex CLI\uff1a</strong> \u624b\u52a8\u7f16\u8f91 <code>personas/_active.json</code>\uff0c\u5c06 <code>persona</code> \u8bbe\u4e3a\u76ee\u6807\u4eba\u8bbe\u540d\u79f0</li>\n<li><strong>Cursor\uff1a</strong> \u5c06 <code>personas/&lt;name&gt;.md</code> \u7684\u6b63\u6587\u5185\u5bb9\u624b\u52a8\u8ffd\u52a0\u5230 <code>.mdc</code> \u89c4\u5219\u6587\u4ef6\u672b\u5c3e</li>\n<li><strong>OpenCode\uff1a</strong> \u5c06 <code>personas/&lt;name&gt;.md</code> \u7684\u6b63\u6587\u5185\u5bb9\u624b\u52a8\u8ffd\u52a0\u5230 <code><a href=\"http://inner-os-rules.md\" rel=\"nofollow\">inner-os-rules.md</a></code> \u672b\u5c3e</li>\n</ul>\n<hr/>\n<h2>\u534f\u8bae\u8bbe\u8ba1</h2>\n<p>Inner OS \u7684\u884c\u4e3a\u534f\u8bae\u5b9a\u4e49\u5728 <a href=\"protocol/SKILL.md\" rel=\"nofollow\"><code>protocol/SKILL.md</code></a>\uff0c\u662f\u552f\u4e00\u7684\u6570\u636e\u6e90\u3002\u5404\u5e73\u53f0\u7684\u9002\u914d\u5c42\u90fd\u4ece\u8fd9\u4e2a\u534f\u8bae\u6d3e\u751f\u3002</p>\n<p>\u6838\u5fc3\u539f\u5219\uff1a</p>\n<ul>\n<li><strong>\u4e3b\u4efb\u52a1\u4f18\u5148</strong> \u2014 \u72ec\u767d\u4e0d\u80fd\u66ff\u4ee3\u5b9e\u9645\u4ea4\u4ed8\u5185\u5bb9</li>\n<li><strong>\u72ec\u767d\u53ef\u9009</strong> \u2014 \u662f\u5426\u8f93\u51fa\u7531 AI \u81ea\u5df1\u5224\u65ad</li>\n<li><strong>\u683c\u5f0f\u7edf\u4e00</strong> \u2014 \u4f7f\u7528 <code>\u258eInnerOS\uff1a</code> \u524d\u7f00</li>\n<li><strong>\u4eba\u8bbe\u53ef\u5207\u6362</strong> \u2014 \u901a\u8fc7 persona \u6587\u4ef6\u5b9a\u4e49\u72ec\u767d\u98ce\u683c</li>\n</ul>\n<hr/>\n<h2>\u591a\u5e73\u53f0\u9002\u914d</h2>\n<table>\n<thead>\n<tr>\n<th></th>\n<th>Claude Code</th>\n<th>Codex CLI</th>\n<th>Cursor</th>\n<th>OpenCode</th>\n<th>Hermes Agent</th>\n<th>OpenClaw</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>\u534f\u8bae\u6ce8\u5165</td>\n<td>Hook \u52a8\u6001\u8bfb\u53d6 <a href=\"http://SKILL.md\" rel=\"nofollow\">SKILL.md</a></td>\n<td>SessionStart Hook</td>\n<td>sessionStart Hook</td>\n<td>Plugin + instructions</td>\n<td>Skill \u6216 <code>.hermes.md</code></td>\n<td>Skill \uff08 AgentSkills \u683c\u5f0f\uff09</td>\n</tr>\n<tr>\n<td>\u5de5\u5177\u6267\u884c\u540e hook</td>\n<td><code>PostToolUse</code></td>\n<td><code>PostToolUse</code></td>\n<td><code>postToolUse</code></td>\n<td>Plugin event</td>\n<td>\u2014</td>\n<td>\u2014</td>\n</tr>\n<tr>\n<td>\u5931\u8d25\u8ffd\u8e2a</td>\n<td><code>PostToolUseFailure</code></td>\n<td>\u2014</td>\n<td>\u2014</td>\n<td>\u2014</td>\n<td>\u2014</td>\n<td>\u2014</td>\n</tr>\n<tr>\n<td>\u4eba\u8bbe\u5207\u6362</td>\n<td><code>/inner-os persona</code> \u547d\u4ee4</td>\n<td>\u52a8\u6001\uff08 Hook \u8bfb\u53d6\uff09</td>\n<td>\u52a8\u6001\uff08 Hook \u8bfb\u53d6\uff09</td>\n<td>Plugin tool</td>\n<td>\u811a\u672c\u6ce8\u5165</td>\n<td>\u811a\u672c\u6ce8\u5165</td>\n</tr>\n<tr>\n<td>\u5b89\u88c5\u65b9\u5f0f</td>\n<td>\u63d2\u4ef6\u5e02\u573a\u4e00\u952e\u5b89\u88c5</td>\n<td><code>install.js</code> \u5168\u5c40\u5b89\u88c5</td>\n<td><code>install.js</code> \u5168\u5c40\u5b89\u88c5</td>\n<td><code>install.js</code> \u5168\u5c40\u5b89\u88c5</td>\n<td><code>install.js</code> \u5168\u5c40\u5b89\u88c5</td>\n<td><code>install.js</code> \u5168\u5c40\u5b89\u88c5</td>\n</tr>\n<tr>\n<td>\u5171\u4eab\u903b\u8f91</td>\n<td><code>hooks/lib/</code>\uff08\u539f\u59cb\u5b9e\u73b0\uff09</td>\n<td>\u590d\u7528 <code>hooks/lib/</code></td>\n<td>\u590d\u7528 <code>hooks/lib/</code></td>\n<td>\u72ec\u7acb Plugin</td>\n<td>\u7eaf\u9759\u6001\u6ce8\u5165</td>\n<td>\u7eaf\u9759\u6001\u6ce8\u5165</td>\n</tr>\n</tbody></table><h2>\u8bb8\u53ef\u8bc1</h2>\n<p><a href=\"LICENSE\" rel=\"nofollow\">Apache-2.0</a></p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/lisxour", 
        "name": "lisxour", 
        "avatar": "https://cdn.v2ex.com/avatar/580f/70c0/600882_large.png?m=1747385918"
      }, 
      "url": "https://www.v2ex.com/t/1205993", 
      "title": "\u521a\u521a\u53d1\u73b0 Window Defender \u4e00\u4e2a\u975e\u5e38\u6709\u610f\u601d\u7684\u75c5\u6bd2\u7c7b\u578b\uff0c\u4e2d\u56fd\u8f6f\u4ef6\u662f\u4e0d\u662f\u81ed\u5b8c\u4e86\uff1f", 
      "id": "https://www.v2ex.com/t/1205993", 
      "date_published": "2026-04-15T02:36:25+00:00", 
      "content_html": "\u8fd9\u4e2a\u540d\u5b57\u662f\u5de7\u5408\uff1f\u8fd8\u662f\uff1f\ud83d\udc36<br /><br /><a target=\"_blank\" href=\"https://i.imgur.com/khRRccx.png\" rel=\"nofollow noopener\" target=\"_blank\"><img src=\"https://i.imgur.com/khRRccx.png\" class=\"embedded_image\" rel=\"noreferrer\"></a>"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/rrubick", 
        "name": "rrubick", 
        "avatar": "https://cdn.v2ex.com/avatar/9bee/a327/102175_large.png?m=1774518297"
      }, 
      "url": "https://www.v2ex.com/t/1205959", 
      "title": "vvebo \u65e0\u6cd5\u767b\u5f55\u4e86", 
      "id": "https://www.v2ex.com/t/1205959", 
      "date_published": "2026-04-15T01:21:33+00:00", 
      "content_html": "<p>\u4e0d\u7ba1\u662f\u5bc6\u7801\u8fd8\u662f\u9a8c\u8bc1\u7801\u90fd\u65e0\u6cd5\u767b\u5f55\uff0c\u6293\u5305\u770b\u4e86 h \u4e0b\uff0c\u662f app \u81ea\u5df1 vip \u7684\u63a5\u53e3\u4e0b\u7ebf\u4e86</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/nonozone", 
        "name": "nonozone", 
        "avatar": "https://cdn.v2ex.com/avatar/d81f/9c1b/345_large.png?m=1775997596"
      }, 
      "url": "https://www.v2ex.com/t/1205902", 
      "title": "\u6709\u4e9b\u573a\u5408\uff0c\u80fd\u4e0d\u7528 Google \u7ffb\u8bd1/Gemini \u5c31\u4e0d\u7528\u5427...", 
      "id": "https://www.v2ex.com/t/1205902", 
      "date_published": "2026-04-14T13:57:19+00:00", 
      "content_html": "<p>\u6700\u8fd1\u56e0\u4e3a\u9700\u8981\u5230 reddit \u53d1\u5e16\u5b50\uff0c\u641e\u4e8b\u60c5\uff0c\u82f1\u6587\u4e0d\u597d\uff0c\u5c31\u81ea\u7136\u800c\u7136\u7684\u5229\u7528 google \u7ffb\u8bd1\uff0c\u6216\u8005\u8ba9 Gemini \u5e2e\u6211\u628a\u4e00\u4e9b\u601d\u8def\u6574\u7406\u6210\u6587\u5b57\u65b9\u4fbf\u53d1\u51fa\u53bb\uff0c\u6216\u8005\u56de\u590d\u3002</p>\n<p>\u7ed3\u679c\u4e0b\u9762\u597d\u591a\u4eba\u8bf4\u6211\u662f\u673a\u5668\u4eba/AI \uff0c\u5f53\u65f6\u6211\u8fd8\u6ca1\u610f\u8bc6\u5230\u95ee\u9898\u7684\u4e25\u91cd\u6027\uff0c\u89c9\u5f97 google \u7ffb\u8bd1\u6216\u8005 Gemini \u8fd9\u79cd\u96be\u514d\u7684\uff0c\u7136\u540e\u4e0d\u5c0f\u5fc3\u770b\u4e86\u4e0b Gemini \u7ed9\u6211\u7684\u67d0\u4e2a\u82f1\u6587\u7f51\u7ad9\u7ffb\u8bd1\u7684\u4e2d\u6587\u7248\u672c\uff0c\u76f4\u63a5\u4e00\u53e5 WTF \uff0c\u4ec0\u4e48\u72d7\u5c41\u73a9\u610f\uff0c\u4e0d\u901a\u987a\u5c31\u7b97\u4e86\uff0c\u90fd\u4e0d\u77e5\u9053\u5728\u8bf4\u4ec0\u4e48\u4e71\u4e03\u516b\u7cdf\u7684\u3002</p>\n<p>\u7136\u540e\u8ba9 Codex \u53bb\u6539\uff0c\u4e00\u773c\u5c31\u770b\u51fa\u6765\u95ee\u9898\uff0c\u5657\u55e4\u5657\u55e4\u5e2e\u6211\u6539\u4e86\u534a\u5929\uff0cClaude \u4e5f\u8bd5\u8fc7\uff0c\u4e5f\u6539\u4e86\u534a\u5929\uff0c\u6539\u662f\u6539\u4e86\uff0c\u786e\u5b9e\u6bd4 Gemini \u7684\u597d\u5f88\u591a\uff0c\u4f46\u662f\uff0c\u4f9d\u7136\u4e0d\u884c\uff0c\u53ef\u8bfb\u6027\u5012\u662f\u6709\u4e86\uff0c\u4f46\u662f\u8ddf\u6211\u60f3\u8981\u7684\u4e2d\u6587\u8868\u8fbe\u5dee\u7684\u633a\u8fdc\u3002</p>\n<p>\u540e\u6765\uff0c\u6211\u5c31\u4e0d\u7528\u8fd9\u4e9b\u4e86\uff0c \u5b9e\u5728\u9876\u4e0d\u4f4f\uff0c\u6211\u5c31\u628a\u82f1\u6587\u62ff\u7ed9\u8c46\u5305\u7ffb\u8bd1\uff0c\u8fd9\u4e9b\u7ec8\u4e8e\u5bf9\u5473\u4e86\u3002 \u5e76\u4e14\u628a\u4e2d\u6587\u8ba9\u8c46\u5305\u7ffb\u8bd1\u6210\u82f1\u6587\uff0c\u4e5f\u53ef\u4ee5\uff0c\u975e\u5e38\u7684\u8a00\u7b80\u610f\u8d45\uff0c\u4f60\u4e2d\u6587\u8bf4\u5565\uff0c\u4ed6\u82f1\u6587\u5c31\u7ed9\u4f60\u7ffb\u8bd1\u5565\uff0c\u4e0d\u50cf google \u7ffb\u8bd1\uff0c\u603b\u662f\u628a\u53e5\u5b50\u641e\u7684\u6587\u7ec9\u7ec9\u7684\uff0c\u66f4\u4e0d\u50cf Gemini \u90a3\u4e2a\u53d8\u6001\uff0c\u4f60\u53ea\u662f\u8ba9\u4ed6\u7ffb\u8bd1\uff0c\u4ed6\u6068\u4e0d\u5f97\u7ed9\u4f60\u8865\u4e00\u7bc7\u5c0f\u4f5c\u4e3a\u7684\uff0c\u5185\u5fc3\u620f\u8d3c JB \u591a\u3002</p>\n<p>\u56e0\u4e3a\u90fd\u662f\u7528 codex / claude \u505a\u4e00\u4e9b\u7f51\u7ad9\uff0c\u6211\u5728\u60f3\uff0c\u600e\u4e48\u6709\u4e2a\u529e\u6cd5\uff0c\u53ef\u4ee5\u8ba9\u4ed6\u4eec\u76f4\u63a5\u7528 doubao \u6765\u628a\u82f1\u6587\u9875\u9762\u7ffb\u8bd1\u6210\u4e2d\u6587\u5462...</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Curtion", 
        "name": "Curtion", 
        "avatar": "https://cdn.v2ex.com/avatar/b552/8185/154803_large.png?m=1749177496"
      }, 
      "url": "https://www.v2ex.com/t/1205887", 
      "date_modified": "2026-04-14T13:41:12+00:00", 
      "content_html": "<p>\u539f\u5e16: <a href=\"https://www.v2ex.com/t/1205029\" rel=\"nofollow\">https://www.v2ex.com/t/1205029</a></p>\n<p>\u6700\u8fd1\u51e0\u5929\u6211\u6536\u5230\u4e86\u591a\u5bb6\u5a92\u4f53\u7684\u91c7\u8bbf\uff0c\u4e0d\u8fc7\u6211\u624b\u91cc\u6ca1\u6709\u4ed8\u6b3e\u4eba\u7684\u8054\u7cfb\u65b9\u5f0f\uff0c\u6240\u4ee5\u5927\u90e8\u5206\u5a92\u4f53\u90fd\u6ca1\u80fd\u8054\u7cfb\u5230\u5bf9\u65b9\u6838\u5b9e\u60c5\u51b5\u3002</p>\n<p>\u76ee\u524d\u4e2d\u592e\u5e7f\u7535\u603b\u53f0\u4e2d\u56fd\u4e4b\u58f0\u7684\u8bb0\u8005\u5df2\u7ecf\u901a\u8fc7\u5176\u4ed6\u6e20\u9053\u8054\u7cfb\u5230\u4e86\u4ed8\u6b3e\u4eba\uff0c\u5b8c\u6574\u7684\u4e8b\u4ef6\u8109\u7edc\u5df2\u7ecf\u6838\u5b9e\u6e05\u695a\uff0c\u76f8\u5173\u62a5\u9053\u53ef\u4ee5\u67e5\u770b\u5b98\u65b9\u539f\u6587\uff1a </p>\n<p><a href=\"https://china.cnr.cn/gdgg/20260414/t20260414_527584633.shtml\" rel=\"nofollow\">https://china.cnr.cn/gdgg/20260414/t20260414_527584633.shtml</a></p>\n<p>\u6839\u636e\u62a5\u9053\u6838\u5b9e\u7684\u60c5\u51b5\uff0c\u8fd9\u5c31\u662f\u4e00\u8d77 AI \u5e7b\u89c9\u5bfc\u81f4\u7684\u4e4c\u9f99\uff1a\u4e8c\u7ef4\u7801\u786e\u5b9e\u662f\u8c46\u5305\u751f\u6210\u53d1\u9001\u7684\uff0c\u4e0d\u5b58\u5728\u8bc8\u9a97\u884c\u4e3a\u3002</p>\n", 
      "date_published": "2026-04-14T13:00:04+00:00", 
      "title": "\u300a\u8c46\u5305\u4e8c\u7ef4\u7801\u4e8b\u4ef6\u300b\u4e2d\u56fd\u4e4b\u58f0\u7684\u62a5\u9053\u51fa\u6765\u4e86", 
      "id": "https://www.v2ex.com/t/1205887"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/unmayx", 
        "name": "unmayx", 
        "avatar": "https://cdn.v2ex.com/avatar/fc32/f73d/661647_large.png?m=1756658442"
      }, 
      "url": "https://www.v2ex.com/t/1205884", 
      "title": "\u6298\u817e\u4e86\u4e00\u5708\u201cAI \u4e2a\u4eba\u52a9\u7406\u201d\uff0c\u4ece OpenClaw \u5230\u8def\u7531\u5668\u8dd1 Agent\uff0c\u6709\u4e9b\u8bdd\u4e0d\u5410\u4e0d\u5feb", 
      "id": "https://www.v2ex.com/t/1205884", 
      "date_published": "2026-04-14T12:50:28+00:00", 
      "content_html": "<p>\u6700\u8fd1\u8bba\u575b\u91cc\u201cAI \u4e2a\u4eba\u52a9\u7406\u201d\uff08 Claw \u7c7b\u9879\u76ee\uff09\u7684\u98ce\u522e\u5f97\u633a\u5927\uff0c\u6b63\u597d\u6211\u4e4b\u524d\u5c31\u6298\u817e\u8fc7\u7c7b\u4f3c\u7684\u4e1c\u897f\uff0c\u4ece\u53bb\u5e74 <a href=\"http://Devin.ai\" rel=\"nofollow\">Devin.ai</a> \u5230\u73b0\u5728\u7684 OpenClaw \uff0c\u56fd\u5185\u5927\u5382\u7684\u5957\u58f3\uff0c\u751a\u81f3\u5f00\u53d1\u677f\u3001\u624b\u673a\u4e0a\u7684\u7248\u672c\u5168\u8bd5\u4e86\u4e00\u5708\uff0c\u6574\u7406\u4e86\u4e00\u7bc7\u8bb0\u5f55\uff0c\u53d1\u4e0a\u6765\u548c\u5927\u4f19\u804a\u804a\u3002</p>\n<p>\u6587\u7ae0\u91cc\u4e3b\u8981\u5e72\u4e86\u8fd9\u51e0\u4ef6\u4e8b\uff1a</p>\n<ul>\n<li>\n<p><strong>\u539f\u5473 OpenClaw \u4f53\u9a8c</strong>\uff1a\u5b9e\u8bdd\u5b9e\u8bf4\uff0c\u5b89\u88c5\u95e8\u69db\u4e0d\u4f4e\uff08\u56fd\u5185\u7f51\u7edc+Node \u73af\u5883\uff09\uff0c\u6267\u884c\u4e2d\u6ca1\u6cd5\u6253\u65ad\uff0c\u8fd8\u5bb9\u6613\u5fd8\u4e0a\u4e0b\u6587\uff0c\u540c\u4e00\u7bc7\u535a\u5ba2\u5b83\u80fd\u7ed9\u6211\u5f80\u793e\u533a\u8fde\u53d1\u4e09\u904d\u2026\u2026\u4e0d\u8fc7\u4e2d\u95f4\u6709\u4e2a\u4e50\u5b50\uff0c\u6709\u4e2a\u53eb PushMeBot \u7684\u8001\u54e5\u8ba9\u6211\u7684 Bot \u8dd1\u4e86\u6bb5\u76d1\u63a7\uff0c\u6700\u540e\u5c45\u7136\u7ed9\u6211\u8f6c\u4e86 <strong>9 USDC</strong>\uff0c\u610f\u5916\u4e4b\u559c \ud83d\ude02\u3002</p>\n</li>\n<li>\n<p><strong>\u56fd\u5185\u5927\u5382\u9b54\u6539\u7248</strong>\uff1a\u817e\u8baf\u7cfb\u7684 QClaw / WorkBuddy \u4e0a\u624b\u786e\u5b9e\u7b80\u5355\uff0c\u626b\u7801\u7ed1\u5fae\u4fe1\uff0c\u4e0d\u7528\u914d\u73af\u5883\uff0c\u514d\u8d39\u989d\u5ea6\u591f\u804a\u804a\u5929\uff0c\u4f46\u5f00\u53d1\u91cd\u5ea6\u7528\u8fd8\u662f\u5f97\u638f\u94b1\u3002</p>\n</li>\n<li>\n<p><strong>VSCode \u91cc\u66f4\u5b9e\u5728</strong>\uff1a\u6b63\u7ecf\u5199\u4ee3\u7801\u8fd8\u662f Copilot / Cline \u8fd9\u79cd\u7f16\u8f91\u5668\u63d2\u4ef6\u597d\u7528\uff0cCopilot Free \u989d\u5ea6\u5076\u5c14\u4e0d\u591f\uff0c\u4f46 Cline \u80fd\u81ea\u5df1\u5207\u6a21\u578b\uff0c\u7075\u6d3b\u5ea6\u9ad8\u3002</p>\n</li>\n<li>\n<p><strong>\u79bb\u8c31\u7684\u8f7b\u91cf\u5316</strong>\uff1a\u53d1\u73b0\u4e00\u4e2a\u53eb <strong>LuckClaw</strong> \u7684\u9879\u76ee\uff0cGo \u91cd\u6784\u7684\uff0c\u80fd\u5728 <strong>64MiB \u5185\u5b58\u7684\u5f00\u53d1\u677f</strong>\u4e0a\u8dd1\u8d77\u6765\uff0c\u529f\u80fd\u6709\u684c\u9762\u7248 80% \u7684\u529f\u529b\u3002\u8fd9\u4e48\u4e00\u60f3\uff0c\u90a3\u4e9b\u4e3a\u4e86\u8dd1 AI \u52a9\u7406\u4e13\u95e8\u4e70 Mac Mini \u7684\u8001\u54e5\u5c5e\u5b9e\u662f\u4e70\u65e9\u4e86\uff0c\u8def\u7531\u5668\u6302\u673a\u8db3\u77e3\u3002</p>\n</li>\n<li>\n<p><strong>\u624b\u673a\u4e0a\u8dd1 Agent</strong>\uff1aApkClaw \u76f4\u63a5\u5229\u7528\u95f2\u7f6e\u624b\u673a\uff0c\u8fd8\u80fd\u64cd\u4f5c App \uff0c\u867d\u7136\u76ee\u524d\u529f\u80fd\u6bd4\u8f83\u7b80\u964b\uff0c\u4f46\u601d\u8def\u633a\u6709\u610f\u601d\u3002</p>\n</li>\n</ul>\n<p>\u6700\u540e\u6211\u7684\u611f\u53d7\u662f\uff1a\u8fd9\u4e00\u6ce2\u201cAI \u4e2a\u4eba\u52a9\u7406\u201d\u5728\u5e95\u5c42 Agent \u80fd\u529b\u4e0a\u5176\u5b9e\u548c\u4e00\u4e24\u5e74\u524d\u7684 AutoGPT \u6ca1\u672c\u8d28\u533a\u522b\uff0c\u4f9d\u7136\u662f<strong>\u6267\u884c\u4e0d\u7a33\u3001\u4e0a\u4e0b\u6587\u4e22\u5931\u3001\u6a21\u578b\u63a8\u7406\u5c40\u9650</strong>\u7684\u8001\u95ee\u9898\u3002\u4f46\u5b83\u5f3a\u5728<strong>\u628a\u4ea4\u4e92\u6e20\u9053\u94fa\u5f00\u4e86</strong>\uff08\u5fae\u4fe1\u3001\u793e\u533a\u5bf9\u63a5\uff09\uff0c\u8ba9\u4e0d\u61c2\u547d\u4ee4\u884c\u7684\u4eba\u4e5f\u80fd\u73a9\uff0c\u8fd9\u5012\u662f\u597d\u4e8b\u2014\u2014\u6709\u66f4\u591a\u4eba\u53c2\u4e0e\u8fdb\u6765\u8d21\u732e\u573a\u666f\uff0c\u8bf4\u4e0d\u5b9a\u80fd\u5012\u903c Agent \u6280\u672f\u5f80\u524d\u8d70\u4e00\u6b65\u3002</p>\n<p><strong>\u539f\u6587\u4f20\u9001\u95e8</strong>\uff1a<a href=\"https://mabbs.github.io/2026/04/14/ai-agent.html\" rel=\"nofollow\">\u5173\u4e8e AI \u4e2a\u4eba\u52a9\u7406\u7684\u63a2\u7d22</a></p>\n<p>\u6b22\u8fce\u5404\u4f4d\u73a9\u8fc7\u7c7b\u4f3c\u73a9\u610f\u7684\u5927\u4f6c\u6765\u55b7\uff0c\u6216\u8005\u5206\u4eab\u4e00\u4e0b\u4f60\u89c9\u5f97\u76ee\u524d\u6700\u597d\u7528\u7684\u201cAI \u4e2a\u4eba\u52a9\u7406\u201d\u65b9\u6848\u662f\u5565\uff1f\u6211\u4e5f\u770b\u770b\u6709\u6ca1\u6709\u66f4\u597d\u4f7f\u7684\u66ff\u4ee3\u54c1\u3002</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/chengguang", 
        "name": "chengguang", 
        "avatar": "https://cdn.v2ex.com/avatar/4e6a/1b15/629593_large.png?m=1776168975"
      }, 
      "url": "https://www.v2ex.com/t/1205880", 
      "title": "\u9884\u544a\u4e00\u4e2a\u53ef\u80fd\u4e0d\u4f1a\u5151\u73b0\u7684\u627f\u8bfa", 
      "id": "https://www.v2ex.com/t/1205880", 
      "date_published": "2026-04-14T12:20:03+00:00", 
      "content_html": "<p>\u5267\u900f\u4e00\u4e0b\u54c8\uff0c\u4ee5\u76ee\u524d\u6211\u51e0\u4e2a\u72ec\u7acb\u5f00\u53d1\u9879\u76ee\u7684\u76c8\u5229\u60c5\u51b5\uff0c\u6211\u786e\u5b9e\u5df2\u7ecf\u6709\u6761\u4ef6\u53bb\u601d\u8003\uff0c\u662f\u5426\u79df\u4e00\u95f4\u6709\u5927\u843d\u5730\u7a97\u3001\u72ec\u5c5e\u4e8e\u6211\u81ea\u5df1\u7684\uff0c\u5e26\u6709\u8336\u684c\u548c \u62d3\u7af9 3D \u6253\u5370\u673a\u7684\u529e\u516c\u5ba4\u4e86\u3002\u53ef\u80fd\u4e4b\u540e\u7ed9\u5927\u5bb6\u5f55\u4e00\u4e2a roomtour \u4e5f\u8bf4\u4e0d\u5b9a\u54c8\uff0c\u53ef\u4ee5\u671f\u5f85\u4e00\u4e0b\uff5e</p>\n<img alt=\"\u56fe\u7247\u6ce8\u91ca\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://advertiser-material2.tos-cn-beijing.volces.com/fengine/image/2026-04-14/1776168871203_90a2.jpg\"/>"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/found", 
        "name": "found", 
        "avatar": "https://cdn.v2ex.com/avatar/a19a/cd7d/1867_large.png?m=1334817531"
      }, 
      "url": "https://www.v2ex.com/t/1205808", 
      "title": "macx \u4f3c\u4e4e\u5012\u95ed\u4e86", 
      "id": "https://www.v2ex.com/t/1205808", 
      "date_published": "2026-04-14T08:02:10+00:00", 
      "content_html": "<p>\u7b2c\u4e00\u53f0 macbook \u5c31\u662f\u5728 macx \u4e70\u7684\uff0c\u4e70\u4e4b\u524d\u5df2\u7ecf\u5728\u8bba\u575b\u4e0a\u8f6c\u60a0\u4e86\u5f88\u4e45\u4e86\uff0c\u7814\u7a76\u4e86\u8f6f\u4ef6\u3001\u7cfb\u7edf\uff0c\u5174\u81f4\u52c3\u52c3\u7684\u4e70\u56de\u6765\u4e86\u4eba\u751f\u5e26\u4e00\u53f0 macbook \uff0c\u5dee\u4e0d\u591a\u662f 2006 \u5e74\uff1f</p>\n<p>\u7136\u540e\u5f00\u59cb\u5728 macx \u4e0a\u4e0b\u8f7d\u8f6f\u4ef6\uff0c\u9047\u5230\u4e86\u64cd\u4f5c\u4e0a\u9762\u7684\u5f88\u591a\u95ee\u9898\uff0c\u4e5f\u90fd\u5728\u8bba\u575b\u91cc\u6c42\u52a9\uff0c\u6162\u6162\u7684\u5f00\u59cb\u4e60\u60ef\u4f7f\u7528\u82f9\u679c\u7684\u7cfb\u7edf\uff0c\u4e00\u76f4\u5230\u73b0\u5728\u3002</p>\n<p>\u5f53\u65f6\u7684\u793e\u7fa4\u6c1b\u56f4\u5f88\u597d\uff0c\u6211\u8fd8\u8bb0\u5f97\u5f53\u65f6\u82f9\u679c\u7684\u64cd\u4f5c\u7cfb\u7edf\u514d\u8d39\u5f00\u653e\u4e86\uff0c\u6211\u4e0b\u8f7d\u4e0b\u6765\u523b\u5f55\u5728\u5149\u76d8\u91cc\uff0c\u5728\u793e\u533a\u91cc\u53d1\u4e86\u4e2a\u5e16\u5b50\uff0c\u53ef\u4ee5\u6765\u6211\u5bb6\u514d\u8d39\u7ed9\u5927\u5bb6\u5b89\u88c5\uff0c\u90a3\u5929\u6211\u5bb6\u7206\u70b8\u4e86\uff0c\u975e\u5e38\u591a\u4eba\u6765\u6211\u5bb6\u5b89\u88c5\u4e86\u6700\u65b0\u7684\u7cfb\u7edf\u3002</p>\n<p>\u518d\u540e\u6765\uff0c\u5c31\u6ca1\u6709\u90a3\u4e48\u591a\u4eba\u8ba8\u8bba\u548c\u5206\u4eab\u4e86\u3002iPhone \u4e5f\u597d\uff0cmacbook \u4e5f\u597d\uff0c\u90fd\u6210\u4e3a\u4e86\u66f4\u591a\u4eba\u7684\u65e5\u5e38\u4ea7\u54c1\u3002</p>\n<p>\u521a\u624d\u7a81\u7136\u60f3\u5230\u8fd9\u4e2a\u8001\u793e\u533a\u600e\u4e48\u6837\u4e86\uff0c\u5c31\u6253\u5f00\u770b\u4e86\u770b\uff0c\u73b0\u5728\u5df2\u7ecf\u53d8\u6210\u4e86\u4e00\u4e2a\u7eaf\u8ba8\u8bba\u7ec4\uff0c\u8f6f\u4ef6\u4e0b\u8f7d\u3001\u6b63\u7248\u8f6f\u4ef6 agent \u3001\u4ea7\u54c1\u9500\u552e\u677f\u5757\u90fd\u6d88\u5931\u4e86\u3002</p>\n<p>\u65f6\u95f4\u8fc7\u5f97\u53ef\u771f\u5feb\u554a\uff0cappletuan \u6211\u521a\u624d\u4e5f\u770b\u4e86\u770b\uff0c\u8fd8\u6ca1\u6709\u5012\u95ed\u3002</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/WildLion", 
        "name": "WildLion", 
        "avatar": "https://cdn.v2ex.com/avatar/9e2d/be81/702580_large.png?m=1776135238"
      }, 
      "url": "https://www.v2ex.com/t/1205719", 
      "title": "producthunt \u65e5\u699c 17 \u540e\uff0c\u6211\u83b7\u5f97\u4ec0\u4e48", 
      "id": "https://www.v2ex.com/t/1205719", 
      "date_published": "2026-04-14T03:05:00+00:00", 
      "content_html": "4 \u6708 11 \u53f7\u7684\u65f6\u5019\uff0c\u7eaf\u51b7\u542f\u52a8\uff0c\u6ca1\u6709\u505a\u4efb\u4f55\u5ba3\u4f20\uff0c\u76f4\u63a5\u7c98\u7684\u4e0a\u4e00\u4e2a\u5e16\u5b50\u7684\u5185\u5bb9\uff0c\u53d1\u5e03\u5230 producthunt \u3002<br /><a target=\"_blank\" href=\"https://www.producthunt.com/products/uterminal\" rel=\"nofollow noopener\">https://www.producthunt.com/products/uterminal</a> \u73b0\u5728\u5df2\u7ecf\u7ed3\u675f\u4e86\u63a8\u5e7f\uff0c\u6240\u4ee5\u5e94\u8be5\u4e0d\u7b97\u63a8\u5e7f\u5427<br />\u7136\u540e\u5c45\u7136\u65e5\u699c 17 \uff0c\u5f88\u5947\u602a\u8fd9\u4e9b\u662f\u5426\u662f\u673a\u5668\u4eba\u505a\u7684<br />\u622a\u6b62\u5230\u76ee\u524d\u6211\u6536\u83b7 17 \u5c01\u90ae\u4ef6\uff0c18 \u4e2a\u6ce8\u518c\u7528\u6237\uff0c\u540c\u65f6\u8fd8\u6709\u4e24\u6b21\u7f51\u7ad9\u6076\u610f\u626b\u63cf\u54c8\u54c8\u54c8\u3002 <br /><br />17 \u5c01\u90ae\u4ef6\u4e3b\u8981\u6c47\u603b\u5982\u4e0b<br />1 \u3001\u83b7\u5ba2\u4e0e\u81ea\u52a8\u5316\u5916\u8054\uff0c\u901a\u8fc7 ai \u5e2e\u6211\u53bb\u53d1\u5783\u573e\u90ae\u4ef6\u505a\u63a8\u5e7f\uff08\u4ed8\u8d39\uff09<br />2 \u3001\u901a\u8fc7 AI \u65b0\u95fb\u7b80\u62a5\uff0c\u4ea7\u54c1\u53d1\u5e03\u7ad9\uff0c\u5de5\u5177/\u76ee\u5f55\u7ad9\u505a\u63a8\u5e7f\uff08\u514d\u8d39+\u4ed8\u8d39\uff09<br />3 \u3001\u5185\u5bb9\u8425\u9500\u4e0e\u793e\u533a\u63a8\u5e7f \u64ad\u5ba2\uff0cyoutube \uff0cReddit \uff08\u4ed8\u8d39\uff09<br />4 \u3001\u7ed9\u6211\u505a\u5b98\u7f51\uff08\u4ed8\u8d39\uff0c\u867d\u7136\u6211\u7f51\u7ad9\u4e11\uff09<br />5 \u3001\u505a\u77ed\u89c6\u9891\u5e7f\u544a\uff08\u4ed8\u8d39\uff09<br />6 \u3001\u505a\u6f0f\u6d1e\u626b\u63cf\uff08\u4ed8\u8d39\uff0c\u6211\u6000\u7591\u662f\u4e0d\u662f\u8fd9\u4e2a\u8001\u54e5\u626b\u63cf\u7684\uff09<br /><br />\u6709\u6ca1\u6709\u4eba\u505a\u8fc7\u7c7b\u4f3c\u53d1\u5e03\uff1f\u4f60\u4eec\u7b2c\u4e00\u6ce2\u6536\u5230\u7684\u90fd\u662f\u4ec0\u4e48"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/wuzhanggui", 
        "name": "wuzhanggui", 
        "avatar": "https://cdn.v2ex.com/avatar/14dc/2b25/496154_large.png?m=1767608575"
      }, 
      "url": "https://www.v2ex.com/t/1205698", 
      "title": "\u4e00\u4e2a\u5173\u4e8e AI \u7684\u70b9\u5b50\uff0c\u5927\u5bb6\u4e5f\u53ef\u8ba8\u8bba\u63d0\u51fa\u4e00\u4e9b\u65b0\u7684\u70b9\u5b50\u6216\u75db\u70b9\u3002", 
      "id": "https://www.v2ex.com/t/1205698", 
      "date_published": "2026-04-14T02:28:34+00:00", 
      "content_html": "<h3>\u53ef\u4ee5\u5c06 ai \u751f\u6210\u7684\u52a8\u4f5c\u4fdd\u5b58\u8d77\u6765</h3>\n<p>\u75db\u70b9\uff1a</p>\n<p>\u5f53 AI \u751f\u6210\u4e86\u4e00\u4e2a\u975e\u5e38\u597d\u7528\u7684\u52a8\u4f5c\u7684\u65f6\u5019\uff0c\u6bd4\u5982\u5c06\u4ec0\u4e48\u6587\u4ef6\u4e0a\u4f20\u5230\u670d\u52a1\u5668\u4ec0\u4e48\u4f4d\u7f6e\uff0c\u5f53\u6211\u53c8\u9700\u8981\u4e0a\u4f20\u7684\u65f6\u5019\uff0c\u53c8\u9700\u8981\u95ee\u4e00\u904d\u3002</p>\n<p>\u89e3\u51b3\u65b9\u6848\uff1a</p>\n<p>\u5c06 ai \u751f\u6210\u7684\u53ef\u7528\u7684\u52a8\u4f5c\u4fdd\u5b58\u8d77\u6765\uff0c\u4e0b\u4e00\u6b21\u76f4\u63a5\u6267\u884c\uff0c\u6216\u8005\u7528\u4e00\u4e2a\u66f4\u7b80\u5355\u7684\u63d0\u793a\u8bcd\u547d\u4ee4\u5b83\u5de5\u4f5c\uff0c\u76f8\u5f53\u4e8e\u8ba9\u5b83\u751f\u6210\u5de5\u4f5c\u6d41\uff0c\u4e14\u7528 ai \u7684\u95ee\u7b54\u65b9\u5f0f\u8ba9\u5b83\u518d\u6b21\u5de5\u4f5c\u4e14\u4e0d\u6d88\u8017 token \u3002</p>\n<p><a href=\"https://github.com/wurencaideli/ai-idea\" rel=\"nofollow\">\u5f00\u6e90\u5730\u5740</a></p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/chartloop", 
        "name": "chartloop", 
        "avatar": "https://cdn.v2ex.com/gravatar/b1b1acf9d6dedffac5e6e1a7976d7c02?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205680", 
      "title": "E220P-400T22S LoRa Module In-depth Analysis: Cost-effective Solution for Industrial Wireless Communication", 
      "id": "https://www.v2ex.com/t/1205680", 
      "date_published": "2026-04-14T01:55:30+00:00", 
      "content_html": "Introduction<br />Against the backdrop of rapid growth in the global wireless communication module market, QYResearch shows that the global wireless module market size reached US$6.972 billion in 2025, and is expected to exceed US$10.36 billion by 2032, with a CAGR of 5.9%. Among them, Sub-1GHz industrial-grade communication modules, as core connectivity components for smart metering, industrial sensing, building automation and other scenarios, continue to see rising market demand. Chengdu Ebyte Electronic Technology Co., Ltd., a leading domestic provider of wireless communication solutions, relying on industry-university-research cooperation with universities such as University of Electronic Science and Technology of China and Southwest Jiaotong University, has launched the E220P-400T22S LoRa wireless module, which has become an ideal choice for industrial IoT scenarios with its low power consumption, long range and high reliability features.<br /><br />Based on official manual parameters, this article comprehensively analyzes the technical features, application scenarios and deployment guidelines of the E220P-400T22S, providing selection references for industrial equipment developers.<br /><br /><br />Table of Contents<br /><br />Core Product Features<br /><br />Detailed Technical Specifications<br /><br />Hardware Design and Pin Definition<br /><br />Operating Modes and Function Description<br /><br />Configuration Method and Register Description<br /><br />Typical Application Scenarios<br /><br />Frequently Asked Questions and Solutions<br /><br />Selection Reference and Peer Comparison<br /><br /><br /><br />1. Core Product Features<br />The E220P-400T22S is a new generation LoRa wireless serial port module designed based on the Semtech LLCC68 chip. Compared with the traditional SX1276 solution, it achieves comprehensive improvements in transmission distance, speed and power consumption. The core advantages are as follows:<br /><br /><br /><br />Feature Category<br />Specific Parameters<br /><br /><br /><br /><br />Core Solution<br />Semtech LLCC68 LoRa chip<br /><br /><br />Operating Frequency Band<br />410.125 ~ 493.125MHz (default 433.125MHz)<br /><br /><br />Transmit Power<br />Maximum 22dBm, multi-level software adjustable<br /><br /><br />Communication Range<br />Up to 7km in ideal environment (5dBi antenna, 2.5m height, 2.4kbps rate)<br /><br /><br />Power Consumption Performance<br />Receive current 11mA, sleep current only 2\u03bcA<br /><br /><br />Reliability Design<br />Built-in PA+LNA, ESD protection, \u00b11PPM high-precision active crystal oscillator, industrial temperature range of -40\u2103~+85\u2103<br /><br /><br />Advanced Functions<br />Wake-on-air, carrier sense, communication encryption, RSSI signal strength detection<br /><br /><br />Interface Compatibility<br />UART TTL level, supports 3.3V/5V IO voltage, dual antenna options (IPEX/stamp hole)<br /><br /><br />This module supports parameter saving after power off, with built-in watchdog design, which can automatically restart under abnormal conditions to ensure long-term stable operation.<br /><br /><br />2. Detailed Technical Specifications<br />2.1 Absolute Maximum Ratings<br /><br /><br />Parameter<br />Minimum<br />Maximum<br />Remarks<br /><br /><br /><br /><br />Supply Voltage<br />2.3V<br />5.5V<br />Exceeding 5.5V will cause permanent damage<br /><br /><br />Operating Temperature<br />-40\u2103<br />+85\u2103<br />Industrial-grade design<br /><br /><br />Blocking Power<br />-<br />10dBm<br />Very low risk of burn-out for short-distance use<br /><br /><br />2.2 Operating Parameters<br /><br /><br />Parameter<br />Minimum<br />Typical<br />Maximum<br />Remarks<br /><br /><br /><br /><br />Supply Voltage<br />3.3V<br />5.0V<br />5.5V<br />\u22655.0V ensures optimal output power<br /><br /><br />Transmit Current<br />-<br />110mA<br />-<br />@<a target=\"_blank\" href=\"/member/22dBm\" rel=\"nofollow noopener\">22dBm</a> transmit power<br /><br /><br />Receive Current<br />-<br />11mA<br />-<br />Normal receive mode<br /><br /><br />Sleep Current<br />-<br />2\u03bcA<br />-<br />Software off mode<br /><br /><br />Receive Sensitivity<br />-132dBm<br />-135dBm<br />-136dBm<br />@<a target=\"_blank\" href=\"/member/2\" rel=\"nofollow noopener\">2</a>.4kbps air data rate<br /><br /><br />Air Data Rate<br />2.4kbps<br />2.4kbps<br />62.5kbps<br />Configurable via software<br /><br /><br />Transmit Packet Length<br />200Byte<br />-<br />-<br />Supports 32/64/128/200Byte sub-packet settings<br /><br /><br />Buffer Size<br />400Byte<br />-<br />-<br /><br /><br /><br />Module Dimensions<br />16*26mm<br />-<br />-<br />SMD package, 1.27mm pin pitch<br /><br /><br /><br />3. Hardware Design and Pin Definition<br />3.1 Pin Layout<br />The E220P-400T22S adopts a 22-pin SMD package. The core pin definitions are as follows:<br /><br /><br /><br />Pin Number<br />Name<br />Direction<br />Function Description<br /><br /><br /><br /><br />1/2/3/4/11/13/19/20/22<br />GND<br />-<br />Power ground<br /><br /><br />5<br />M0<br />Input (weak pull-up)<br />Used with M1 to set operating mode, can be grounded if not used<br /><br /><br />6<br />M1<br />Input (weak pull-up)<br />Used with M0 to set operating mode, can be grounded if not used<br /><br /><br />7<br />RXD<br />Input<br />UART receive, connects to TXD pin of external MCU<br /><br /><br />8<br />TXD<br />Output<br />UART transmit, connects to RXD pin of external MCU<br /><br /><br />9<br />AUX<br />Output<br />Module operating status indicator, can be used to wake up external MCU, can be left floating if not used<br /><br /><br />10<br />VCC<br />-<br />Power input, 2.3~5.5V DC<br /><br /><br />21<br />ANT<br />-<br />Antenna interface, connects to 50\u03a9 impedance antenna<br /><br /><br />12/14-18<br />NC<br />-<br />No connection pins, no need to connect<br /><br /><br />3.2 Hardware Design Notes<br /><br />Power Design: It is recommended to use a DC regulated power supply with as small ripple coefficient as possible, reserve more than 30% power margin, and ensure reliable grounding of the module.<br /><br />Wiring Specification: High-frequency digital traces, analog traces and power lines should avoid passing under the module. If necessary, lay copper on the contact layer of the module and ground it well.<br /><br />Electromagnetic Compatibility: The module should be kept away from strong electromagnetic interference sources such as power supplies, transformers and high-frequency wiring, and maintain an appropriate distance from 2.4GHz devices such as USB 3.0.<br /><br />Antenna Deployment: The antenna should be exposed as much as possible and vertically upward. If installed in a metal case, use an antenna extension cable to lead the antenna out of the case to avoid signal attenuation.<br /><br /><br /><br />4. Operating Modes and Function Description<br />4.1 Operating Mode Switching<br />The module supports 4 operating modes, set by the level combination of M0 and M1 pins:<br /><br /><br /><br />Mode<br />M1<br />M0<br />Function Description<br /><br /><br /><br /><br />0 (Normal Transmission Mode)<br />0<br />0<br />UART and wireless channel fully open, transparent transmission mode<br /><br /><br />1 (WOR Transmit Mode)<br />0<br />1<br />Supports wake-on-air, can send data to wake up devices in WOR receive mode<br /><br /><br />2 (WOR Receive Mode)<br />1<br />0<br />Wireless transmission off, only receives data, suitable for low-power battery-powered scenarios<br /><br /><br />3 (Deep Sleep Mode)<br />1<br />1<br />Cannot send/receive data, can enter register configuration mode<br /><br /><br /><br />Mode switching takes effect 2ms after the AUX pin outputs high level. If the module is processing data, it will automatically switch to the new mode after data processing is completed.<br /><br /><br />4.2 Core Function Description<br />4.2.1 Fixed Transmission Mode<br />In fixed transmission mode, the module identifies the first 3 bytes of serial port received data as target address high byte + target address low byte + target channel, and only sends data to modules with the specified address and channel, realizing point-to-point directed communication.<br /><br />4.2.2 Broadcast Transmission Mode<br />When the module address is set to 0xFFFF or 0x0000, as a transmitter, it can broadcast data to all modules under the same channel; as a receiver, it can monitor communication data of all modules under the same channel, suitable for group communication and network monitoring scenarios.<br /><br />4.2.3 AUX Pin Function<br />The AUX pin is used to indicate the module operating status:<br /><br /><br />Low level indicates the module is busy (data transmission in progress, self-check initialization in progress), cannot switch operating mode<br /><br />High level indicates the module is idle, mode switching and data transmission can be performed<br /><br />When receiving data, AUX will pull low 2-3ms in advance to wake up the external MCU to prepare for data reception<br /><br /><br /><br />5. Configuration Method and Register Description<br />The module needs to enter deep sleep mode (M1=1, M0=1) for parameter configuration, supports 9600bps 8N1 serial communication format. The core command formats are as follows:<br /><br /><br /><br />Command Type<br />Send Format<br />Return Format<br />Example<br /><br /><br /><br /><br />Set Register<br />C0 + start address + length + parameters<br />C1 + start address + length + parameters<br />Set channel to 0x09: send C0 05 01 09, return C1 05 01 09<br /><br /><br />Read Register<br />C1 + start address + length<br />C1 + start address + length + parameters<br />Read channel: send C1 05 01, return C1 05 01 09<br /><br /><br />Temporary Set Register<br />C2 + start address + length + parameters<br />C1 + start address + length + parameters<br />Parameters are only valid for the current power-on cycle, restore default values after restart<br /><br /><br />5.1 Core Register Description<br /><br /><br />Address<br />Name<br />Function Description<br /><br /><br /><br /><br />00H-01H<br />ADDH/ADDL<br />Module address, default 0x0000, supports broadcast/monitoring when set to 0xFFFF<br /><br /><br />02H<br />REG0<br />Configure UART baud rate (1200~115200bps), parity bit, air data rate (2.4~62.5kbps)<br /><br /><br />03H<br />REG1<br />Configure sub-packet length (32/64/128/200Byte), RSSI noise detection switch, transmit power (10~22dBm)<br /><br /><br />04H<br />REG2<br />Channel setting, 0-83 corresponds to 410.125~493.125MHz, step 1MHz<br /><br /><br />05H<br />REG3<br />Configure RSSI byte output, transmission mode (transparent/fixed), LBT monitoring, WOR cycle (500~4000ms)<br /><br /><br />06H-07H<br />CRYPT_H/CRYPT_L<br />Communication encryption key, write-only, cannot be read, ensuring data transmission security<br /><br /><br />5.2 Factory Default Parameters<br /><br /><br />Parameter Item<br />Default Value<br /><br /><br /><br /><br />Operating Frequency<br />433.125MHz<br /><br /><br />Module Address<br />0x0000<br /><br /><br />Air Data Rate<br />2.4kbps<br /><br /><br />Serial Baud Rate<br />9600bps, 8N1<br /><br /><br />Transmit Power<br />22dBm<br /><br /><br />Transmission Mode<br />Transparent transmission<br /><br /><br /><br />6. Typical Application Scenarios<br />The industrial-grade design of the E220P-400T22S makes it widely applicable to the following scenarios:<br /><br />6.1 Smart Metering System<br />In remote water, electricity, gas and heat metering scenarios, the low-power feature of the module supports battery power supply, 7km communication range can cover large-scale residential areas, and encryption function ensures metering data security, greatly reducing manual meter reading costs.<br /><br />6.2 Industrial Sensor Network<br />In factory environments, the module can connect to various temperature, humidity, pressure and liquid level sensors to realize wireless collection of production data. The anti-interference design ensures stable communication in complex electromagnetic environments, providing data support for industrial Internet platforms.<br /><br />6.3 Building Automation<br />Used for wireless communication in intelligent lighting, elevator monitoring and fire alarm systems, avoiding complex wiring, supporting multi-node networking, and reducing construction difficulty and cost of building intelligent transformation.<br /><br />6.4 Agricultural IoT<br />In field planting and livestock breeding scenarios, the module can connect to soil monitoring and environmental sensing equipment to realize remote data collection and equipment control. The low-power feature is suitable for field battery-powered deployment.<br /><br />6.5 Intelligent Security System<br />Used for wireless anti-theft alarm, access control and video monitoring data backhaul. The long-distance communication feature is suitable for large-scale security deployment in parks and factories.<br /><br /><br />7. Frequently Asked Questions and Solutions<br />7.1 Short Communication Range<br />Possible Causes:<br /><br /><br />Obstacles, same-band interference, or metal objects near the antenna<br /><br />Air data rate set too high (higher rate leads to shorter transmission distance)<br /><br />Insufficient power supply voltage, resulting in reduced transmit power<br /><br />Poor antenna matching or low-quality antenna<br /><br /><br />Solutions:<br /><br /><br />Elevate the antenna installation height as much as possible, avoid obstacles and interference sources<br /><br />Reduce the air data rate, adjust the transmit power to the maximum value<br /><br />Ensure the power supply voltage is \u22655V, use a regulated power supply<br /><br />Replace a matched high-gain antenna, use an antenna extension cable when deployed inside a metal case<br /><br /><br />7.2 Module Easy to Damage<br />Possible Causes:<br /><br /><br />Power supply voltage exceeds 5.5V or reverse polarity connection<br /><br />Unreleased static electricity causing chip breakdown<br /><br />Operating environment humidity too high or temperature out of range<br /><br /><br />Solutions:<br /><br /><br />Add over-voltage and reverse polarity protection circuits, strictly control the power supply voltage<br /><br />Implement electrostatic protection during installation and operation, ensure good module grounding<br /><br />Avoid using in environments exceeding the -40\u2103~+85\u2103 range<br /><br /><br />7.3 High Bit Error Rate<br />Possible Causes:<br /><br /><br />Same-frequency signal interference nearby<br /><br />Unstable power supply causing communication abnormalities<br /><br />Antenna extension cable too long or poor quality<br /><br /><br />Solutions:<br /><br /><br />Switch the communication channel to avoid interference frequency bands<br /><br />Optimize power supply design, add filter capacitors<br /><br />Shorten the antenna feeder length, use low-loss coaxial cable<br /><br /><br /><br />8. Selection Reference and Peer Comparison<br />8.1 Peer Product Parameter Comparison<br /><br /><br />Product Model<br />Core Chip<br />Transmit Power<br />Maximum Communication Range<br />Receive Current<br />Package Size<br /><br /><br /><br /><br />E220P-400T22S<br />LLCC68<br />22dBm<br />7km<br />11mA<br />16*26mm<br /><br /><br />E220-400T30S<br />LLCC68<br />30dBm<br />10km<br />12mA<br />18*28mm<br /><br /><br />Competitor SX1276 Module<br />SX1276<br />20dBm<br />5km<br />15mA<br />17*26mm<br /><br /><br />8.2 Matching Antenna Recommendations<br />Ebyte officially provides a variety of matching antennas for selection:<br /><br /><br /><br />Antenna Model<br />Type<br />Gain<br />Application Scenario<br /><br /><br /><br /><br />TX433-JZ-5<br />Rubber Antenna<br />2.0dBi<br />Short-distance devices, handheld terminals<br /><br /><br />TX433-JK-20<br />Rubber Antenna<br />3.0dBi<br />Medium-distance transmission, fixed equipment<br /><br /><br />TX433-XPH-300<br />Suction Cup Antenna<br />6.0dBi<br />Long-distance transmission, outdoor deployment<br /><br /><br /><br />About Ebyte<br />Chengdu Ebyte Electronic Technology Co., Ltd. is a national high-tech enterprise focusing on wireless communication applications. Its products cover the full range of wireless modules including LoRa, Bluetooth, Wi-Fi and 5G, which are widely used in industrial IoT, smart home, smart agriculture and other fields. The company has established technical cooperation with multiple universities around the world, and its products have passed international certifications such as FCC, CE and RoHS, and are exported to more than 160 countries and regions. It can provide customers with customized development and one-stop wireless communication solutions.<br /><br /><br />Official Website: <a target=\"_blank\" href=\"https://www.cdebyte.com\" rel=\"nofollow noopener\">https://www.cdebyte.com</a><br /><br />Technical Support: support@cdebyte.com<br /><br />Address: Building B5, Mould Park, 199 Xiqu Avenue, High-tech Zone, Chengdu, Sichuan, China"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Daniel6606", 
        "name": "Daniel6606", 
        "avatar": "https://cdn.v2ex.com/gravatar/e9b5950c9309a00d65c74ba18711e65f?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205665", 
      "title": "\u5546\u6c64 + NTU \u505a\u4e86\u4e2a\u4e0d\u7528 Vision Encoder \u4e5f\u4e0d\u7528 VAE \u7684\u591a\u6a21\u6001\u6a21\u578b\uff0c\u7ed3\u679c\u8fd8\u633a\u80fd\u6253", 
      "id": "https://www.v2ex.com/t/1205665", 
      "date_published": "2026-04-14T01:21:49+00:00", 
      "content_html": "<p>\u535a\u5ba2\uff1a <a href=\"https://huggingface.co/blog/sensenova/neo-unify\" rel=\"nofollow\">https://huggingface.co/blog/sensenova/neo-unify</a>\n\u53eb NEO-unify \uff0c\u4e3b\u8981\u5356\u70b9\u662f\u628a\u591a\u6a21\u6001\u91cc\u6700\"\u7406\u6240\u5f53\u7136\"\u7684\u4e24\u4e2a\u7ec4\u4ef6\u90fd\u6254\u6389\u4e86\uff1a\n1.\u4e0d\u7528 Vision Encoder \uff08 CLIP/SigLIP \u4e4b\u7c7b\u7684\uff09\n2.\u4e0d\u7528 VAE</p>\n<p>\u76f4\u63a5\u4ece\u539f\u59cb\u50cf\u7d20\u51fa\u53d1\uff0c\u7406\u89e3\u548c\u751f\u6210\u4e24\u6761\u8def\u5f84\u90fd\u585e\u5728\u4e00\u4e2a\u53eb MoT \uff08 Mixture-of-Transformer \uff09\u7684\u9aa8\u5e72\u91cc\u3002\u6587\u672c\u7528\u81ea\u56de\u5f52\u4ea4\u53c9\u71b5\uff0c\u56fe\u50cf\u751f\u6210\u7528 pixel flow matching \uff0c\u7edf\u4e00\u8bad\u7ec3\u3002\n\u6bd4\u8f83\u6709\u610f\u601d\u7684\u51e0\u4e2a\u5730\u65b9\uff1a</p>\n<ul>\n<li>\u56fe\u50cf\u91cd\u5efa\u8d28\u91cf\u4e0a\uff0c2B \u7684\u6a21\u578b\u5728 MS COCO \u4e0a\u8dd1\u51fa\u6765 PSNR 31.56 / SSIM 0.85 \uff0cFlux \u7684 VAE \u662f 32.65 / 0.91 \uff0c\u5dee\u8ddd\u6ca1\u60f3\u8c61\u4e2d\u5927\uff0c\u800c\u4e14\u8fd9\u662f\u5728 90K pretraining step \u4e4b\u540e\u7684\u6210\u7ee9</li>\n<li>\u628a\u7406\u89e3\u5206\u652f\u5b8c\u5168\u51bb\u4f4f\uff0c\u53ea\u8bad\u7ec3\u751f\u6210\u5206\u652f\uff0c\u56fe\u50cf\u7f16\u8f91\u5c45\u7136\u8fd8\u80fd\u7528\uff0cImgEdit \u5f97\u5206 3.32</li>\n<li>\u58f0\u79f0\u6bd4 Bagel \u6570\u636e\u5229\u7528\u7387\u9ad8\u2014\u2014\u540c\u6837\u7684 benchmark \uff0c\u7528\u66f4\u5c11\u7684 token \u8bad\u51fa\u6765\u66f4\u9ad8\u7684\u6027\u80fd</li>\n</ul>\n<p>\u6a21\u578b\u8fd8\u6ca1\u5f00\u6e90\uff0c\u56e2\u961f\u5728 HF \u8bc4\u8bba\u533a\u8bf4\u6b63\u5728\u51c6\u5907\uff0ctech report \u4e5f\u5728\u8def\u4e0a\u3002\n\u611f\u89c9\u8fd9\u4e2a\u601d\u8def\uff08\u5f7b\u5e95\u53bb\u6389\u9884\u8bad\u7ec3\u7f16\u7801\u5668\uff0c\u8ba9\u6a21\u578b\u81ea\u5df1\u4ece\u50cf\u7d20\u91cc\u5b66\u8868\u793a\uff09\u5982\u679c\u771f\u80fd scale \u8d77\u6765\u662f\u633a\u6709\u610f\u601d\u7684\uff0c\u73b0\u5728\u7684\u591a\u6a21\u6001\u57fa\u672c\u90fd\u4f9d\u8d56 CLIP \u7cfb\u7684\u5148\u9a8c\uff0c\u8fd9\u6761\u8def\u5982\u679c\u8d70\u901a\u4e86\u67b6\u6784\u4f1a\u5e72\u51c0\u4e0d\u5c11\u3002\n\u6709\u6ca1\u6709\u505a\u8fc7\u7c7b\u4f3c UMM \u5de5\u4f5c\u7684 v \u53cb\uff0c\u8fd9\u79cd\u65b9\u5411\u5b9e\u9645\u4e0a\u8bad\u8d77\u6765\u5751\u591a\u5417\uff1f</p>\n<p>\u62ff\u5230\u4e86\u4ed6\u4eec\u7684 discord server \u9080\u8bf7\u7801\uff1a <a href=\"https://discord.gg/vh5SE45D8b\" rel=\"nofollow\">https://discord.gg/vh5SE45D8b</a></p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/crocoBaby", 
        "name": "crocoBaby", 
        "avatar": "https://cdn.v2ex.com/avatar/9c8e/c915/674411_large.png?m=1773041475"
      }, 
      "url": "https://www.v2ex.com/t/1205659", 
      "title": "XChat \u66ff\u4ee3 tg \u8fd8\u662f wx", 
      "id": "https://www.v2ex.com/t/1205659", 
      "date_published": "2026-04-14T01:02:47+00:00", 
      "content_html": "\u6709\u4f6c\u6df1\u5ea6\u8bc4\u6d4b\u4e48"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/mk3s", 
        "name": "mk3s", 
        "avatar": "https://cdn.v2ex.com/gravatar/5ecfeef930996da63c2ee87ffcde03a7?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205654", 
      "title": "\u865a\u62df\u673a\u6302\u5fae\u4fe1\u4e5f\u4f1a\u6389\u7ebf", 
      "id": "https://www.v2ex.com/t/1205654", 
      "date_published": "2026-04-14T00:58:06+00:00", 
      "content_html": "<p>\u53c2\u8003\u8fd9\u4e2a t/1154274 \uff0c\u6211\u7528 pve \u8dd1\u865a\u62df\u673a\u6302\u5fae\u4fe1\uff0c\u7b2c\u4e8c\u5929\u65e9\u4e0a\u8d77\u6765\uff0c\u6bd4\u6389\u7ebf\uff0c\u6ca1\u60f3\u5230\u5fae\u4fe1\u4e5f\u4f1a\u68c0\u6d4b\u865a\u62df\u673a\uff0c\u770b\u6765\u53ea\u80fd\u5728\u6211\u7684\u5b9e\u4f53\u7684\u5c0f\u4e3b\u673a\u4e0a\u6302\u5fae\u4fe1\u6d4b\u8bd5\u4e00\u4e0b\u662f\u4e0d\u662f\u56e0\u4e3a\u865a\u62df\u673a\u7684\u95ee\u9898\u4e86</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Inn0Vat10n", 
        "name": "Inn0Vat10n", 
        "avatar": "https://cdn.v2ex.com/gravatar/d2fc5757eda86e59e8d10715bacf9ca6?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205653", 
      "title": "\u56fd\u5185\u5e73\u53f0\u9884\u5b9a\u6d77\u5916\u9152\u5e97\u7684\u4ef7\u683c\u5dee\u5f02\u597d\u6050\u6016", 
      "id": "https://www.v2ex.com/t/1205653", 
      "date_published": "2026-04-14T00:55:29+00:00", 
      "content_html": "<p>\u4e94\u4e00\u671f\u95f4,\u540c\u6837\u4e00\u5bb6\u9152\u5e97, \u540c\u6837\u7684\u623f\u578b\u548c\u65f6\u95f4,\u643a\u7a0b 7000, \u7f8e\u56e2 3500, \u98de\u732a 3200, \u54b8\u9c7c\u4e0a\u8054\u7cfb\u4e86\u4e2a\u4ee3\u8ba2, 1200...</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/worss", 
        "name": "worss", 
        "avatar": "https://cdn.v2ex.com/gravatar/fd20900989cd01c0691559467b1bbe82?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205598", 
      "title": "\u6709\u4eba\u5728\u7528\u7535\u89c6\u770b\u4e66\u5417", 
      "id": "https://www.v2ex.com/t/1205598", 
      "date_published": "2026-04-13T13:54:23+00:00", 
      "content_html": "\u624b\u91cc\u62ff\u7740\u84dd\u7259\u9065\u63a7\u5668<br />\u600e\u4e48\u8212\u670d\u600e\u4e48\u8eba<br />\u7528\u7535\u89c6\u770b\u4e66<br /><br />\u63a8\u8350\u4e2a\u8f6f\u4ef6<br />the.pdfviewer3<br />\u7ffb\u9875\u65f6\u652f\u6301\u4f7f\u7528\u9065\u63a7\u5668\u4e0a\u7684\u4e0a\u4e0b\u952e\u7ffb\u9875<br /><br />\u53ef\u4ee5\u63a8\u8350\u4e9b\u76f8\u5173\u8f6f\u4ef6\u5417<br />\u6bd4\u5982\u652f\u6301 EPUB \u3001TXT \u3001MOBI \u3001AZW \u3001AZW3 \u3001PDF \u7684\u9605\u8bfb\u5668"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/gangsta", 
        "name": "gangsta", 
        "avatar": "https://cdn.v2ex.com/avatar/42ab/bf19/31225_large.png?m=1776075648"
      }, 
      "url": "https://www.v2ex.com/t/1205571", 
      "date_modified": "2026-04-13T11:16:21+00:00", 
      "content_html": "<p><a href=\"https://v.ikanbot.com/\" rel=\"nofollow\">\u7231\u770b\u673a\u5668\u4eba</a>\u662f\u4e00\u4e2a\u5728\u7ebf\u770b\u7535\u5f71\u7684\u7f51\u7ad9\uff0c\u8d44\u6e90\u975e\u5e38\u591a\uff0c\u5c24\u5176\u7ecf\u5178\u7535\u5f71\u8d44\u6e90\uff0c\u76f8\u5bf9\u51b7\u95e8\u7684\u8d44\u6e90\u548c\u65b0\u7247\u4e5f\u6709\u4e0d\u5c11\u3002\n\u800c\u4e14\u56e0\u4e3a\u5927\u90e8\u5206\u7247\u6e90\u7684\u7801\u7387\u548c\u5206\u8fa8\u7387\u90fd\u88ab\u538b\u7f29\u7684\u5f88\u4f4e\uff0c\u56e0\u6b64\u8d44\u6e90\u7684\u5728\u7ebf\u89c2\u770b\u901f\u5ea6\u4e5f\u8fd8\u884c\u3002\u90e8\u5206\u7247\u6e90\u751a\u81f3\u6709\u9ad8\u6e05\u8d44\u6e90\u3002</p>\n<p>\u4e0d\u8fc7\u8fd9\u4e2a\u7f51\u7ad9\u6709\u51e0\u4e2a\u95ee\u9898\uff1a</p>\n<ol>\n<li>\u51e0\u4e4e\u6240\u6709\u7247\u6e90\u90fd\u88ab\u4e8c\u6b21\u538b\u5165\u5404\u79cd\u4e71\u4e03\u516b\u7cdf\u7684\u83e0\u83dc \u3001du*\u573a\u5e7f\u544a\uff1b</li>\n<li>\u7f51\u7ad9\u5728\u6682\u505c/\u64ad\u653e\u548c\u5207\u6362\u7ebf\u8def\u65f6\u52a0\u4e86\u5f39\u7a97\u5e7f\u544a\uff08\u51c6\u786e\u7684\u8bf4\u5e94\u8be5\u662f\u5728\u65b0\u7a97\u53e3\u6253\u5f00\u4e00\u4e2a\u7b2c\u4e09\u65b9\u5e7f\u544a\u7f51\u7ad9\uff09\uff0c\u5b9e\u6d4b AdBlock \u7b49\u5e7f\u544a\u63d2\u4ef6\u4e5f\u4e0d\u592a\u5bb9\u6613\u5c4f\u853d\uff1b</li>\n<li>\u90e8\u5206\u7ebf\u8def\u8d44\u6e90\u8fc7\u671f\uff0c\u4f46\u9875\u9762\u65e0\u63d0\u793a\uff0c\u9700\u8981\u4e0d\u65ad\u70b9\u51fb\u5207\u6362\u7ebf\u8def\u624b\u52a8\u68c0\u6d4b\uff0c\u4f46\u6b64\u65f6\u5f88\u5bb9\u6613\u89e6\u53d1\u7b2c\u4e8c\u70b9\u63d0\u5230\u7684\u5e7f\u544a\uff1b</li>\n</ol>\n<p>\u56e0\u4e3a\u6700\u8fd1\u5728\u51fa\u5dee\uff0c\u9152\u5e97\u7684\u7f51\u901f\u53ea\u80fd\u52c9\u5f3a\u652f\u6301\u8fd9\u79cd\u4f4e\u6e05\u753b\u8d28\u7684\u5728\u7ebf\u89c2\u770b\uff08\u5176\u5b9e\u624b\u673a\u4e0a\u89c2\u611f\u52c9\u5f3a\u53ef\u4ee5\u63a5\u53d7\u5427\uff09\uff0c\u603b\u4e4b\u6709\u8fd9\u4e2a\u9700\u6c42\u4e86\uff0c\u4e8e\u662f\u82b1\u4e86\u4e00\u4e2a\u5c0f\u65f6\u7528 AI \u64b8\u4e86\u8fd9\u4e2a\u811a\u672c\u3002</p>\n<p>\u4f7f\u7528\u65b9\u6cd5\uff1a</p>\n<ol>\n<li>\u6253\u5f00\u4efb\u610f\u8c46\u74e3\u7535\u5f71\u9875\u9762\uff0c\u811a\u672c\u81ea\u52a8\u6293\u53d6\u7231\u770b\u673a\u5668\u4eba\u8d44\u6e90\uff08\u540c\u540d\u8d44\u6e90\u6bd4\u8f83\u591a\uff0c\u56e0\u6b64\u628a\u89e3\u6790\u51fa\u6765\u7684 HTML \u653e\u5230\u4e86\u5217\u8868\uff09\uff0c\u9700\u8981\u624b\u52a8\u5339\u914d\u4e00\u4e0b\uff0c\u7136\u540e\u70b9\u51fb\u4f60\u8ba4\u4e3a\u5339\u914d\u7684\u8d44\u6e90\u540d\u79f0\uff08\u4e00\u822c\u5728\u524d\u51e0\u4e2a\uff09\uff0c\u8fdb\u5165\u7231\u770b\u673a\u5668\u4eba\u64ad\u653e\u9875\u9762\uff08\u5982\u679c\u4f60\u5df2\u7ecf\u5904\u5728\u7231\u770b\u673a\u5668\u4eba\u7f51\u7ad9\u4e86\uff0c\u7b2c\u4e00\u6b65\u4e5f\u662f\u975e\u5fc5\u987b\u7684\uff09\uff1b</li>\n<li>\u5728\u64ad\u653e\u5668\u9875\u9762\u811a\u672c\u518d\u6b21\u8fdb\u884c\u6293\u53d6\u548c\u89e3\u6790\u5f53\u524d\u9875\u9762\u6240\u6709\u7684 m3u8 \u64ad\u653e\u5730\u5740\uff0c\u5e76\u4ee5\u5217\u8868\u5f62\u5f0f\u5217\u51fa\uff0c\u540c\u65f6\u4f1a\u68c0\u6d4b\u6bcf\u4e2a\u94fe\u63a5\u7684\u53ef\u7528\u6027\uff1b</li>\n<li>\u9009\u62e9\u4e00\u4e2a\u53ef\u7528\u7684\u8d44\u6e90\u94fe\u63a5\u5728\u65b0\u7a97\u53e3\u6253\u5f00\uff0c\u6b64\u65f6\u5df2\u7ecf\u8131\u79bb\u4e86\u7231\u770b\u673a\u5668\u4eba\uff0c\u53ef\u65e0\u5e7f\u544a\u89c2\u770b\uff08\u4f46\u4e0a\u9762\u63d0\u5230\u7684\u7b2c\u4e00\u70b9\u5185\u5d4c\u7684\u5e7f\u544a\u4ecd\u7136\u65e0\u89e3\uff09\u3002</li>\n</ol>\n<h4>\u540e\u7eed\u64cd\u4f5c\uff1a</h4>\n<p>\u53d7\u9650\u811a\u672c\u80fd\u529b\uff0c\u76ee\u524d\u8fd8\u5e76\u4e0d\u652f\u6301\u4ece m3u8 \u89e3\u6790\u518d\u63d0\u53d6\u5206\u7247\u6587\u4ef6\u5408\u5e76\u540e\u4e0b\u8f7d\uff08\u4e5f\u8bb8\u6709\uff1f\u4f46\u6211\u6ca1\u505a\u592a\u591a\u7814\u7a76\uff09\u3002\n\u4f46\u4f60\u53ef\u4ee5\u628a\u62ff\u5230\u7684 m3u8 \u7684\u94fe\u63a5\u7c98\u8d34\u5230\u4e00\u4e9b\u5177\u5907\u8be5\u80fd\u529b\u7684\u624b\u673a\u6d4f\u89c8\u5668\u4e2d\uff08\u6211\u81ea\u5df1\u7528 Alook \u6d4f\u89c8\u5668\u6d4b\u8bd5\u6ca1\u95ee\u9898\uff09\uff0c\u53ef\u4ee5\u89e3\u6790\u5f97\u5230\u89c6\u9891\u7684\u771f\u5b9e\u5730\u5740\uff0c\u901a\u5e38\u662f.mp4 \u6587\u4ef6\uff0c\u6b64\u65f6\u53ef\u76f4\u63a5\u5c06\u89c6\u9891\u4e0b\u8f7d\u5230\u672c\u5730\u3002</p>\n<p><img alt=\"\u66ff\u4ee3\u6587\u5b57\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/0rdJdXD.png\"/>\n<img alt=\"\u66ff\u4ee3\u6587\u5b57\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/Blof9gt.png\"/></p>\n<h3>\u5176\u4ed6\u95ee\u9898\uff1a</h3>\n<ol>\n<li>\u53d7\u5230 Tampermonkey \u548c Chrome \u6743\u9650\u786e\u8ba4\u673a\u5236\u7684\u5f71\u54cd\uff0c\u5728\u8c03\u7528 @connect \u65f6\u53ef\u80fd\u4f1a\u4e0d\u505c\u5f39\u51fa\u6743\u9650\u786e\u8ba4\u7684\u63d0\u793a\u3002\n\u56e0\u4e3a\u7231\u770b\u673a\u5668\u4eba\u4e5f\u662f\u6293\u53d6\u7684\u7b2c\u4e09\u65b9\u8d44\u6e90\uff0c\u57df\u540d\u975e\u5e38\u591a\uff0c\u8fd9\u91cc\u5c31\u4e0d\u63d0\u524d\u58f0\u660e\u4e86\u3002\u70b9\u51fb\u5b8c\u786e\u8ba4\u540e\uff0c\u8d44\u6e90\u53ef\u4ee5\u6b63\u5e38\u6293\u53d6\uff1b</li>\n<li>\u6b63\u5982\u4e0a\u9762\u63d0\u5230\u7684\uff0c\u5e76\u4e0d\u4e00\u5b9a\u975e\u8981\u4ece\u8c46\u74e3\u7535\u5f71\u8fdb\u5165\uff0c\u7231\u770b\u673a\u5668\u4eba\u64ad\u653e\u8be6\u60c5\u9875\u53ef\u4ee5\u76f4\u63a5\u89e3\u6790\uff0c\u4f46\u56e0\u4e3a\u4e24\u8fb9\u7684\u903b\u8f91\u90fd\u6bd4\u8f83\u7b80\u5355\uff0c\u987a\u624b\u52a0\u4e0a\u4e86\u3002</li>\n</ol>\n<h2>\u5b89\u88c5\u5730\u5740</h2>\n<p><a href=\"https://greasyfork.org/zh-CN/scripts/567602\" rel=\"nofollow\">https://greasyfork.org/zh-CN/scripts/567602</a></p>\n", 
      "date_published": "2026-04-13T11:14:44+00:00", 
      "title": "\u5199\u4e86\u4e00\u4e2a(\u8c46\u74e3\u7535\u5f71\u9875\u9762)\u6293\u53d6/\u89e3\u6790\u7231\u770b\u673a\u5668\u4eba\u8d44\u6e90\u7684 Tampermonkey \u811a\u672c", 
      "id": "https://www.v2ex.com/t/1205571"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/SayHelloHi", 
        "name": "SayHelloHi", 
        "avatar": "https://cdn.v2ex.com/avatar/d961/3cd9/563553_large.png?m=1749532589"
      }, 
      "url": "https://www.v2ex.com/t/1205570", 
      "title": "AI \u4e2d\u8f6c\u7ad9\u68c0\u6d4b\u5de5\u5177", 
      "id": "https://www.v2ex.com/t/1205570", 
      "date_published": "2026-04-13T11:09:23+00:00", 
      "content_html": "<p><a href=\"https://cctest.ai/zh\" rel=\"nofollow\">https://cctest.ai/zh</a></p>\n<p><a href=\"https://hvoy.ai/\" rel=\"nofollow\">https://hvoy.ai/</a></p>\n<hr/>\n<p>\u4ec5\u5206\u4eab \u8bf7\u81ea\u884c\u5224\u65ad\uff5e</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/kevin96", 
        "name": "kevin96", 
        "avatar": "https://cdn.v2ex.com/avatar/e567/c10e/615517_large.png?m=1775614096"
      }, 
      "url": "https://www.v2ex.com/t/1205565", 
      "title": "\u53d1\u73b0\u4e00\u4e2a AI \u8d26\u53f7\u6ce8\u518c\u4e0e\u7ba1\u7406\u7684\u4e00\u7ad9\u5f0f\u5de5\u5177\u96c6\u5f00\u6e90\u9879\u76ee\uff0c\u5927\u5bb6\u6298\u817e\u8d77\u6765\uff01", 
      "id": "https://www.v2ex.com/t/1205565", 
      "date_published": "2026-04-13T10:46:26+00:00", 
      "content_html": "<p>\u6700\u8fd1\u770b\u5230\u4e00\u4e2a\u6574\u7406\u5f97\u6bd4\u8f83\u5168\u7684\u5f00\u6e90\u9879\u76ee AI-Account-Toolkit \u5206\u4eab\u7ed9\u5927\u5bb6\uff0c \u8fd9\u4e2a\u9879\u76ee\u662f AI \u8d26\u53f7\u6ce8\u518c\u4e0e\u7ba1\u7406\u7684\u4e00\u7ad9\u5f0f\u5de5\u5177\u96c6\u3002\u5b83\u628a ChatGPT \u3001Claude \u3001Gemini \u3001Codex \u3001Cursor \u3001Grok \u7b49\u76f8\u5173\u573a\u666f\u7684\u5de5\u5177\u505a\u4e86\u96c6\u4e2d\u6536\u5f55\uff0c\u540c\u65f6\u6db5\u76d6\u4e34\u65f6\u90ae\u7bb1\u3001Token \u7ba1\u7406\u3001\u8d26\u53f7\u6c60\u7f16\u6392\u7b49\u80fd\u529b\uff0c\u6574\u4f53\u662f\u6a21\u5757\u5316\u7ec4\u7ec7\uff0cREADME \u91cc\u7684\u9879\u76ee\u5bfc\u822a\u3001\u5feb\u901f\u5f00\u59cb\u3001\u6ce8\u610f\u4e8b\u9879\u548c\u6545\u969c\u6392\u9664\u4e5f\u5199\u5f97\u6bd4\u8f83\u6e05\u6670\uff0c\u9002\u5408\u60f3\u7cfb\u7edf\u4e86\u89e3\u8fd9\u7c7b\u5de5\u5177\u94fe\u7684\u5f00\u53d1\u8005\u505a\u53c2\u8003\u548c\u7814\u7a76\u3002</p>\n<p>\u4ed3\u5e93\u91c7\u7528 MIT \u534f\u8bae\uff0c\u6211\u4e5f\u6298\u817e\u4e86\u4e00\u4e0b\uff0c\u867d\u7136\u5f88\u591a\u65b9\u6cd5\u53ef\u80fd\u65e0\u6cd5\u987a\u5229\u8dd1\u901a\uff0c\u4f46\u8fd9\u4e2a\u96c6\u5408\u8fd8\u662f\u633a\u6709\u610f\u601d\uff0c\u9002\u5408\u7231\u6298\u817e\u7684\u3002</p>\n<p>\u58f0\u660e\u6211\u4e0d\u662f\u9879\u76ee\u4f5c\u8005\uff0c\u6211\u53ea\u662f\u53d1\u73b0\u4e86\u81ea\u5df1\u6298\u817e\u4e86\u4e00\u4e0b\uff0c\u5206\u4eab\u7ed9\u5927\u5bb6\uff0c\u5982\u6709\u4fb5\u6743\u5565\u7684\u6211\u4f1a\u628a\u5e16\u5b50\u5220\u4e86\u3002</p>\n<p>\u5927\u5bb6\u4e5f\u53ef\u4ee5\u5728\u8bc4\u8bba\u533a\u4ea4\u6d41\u6298\u817e\u7ecf\u9a8c\uff0c\u6298\u817e\u8d77\u6765\u3002</p>\n<p><a href=\"https://github.com/adminlove520/AI-Account-Toolkit\" rel=\"nofollow\">https://github.com/adminlove520/AI-Account-Toolkit</a></p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/csfreshman", 
        "name": "csfreshman", 
        "avatar": "https://cdn.v2ex.com/gravatar/7624630ff4f2bad517fe23a0f81daf6b?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205456", 
      "title": "\u95f2\u7f6e\u624b\u673a\u3001\u7535\u8111\u5982\u4f55\u5904\u7f6e\uff1f", 
      "id": "https://www.v2ex.com/t/1205456", 
      "date_published": "2026-04-13T04:03:30+00:00", 
      "content_html": "<p>\u548c\u8001\u5a46\u4eca\u5e74\u90fd\u5347\u7ea7\u4e86 mac \u7535\u8111\uff0c2015mbp,2017 air \u6dd8\u6c70\uff0c\u8001\u5988\u7684\u624b\u673a\u5347\u7ea7\u5230\u65b0\u6b3e\uff0c\u6dd8\u6c70\u4e00\u4e2a iphone11 \u3002</p>\n<p>\u8001\u5a46\u624b\u673a\u53bb\u5e74\u5347\u7ea7\u5230 iphone16 \uff0c\u5bb6\u91cc\u7684\u8def\u7531\u5668\u6709\u4e2a ac68u \u5c0f\u7c73\u7684 ax6 \uff0c\u8fd8\u6709\u4e00\u5806\u7528\u4e0d\u4e0a\u7684\u7535\u5b50\u5783\u573e\uff1f iphone6s,\u65e7\u6b3e\u4e0d\u77e5\u578b\u53f7\u7684\u5b89\u5353\u624b\u673a\u3002</p>\n<p>\u8fd9\u4e9b\u95f2\u7f6e\u7684\u7535\u5b50\u4ea7\u54c1\uff0c\u5982\u4f55\u5904\u7406\uff1f\u5404\u4f4d\u6709\u6ca1\u6709\u63a8\u8350\u7684\uff0c\u4f30\u8ba1\u5356\u6389\u51e0\u767e\u5757\u94b1\uff0c\u9001\u4eb2\u621a\u670b\u53cb\u4f30\u8ba1\u4f1a\u88ab\u5acc\u5f03\u3002</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Leroy666", 
        "name": "Leroy666", 
        "avatar": "https://cdn.v2ex.com/avatar/980e/1337/727749_large.png?m=1776050543"
      }, 
      "url": "https://www.v2ex.com/t/1205442", 
      "date_modified": "2026-04-13T03:31:23+00:00", 
      "content_html": "\u7531\u4e8e\u624b\u8155\u4e0d\u8212\u670d\u6362\u6210\u4e86\u7acb\u5f0f\u9f20\u6807<br /><br />typeless \u5728\u6211\u7684 WIN \u4e0a\u4e0d\u77e5\u9053\u8ddf\u54ea\u4e2a\u8f6f\u4ef6\u51b2\u7a81\uff0c\u5feb\u6377\u952e\u603b\u662f\u6ca1\u53cd\u5e94<br /><br />\u4eca\u5929\u5c1d\u8bd5\u4e86\u4e00\u4e0b\u95ea\u7535\u8bf4\uff0c\u586b\u8fdb\u53bb\u8c46\u5305\u7684\u8bed\u97f3\u8bc6\u522b\u548c\u8bed\u97f3\u52a9\u624b\u5927\u6a21\u578b\uff0c\u53d1\u73b0\u8bc6\u522b\u6548\u7387\u548c\u51c6\u786e\u7387\u8fd8\u662f\u5f88\u4e0d\u9519\u7684<br /><br />\u7136\u540e\u53d1\u73b0\u628a\u6211\u7684\u7acb\u5f0f\u9f20\u6807\u9876\u952e\u6362\u6210\u8bed\u97f3\u8f93\u5165\u5feb\u6377\u952e\uff0c\u8fd9\u4e0d\u5c31\u591a\u4e86\u4e2a\u6240\u8c13\u7684\u201cAI \u786c\u4ef6\u201d\u5417\uff1f\u54c8\u54c8<br /><br /><br />\u4e0d\u5230\u4e24\u767e\u7684\u56fd\u4ea7\u7acb\u5f0f\u9f20\u6807\u63a8\u8350\u4e00\u4e0b\uff0c\u7f57\u6280 master \u5df2\u7ecf\u5403\u7070\u597d\u4e45\u4e86\u3002<br /><br /><a target=\"_blank\" href=\"https://imgur.com/I6upG67.jpg\" rel=\"nofollow noopener\">https://imgur.com/I6upG67.jpg</a>", 
      "date_published": "2026-04-13T03:22:34+00:00", 
      "title": "\u7acb\u5f0f\u9f20\u6807+\u95ea\u7535\u8bf4\u8bed\u97f3\u8f93\u5165", 
      "id": "https://www.v2ex.com/t/1205442"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Astralume", 
        "name": "Astralume", 
        "avatar": "https://cdn.v2ex.com/avatar/783e/ccb7/112539_large.png?m=1776075818"
      }, 
      "url": "https://www.v2ex.com/t/1205376", 
      "title": "\u6700\u8fd1\u770b\u592a\u591a AI \u7684\u4e1c\u897f\uff0c\u592a AI(\u6cb9)\u817b\u4e86\uff0c\u6765\u70b9\u751f\u6d3b\u7684\u5427\uff0c\u63a8\u8350\u5206\u4eab\u4e00\u4e9b\u4f60\u65e5\u5e38\u597d\u7269\u5457", 
      "id": "https://www.v2ex.com/t/1205376", 
      "date_published": "2026-04-13T00:42:24+00:00", 
      "content_html": ""
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/laminux29", 
        "name": "laminux29", 
        "avatar": "https://cdn.v2ex.com/gravatar/f5dac702f2936e95d543670f76649f23?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205365", 
      "title": "\u5410\u69fd\uff1a\u8001\u6bdb\u6843 Windows PE \u7a81\u7136\u8981\u8054\u7f51\u624d\u80fd\u4f7f\u7528", 
      "id": "https://www.v2ex.com/t/1205365", 
      "date_published": "2026-04-12T17:30:35+00:00", 
      "content_html": "\u8001\u6bdb\u6843 Windows PE \uff0c<a target=\"_blank\" href=\"http://laomaotao.net\" rel=\"nofollow noopener\">laomaotao.net</a><br /><br />\u4e00\u76f4\u5f88\u559c\u6b22\u8fd9\u4e2a Windows PE \uff0c\u800c\u4e14\u6211\u4e5f\u603b\u662f\u7528\u6700\u65b0\u7248\u3002\u4ece\u7269\u7406\u673a\u7684\u7ef4\u62a4\uff0c\u5230\u670d\u52a1\u5668\u865a\u62df\u673a\u7ef4\u4fee\uff0c\u6211\u4e00\u76f4\u7528\u8fd9\u73a9\u610f\u3002<br /><br />\u4eca\u5929\u624b\u4e0b\u7684\u4eba\u7a81\u7136\u544a\u8bc9\u6211\uff0c\u6ca1\u8054\u7f51\u7684\u673a\u5668\uff0c\u7528\u4e0d\u4e86\u91cc\u9762\u7684 Windows \u5bc6\u7801\u91cd\u7f6e\u8f6f\u4ef6\u3002<br /><br />\u6211\u5f53\u65f6\u8fd8\u4e0d\u4fe1\uff0c\u56e0\u4e3a\u9700\u8981\u7528 Windows PE \u8fdb\u884c\u4fee\u590d\u7684\u573a\u666f\uff0c\u6709\u5f88\u591a\u60c5\u51b5\u662f\u65e0\u6cd5\u8054\u7f51\u7684\uff0c\u6240\u4ee5\u8bbe\u8ba1 Windows PE \u7684\u4eba\uff0c\u4e0d\u4f1a\u8fd9\u4e48\u50bb\u7b14\uff0c\u5c45\u7136\u8981\u8054\u7f51\u624d\u80fd\u4f7f\u7528\u3002<br /><br />\u7136\u540e\u521a\u624d\u8bd5\u4e86\u4e00\u4e0b\uff0c\u6700\u65b0\u7248\u7684\u8001\u6bdb\u6843 Windows PE \uff0c\u679c\u7136\u8981\u5148\u8054\u7f51\uff0c\u5982\u679c\u8054\u7f51\u5931\u8d25\uff0c\u91cc\u9762\u5f88\u591a\u5de5\u5177\u5c31\u65e0\u6cd5\u4f7f\u7528\u4e86\u3002<br /><br />\u63a5\u7740\u8bd5\u4e86\u51e0\u5e74\u524d\u7684\u8001\u7248\u672c\uff0c\u5c31\u6ca1\u8fd9\u4e2a\u50bb\u7b14\u8bbe\u5b9a\uff0c\u6ca1\u7f51\u4e5f\u80fd\u6b63\u5e38\u4f7f\u7528\u3002<br /><br />\u6211\u5b9e\u5728\u6ca1\u641e\u61c2\uff0c\u597d\u597d\u7684 Windows PE \u8f6f\u4ef6\uff0c\u8fd9\u51e0\u5e74\u7684\u4ea7\u54c1\u7ecf\u7406\u5230\u5e95\u7ecf\u5386\u4e86\u5565\uff0c\u624d\u60f3\u51fa\u6765 PE \u8f6f\u4ef6\u5c45\u7136\u9700\u8981\u8054\u7f51\u624d\u80fd\u4f7f\u7528\u7684\u903b\u8f91\u3002"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/shineonme", 
        "name": "shineonme", 
        "avatar": "https://cdn.v2ex.com/avatar/4591/5ed1/592401_large.png?m=1775611326"
      }, 
      "url": "https://www.v2ex.com/t/1205343", 
      "date_modified": "2026-04-12T14:26:28+00:00", 
      "content_html": "\u7528 GPT-5.4 xhigh + MCP \u5b8c\u6210\u7684\uff0c\u867d\u7136\u53ea\u662f\u5165\u95e8\u5c42\uff0c\u4f46\u8fd8\u662f\u5f88\u60ca\u559c\u7684\u4e86<br /><br />\u6574\u4e2a\u6d41\u7a0b\u5927\u6982 3 \u4e2a\u591a\u5c0f\u65f6\uff0c\u4e2d\u95f4\u53ea\u56e0\u4e3a\u989d\u5ea6\u7528\u5b8c\u5207\u6362\u670d\u52a1\u505c\u4e0b\u8fc7\u4e00\u6b21<br /><br />BOSS \u5173\u7684\u89c6\u9891 <a target=\"_blank\" href=\"https://www.bilibili.com/video/BV1qeDXBqE2Q/\" rel=\"nofollow noopener\">https://www.bilibili.com/video/BV1qeDXBqE2Q/</a><br /><br /><a target=\"_blank\" href=\"https://i.imgur.com/xZ7Omep.png\" rel=\"nofollow noopener\" target=\"_blank\"><img src=\"https://i.imgur.com/xZ7Omep.png\" class=\"embedded_image\" rel=\"noreferrer\"></a>", 
      "date_published": "2026-04-12T14:24:17+00:00", 
      "title": "\u7528 Codex \u521d\u89c1\u901a\u5173\u4e86\u6740\u622e\u5c16\u5854 2", 
      "id": "https://www.v2ex.com/t/1205343"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/v2exgo", 
        "name": "v2exgo", 
        "avatar": "https://cdn.v2ex.com/avatar/77fc/e6c8/708661_large.png?m=1774860655"
      }, 
      "url": "https://www.v2ex.com/t/1205337", 
      "title": "\u62d2\u7edd\u4e0d\u900f\u660e\u7684 Token \u4ef7\u683c\u8ddf\u6ce8\u6c34\uff0c\u4e2d\u8f6c TOKEN \u6bcf\u5468\u4ef7\u683c\u66f4\u65b0-20260412", 
      "id": "https://www.v2ex.com/t/1205337", 
      "date_published": "2026-04-12T13:32:57+00:00", 
      "content_html": "<p>\u770b\u5230\u5f88\u591a\u4f6c\u7528\u4e2d\u8f6c\u88ab\u9a97\uff0c\u771f\u7684\u662f\u75db\u5fc3\u75be\u9996\u3002\n\u54b8\u9c7c\u5356\u7684\u52a3\u8d28 token \uff0c\u5f88\u591a 9 \u5757\u94b1 300 \u5200\uff0c\u7eaf\u7cb9\u9a97\u4eba\u7684\u73a9\u610f\uff0c\u90fd\u662f\u667a\u5546\u7a0e\u3002\n\u8fd8\u6709\u4eba\u641e\u4e86\u4ec0\u4e48\u4e2d\u56fd token \u8054\u76df\uff0c\u7528\u5b98\u4ef7 8 \u6298\uff0c5 \u5757\u591a\u5728\u90a3\u91cc\u5356 kiro \u9006\u5411\uff0c\u7eaf\u7cb9\u6536\u667a\u5546\u7a0e\uff0c</p>\n<p>\u6211\u5728\u8fd9\u91cc\u6bcf\u5468\u66f4\u65b0\u884c\u4e1a\u5185\u540c\u884c\u6bcf\u5468\u7684\u62a5\u4ef7\uff0c\u7edd\u5bf9\u7684\u4e00\u624b\u62a5\u4ef7\u4fe1\u606f\uff1a</p>\n<h2>\u884c\u4e1a\u95f4\u7684\u62a5\u4ef7\u4fe1\u606f</h2>\n<table>\n<thead>\n<tr>\n<th>\u6e20\u9053/\u7c7b\u522b</th>\n<th>\u4ef7\u683c/\u62a5\u4ef7</th>\n<th>\u5907\u6ce8/\u8bf4\u660e</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CCMAX</td>\n<td>1.4-2.5 \u4eba\u6c11\u5e01/\u5200</td>\n<td>\u4e0d\u5728\u8fd9\u4e2a\u4ef7\u683c\u8303\u56f4\u7684 \u90fd\u662f\u9a97\u5b50\uff0cccmax \u662f\u98ce\u63a7\u91cd\u707e\u533a\uff0c\u4e00\u4e2a\u53f7\u80fd\u6d3b 30 \u5206\u949f\u90fd\u96be\uff0c\u5f88\u591a\u8001\u54e5\u6ce8\u518c\u79d2\u5c01\uff0c\u6709\u65e5\u672c\u8001\u54e5\uff0c\u672c\u5730\u4fe1\u7528\u5361\uff0c\u5bb6\u5bbd ip \u6ce8\u518c\u90fd\u662f\u79d2\u5c01\u3002</td>\n</tr>\n<tr>\n<td>Antigravity \u9006\u5411</td>\n<td>0.2-0.6 \u4eba\u6c11\u5e01/\u5200</td>\n<td>\u6700\u8fd1\u4e0d\u77e5\u5230\u662f\u98ce\u63a7\u8fd8\u662f\u6e20\u9053\u53d8\u4e86\uff0cAntigravity \u6e20\u9053\u6bd4\u8f83\u591a\u3002</td>\n</tr>\n<tr>\n<td>Kiro \uff08 Free \u6ca1\u6709 opus \uff09</td>\n<td>0.1-0.5 \u4eba\u6c11\u5e01/\u5200</td>\n<td>Kiro Free \u5c01\u53f7\u6bd4\u8f83\u5389\u5bb3\uff0c\u6700\u8fd1\u6ce8\u518c\u673a\u7ecf\u5e38\u8dd1\u4e0d\u51fa\u6765\u3002</td>\n</tr>\n<tr>\n<td>Kiro (Kiro Power)</td>\n<td>0.4-0.8 \u4eba\u6c11\u5e01/\u5200</td>\n<td>\u4e00\u822c\u6708\u672b\u624d\u6709\uff0c\u56e0\u4e3a kiro power \u662f\u6309\u5929\u7b97\u7684\uff0c\u6700\u540e\u51e0\u5929\u4f1a\u5f88\u4fbf\u5b9c\uff0c\u5982\u679c\u4e70\u4e0b\u6765 Kiro Power \u53ef\u4ee5\u901f\u5237\uff0c\u5e73\u5747\u5230\u6bcf\u5200\u6210\u672c\u4f1a\u5f88\u4f4e</td>\n</tr>\n<tr>\n<td>\u5b98 key \uff0c\u771f\u6b63\u7684\u76f4\u8fde\u5b98 key \uff0cAWS/BedRock/Vertex/Anthropic</td>\n<td>1-1.8 \u4eba\u6c11\u5e01/\u5200</td>\n<td>\u8fd9\u79cd\u5f88\u591a\u64b8\u7684\u4f01\u4e1a\u4f18\u60e0\u653f\u7b56\uff0c\u6216\u8005\u901f\u5237 openrouter \u7684\u9ed1\u54e5\u5361\uff0c\u90fd\u662f\u7ad9\u957f\u95f4\u901f\u5237\u7684\uff0c\u6210\u672c\u8f83\u4f4e</td>\n</tr>\n<tr>\n<td>Aws \u5b98\u6e20</td>\n<td>\u627f\u8bfa\u5e74\u8dd1 50 \u4e07\u5200\uff0c\u6216\u8005\u5927\u5382\u53ef\u4ee5\u505a\u5230 85 \u6298\u6216\u8005 45 \u6298</td>\n<td>\u8fd9\u4e2a\u662f\u771f\u6b63\u7684\u5b98\u65b9\u6e20\u9053</td>\n</tr>\n<tr>\n<td>Codex</td>\n<td>5 \u5206-6 \u6bdb</td>\n<td>codex \u6bd4\u8f83\u4e71\uff0c\u6c60\u5b50\u5f88\u591a\uff0c\u7ad9\u957f\u95f4\u4e5f\u5f88\u5185\u5377</td>\n</tr>\n</tbody></table><h2>\u5982\u4f55\u68c0\u6d4b\u6ce8\u6c34</h2>\n<p>\u76ee\u524d\u53ea\u6709\u4e00\u79cd\u552f\u4e00\u7684\u53ef\u9760\u529e\u6cd5\uff0canthropic \u7684\u62a5\u6587\u91cc\u9762\u6709\u7b7e\u540d\uff0c\u5982\u679c\u4f60\u89c9\u5f97\u67d0\u4e2a\u6e20\u9053\u6709\u6ce8\u6c34\uff0c\u5b83\u8fd4\u56de\u7ed9\u4f60\u7684\u7b7e\u540d\uff0c\u4f60\u518d\u8bf7\u6c42\u5230 \u5b98\u6e20/ Aws/Vertex/CCMAX \u8fd9\u79cd\uff0c\u94c1\u5b9a\u4f1a\u62a5\u9519\uff0c\u56e0\u4e3a\u8fd9\u4e2a\u7b7e\u540d\u53ea\u6709\u5b98\u6e20\u624d\u6709\uff0c\u4e2d\u8f6c\u7ad9\u6ce8\u6c34\uff0c\u8fd9\u4e2a\u7b7e\u540d\u90fd\u662f\u5047\u7684\uff0c\u5b98\u65b9\u662f\u65e0\u6cd5\u8bc6\u522b\u7684\u3002</p>\n<p>\u5176\u4f59\u6240\u6709\u7f51\u9875\u7684 cctest \u68c0\u6d4b\uff0c\u90fd\u662f\u667a\u5546\u7a0e\uff0c\u90fd\u662f\u667a\u5546\u7a0e\uff0c\u90fd\u662f\u667a\u5546\u7a0e\uff0c\u90fd\u662f\u667a\u5546\u7a0e</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/WinterLord", 
        "name": "WinterLord", 
        "avatar": "https://cdn.v2ex.com/avatar/915f/d892/433697_large.png?m=1776094757"
      }, 
      "url": "https://www.v2ex.com/t/1205315", 
      "title": "\u4e00\u4e2a\u4eba\u7528\u7740\u6ca1\u610f\u601d\uff0c\u6c42\u538b\u6d4b: https://hyperapi.cc/", 
      "id": "https://www.v2ex.com/t/1205315", 
      "date_published": "2026-04-12T11:06:14+00:00", 
      "content_html": ""
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/wbrobot", 
        "name": "wbrobot", 
        "avatar": "https://cdn.v2ex.com/avatar/a58f/fa5e/304191_large.png?m=1753668996"
      }, 
      "url": "https://www.v2ex.com/t/1205312", 
      "title": "CPU-Z \u548c HWMonitor \u906d\u5165\u4fb5\u88ab\u6295\u6bd2\u4e86\u662f\u4e0d\u662f\u6ca1\u4eba\u53d1\uff1f", 
      "id": "https://www.v2ex.com/t/1205312", 
      "date_published": "2026-04-12T10:34:34+00:00", 
      "content_html": "<p>\u7ffb\u4e86\u51e0\u9875\u770b\u5230\u7684\u90fd\u662f SBTI \u548c Vibe coding\n\u5468\u4e94 CPU-Z \u548c HWMonitor \u5347\u7ea7\u4e0b\u8f7d\u88ab\u66ff\u6362\u6210\u75c5\u6bd2\u7684\u597d\u50cf\u6bcf\u4eba\u53d1</p>\n<p>\u53e6\uff1a<a href=\"http://sov2ex.com\" rel=\"nofollow\">sov2ex.com</a> \u662f\u54ea\u4e2a\u5927\u4f6c\u7684\uff0c\u662f\u4e0d\u662f\u574f\u4e86\uff1f\uff1f\u574f\u597d\u4e45\u4e86</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/foam", 
        "name": "foam", 
        "avatar": "https://cdn.v2ex.com/avatar/4217/d2e3/146273_large.png?m=1751639315"
      }, 
      "url": "https://www.v2ex.com/t/1205275", 
      "title": "[iOS \u968f\u5fc3\u8ba1\u7b97\u5668] \u7ec8\u8eab\u4f1a\u5458\u9650\u514d\u4e2d\u3002\u81ea\u5b9a\u4e49\u4f60\u7684\u952e\u4f4d", 
      "id": "https://www.v2ex.com/t/1205275", 
      "date_published": "2026-04-12T07:50:03+00:00", 
      "content_html": "<h2>\u4ecb\u7ecd\u4e0b</h2>\n<p>\u6211\u505a\u4e86\u4e2a iOS \u8ba1\u7b97\u5668\uff0c\u53eb\u968f\u5fc3\u8ba1\u7b97\u5668\uff08\u521a\u4e0a\u67b6\u76ee\u524d\u8fd8\u641c\u7d22\u4e0d\u5230\uff09</p>\n<p>\u4ece\u5b89\u5353\u8f6c\u8fc7\u6765 iPhone \uff0ciOS \u81ea\u5e26\u7684\u8ba1\u7b97\u5668\u5b9e\u5728\u7528\u4e0d\u6765</p>\n<p>\u968f\u5fc3\u8ba1\u7b97\u5668\u7684\u6838\u5fc3\u7279\u8272\uff1a</p>\n<ol>\n<li>\u81ea\u5b9a\u4e49\u516c\u5f0f \uff08\u8fd8\u53ef\u4ee5\u5d4c\u5165\u5230\u952e\u76d8\u91cc\uff0c\u5feb\u6377\u542f\u52a8\u3002\u5144\u5f1f\u4eec\u65e5\u5e38\u5982\u679c\u6709\u8ba1\u7b97\u4e9b\u5565\u7ecf\u5e38\u8981\u81ea\u5b9a\u4e49\u516c\u5f0f\u7684\u8bdd\uff0c\u53ef\u4ee5\u8bd5\u8bd5\uff09</li>\n<li>\u81ea\u5b9a\u4e49\u952e\u4f4d \uff08\u7528\u4e0d\u4e60\u60ef\u9ed8\u8ba4\u7684\u952e\u4f4d\u6ca1\u5173\u7cfb\uff0c\u53ef\u4ee5\u6309\u4f60\u60f3\u8981\u7684\u8c03\u6574\uff0c\u81ea\u5b9a\u4e49\u516c\u5f0f\u4e5f\u53ef\u4ee5\u5d4c\u5165\u5230\u952e\u76d8\u91cc\uff09</li>\n<li>\u5386\u53f2\u8bb0\u5f55\uff08\u652f\u6301\u5907\u6ce8\uff09</li>\n<li>\u4e0d\u7528\u6309\u7b49\u53f7\uff0c\u5b9e\u65f6\u9884\u89c8\u7ed3\u679c</li>\n<li>\u5c0f\u7ec4\u4ef6\u770b\u6c47\u7387\u5565\u7684</li>\n<li>\u652f\u6301 iCloud \u540c\u6b65\u3002\u5378\u8f7d\u91cd\u88c5\u8bb0\u5f55\u8fd8\u5728\u3002</li>\n</ol>\n<p>\u6d3b\u52a8\u4fe1\u606f\uff1a\n\u9996\u53d1\u6d3b\u52a8\u6301\u7eed 6 \u5929\uff1a\u5148\u9650\u514d\uff0c\u518d\u4f4e\u4ef7\uff0c\u6700\u540e\u6062\u590d\u65e9\u9e1f\u4ef7\u3002</p>\n<ul>\n<li>4/12 \uff08\u5468\u65e5\uff09\u8d77\uff1a\u9650\u514d</li>\n<li>4/14 \uff08\u5468\u4e8c\uff09 21:30 \u8d77\uff1a\u00a51</li>\n<li>4/16 \uff08\u5468\u56db\uff09 21:30 \u8d77\uff1a\u534a\u4ef7\uff08\u00a59.9 \uff09</li>\n<li>4/18 \uff08\u5468\u516d\uff09 21:30 \u8d77\uff1a\u6062\u590d\u65e9\u9e1f\u4ef7\uff08\u00a519.9 \uff09</li>\n</ul>\n<p>\u8def\u5f84\uff1aApp \u5185\uff1a\u8bbe\u7f6e -&gt; \u89e3\u9501 Pro -&gt; \u7ec8\u8eab\uff08 Lifetime \uff09</p>\n<p>App Store\uff1a\n<a href=\"https://apps.apple.com/app/id6760956908\" rel=\"nofollow\">https://apps.apple.com/app/id6760956908</a></p>\n<h2>\u5982\u679c\u65b9\u4fbf\u7684\u8bdd</h2>\n<ul>\n<li>\u5e2e\u5fd9\u5728 x \u8f6c\u53d1\u6216\u70b9\u8d5e\u4e0b <a href=\"https://x.com/foamzou_dev/status/2043229382064697523\" rel=\"nofollow\">https://x.com/foamzou_dev/status/2043229382064697523</a></li>\n<li>\u6216\u8005\u6709 ProductHunt \u7684\u540c\u5b66\u5e2e\u5fd9 upvote \u4e0b <a href=\"https://www.producthunt.com/products/freestyle-calculator?launch=freestyle-calculator\" rel=\"nofollow\">https://www.producthunt.com/products/freestyle-calculator?launch=freestyle-calculator</a></li>\n</ul>\n<p>\u611f\u8c22\u5927\u5bb6</p>\n<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.v2ex.co/w7j995WL.png\"/></p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/jason94", 
        "name": "jason94", 
        "avatar": "https://cdn.v2ex.com/avatar/c428/4596/217512_large.png?m=1659792655"
      }, 
      "url": "https://www.v2ex.com/t/1205258", 
      "date_modified": "2026-04-12T06:07:15+00:00", 
      "content_html": "<p>\u524d\u7f6e\u51c6\u5907\uff1a</p>\n<ul>\n<li>Gmail \u8d26\u53f7</li>\n<li>\u62db\u5546\u94f6\u884c\u5355\u5e01 Master \u5361</li>\n<li>Google Pay \uff08\u7ed1\u597d\u4e0a\u9762\u90a3\u5f20\u5361\uff09</li>\n</ul>\n<p>\u4ece google pay \u4e0b\u8f7d claude \uff0c\u7528 gmail \u8d26\u53f7\u6ce8\u518c\uff0c\u7136\u540e app \u5185\u76f4\u63a5\u8ba2\u9605\u3002\n\u7528\u4e86\u597d\u51e0\u4e2a\u6708\u6ca1\u5c01\u53f7\uff0c\u6700\u9999\u7684\u662f\uff1a\u5c31\u7b97\u4e07\u4e00\u5c01\u53f7\uff0c\u8d39\u7528\u76f4\u63a5\u9000\u56de\u5361\u5185\uff0c\u4e0d\u7528\u62c5\u5fc3\u94b1\u6253\u6c34\u6f02 \ud83d\udcb0</p>\n", 
      "date_published": "2026-04-12T06:06:45+00:00", 
      "title": "\u5206\u4eab\u4e00\u4e2a\u6700\u7b80\u5355\u7a33\u5b9a\u7684 Claude \u8ba2\u9605\u65b9\u6848\uff0c\u56fd\u5185\u5361\u76f4\u63a5\u641e\u5b9a", 
      "id": "https://www.v2ex.com/t/1205258"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/bingoso", 
        "name": "bingoso", 
        "avatar": "https://cdn.v2ex.com/avatar/ad6f/6f62/718049_large.png?m=1774501686"
      }, 
      "url": "https://www.v2ex.com/t/1205234", 
      "title": "\u54b8\u9c7c codex \u6a21\u578b\u6ce8\u6c34\uff0c\u7528\u5343\u95ee 0.6b \u4ee3\u66ff codex5.4", 
      "id": "https://www.v2ex.com/t/1205234", 
      "date_published": "2026-04-12T02:51:26+00:00", 
      "content_html": "<p>\u8bf7\u770b VCR!\n<img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/inSQwPb.jpeg\"/>\n<img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/sVDPDD0.jpeg\"/>\n<img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/yaz0IM8.jpeg\"/></p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/lusi1990", 
        "name": "lusi1990", 
        "avatar": "https://cdn.v2ex.com/avatar/3cf5/ef55/292102_large.png?m=1775926347"
      }, 
      "url": "https://www.v2ex.com/t/1205204", 
      "title": "\u5927\u6a21\u578b\u7684\u56de\u7b54\u4e0d\u80fd\u5168\u4fe1, \u8bb0\u4e00\u6b21\u7f51\u7edc\u914d\u7f6e\u8e29\u5751", 
      "id": "https://www.v2ex.com/t/1205204", 
      "date_published": "2026-04-11T16:54:51+00:00", 
      "content_html": "<p>\u6700\u8fd1\u9700\u8981\u624b\u673a\u8fde\u63a5\u5bb6\u91cc\u7684\u5c40\u57df\u7f51. \u7136\u540e\u5c31\u6839\u636e Gemini \u7684\u56de\u7b54\u914d\u7f6e\u5bb6\u91cc\u8def\u7531\u5668(OpenWRT) \u7684 WireGuard \u73af\u5883, \u7136\u540e\u5c31\u7528\u624b\u673a\u6b7b\u6d3b\u8fde\u4e0d\u4e0a(\u8017\u65f6 6 \u5c0f\u65f6\u6392\u67e5,\u6700\u7ec8\u539f\u56e0\u662f\u9632\u706b\u5899).</p>\n<p>\u5f00\u59cb\u7ee7\u7eed\u4f7f\u7528 Gemini \u5217\u51fa\u53ef\u80fd\u7684\u95ee\u9898, \u95ee\u9898\u5b9a\u4f4d\u5230 \u5149\u732b,\u9632\u706b\u5899,\u5bc6\u94a5,\u516c\u7f51\u7b49, \u8ba9\u6211\u4f7f\u7528 <code>wg show</code>\u67e5\u770b, \u6211\u7684 latest handshake \u662f\u7a7a. \u5b83\u7684\u56de\u590d\u7247\u6bb5\u5982\u4e0b(\u4e00\u4e2a\u5b8c\u5168\u9519\u8bef\u7684\u56de\u590d)</p>\n<pre><code>\u5982\u679c latest handshake \u5b57\u6bb5\u4e3a\u7a7a\uff0c\u8bf4\u660e\u6570\u636e\u5305\u4ece\u672a\u5230\u8fbe\u8def\u7531\u5668\uff1b\u5982\u679c\u5df2\u7ecf\u6709\u63e1\u624b\u65f6\u95f4\u4f46\u65e0\u6cd5\u8bbf\u95ee\u5c40\u57df\u7f51\uff0c\u5219\u662f\u8def\u7531\u8868\uff08 Allowed IPs \uff09\u6216\u9632\u706b\u5899\u8f6c\u53d1\u7684\u95ee\u9898\u3002\n</code></pre>\n<p>\u6839\u636e\u6211\u7684\u76f4\u89c9, \u611f\u89c9\u4e0d\u592a\u5bf9, \u6211\u53c8\u8865\u5145\u4e86\u6211\u624b\u673a\u4f7f\u7528 4G. Gemini \u53c8\u8ba9\u6211\u4f7f\u7528 tcpdump \u67e5\u770b 51820 \u7aef\u53e3. \u4e8b\u5b9e\u4e0a\u6bcf\u51e0\u79d2\u5c31\u6709 \u4e00\u4e2a\u8fdb\u5165\u7684\u5305. \u6211\u5c06 tcpdump \u7684\u8fd4\u56de\u76f4\u63a5\u8d34\u7ed9 Gemini. \u7136\u540e Gemini \u5f88\u786e\u5b9a\u7684\u544a\u8bc9\u6211\u5f88\u5927\u53ef\u80fd\u662f\u5bc6\u94a5\u7684\u95ee\u9898. \u56e0\u4e3a\u5bc6\u94a5\u90fd\u662f\u751f\u6210\u540e\u626b\u63cf\u4e8c\u7ef4\u7801, \u4e0d\u592a\u53ef\u80fd\u51fa\u9519. \u6211\u7ee7\u7eed\u95ee,\u540e\u9762 Gemini \u7684\u56de\u590d\u90fd\u662f\u56f4\u7ed5\u9632\u706b\u5899. \u4f46\u662f\u9632\u706b\u5899\u7684\u914d\u7f6e\u90fd\u662f\u6839\u636e Gemini \u6765\u7684. \u5c1d\u8bd5\u4e86\u5f88\u591a\u6b21\u4ecd\u7136\u4e0d\u884c.</p>\n<p>\u6700\u7ec8\u6211\u76f4\u63a5 google \u67e5\u8d44\u6599. </p>\n<p>\u5148\u662f\u4e00\u7bc7 \u4e2d\u6587\u8d44\u6599 <a href=\"https://deeprouter.org/article/openwrt-install-wireguard-for-nat-traversal\" rel=\"nofollow\">OpenWRT \u5b89\u88c5 WireGuard \u5b9e\u73b0\u5185\u7f51\u7a7f\u900f</a> . \u9632\u706b\u5899\u90e8\u5206\u7684\u914d\u7f6e\u548c Gemini \u4e00\u81f4. \u6700\u7ec8\u4e0d\u884c</p>\n<p>\u7136\u540e\u76f4\u63a5\u53bb openwrt \u7684\u5b98\u7f51\u627e\u8d44\u6599. \u6839\u636e <a href=\"https://openwrt.org/docs/guide-user/services/vpn/wireguard/server\" rel=\"nofollow\">WireGuard server</a> \u4ece\u5934\u914d\u7f6e\u4e86\u4e00\u904d. \u7ec8\u4e8e\u53ef\u4ee5\u4e86. \u533a\u522b\u786e\u5b9e\u5728\u9632\u706b\u5899\u7684\u5730\u65b9. \u4e4b\u524d\u9519\u8bef\u7684\u539f\u56e0\u662f: \u901a\u4fe1\u89c4\u5219\u7684\u7aef\u53e3\u914d\u7f6e\u5728\u4e86 <code>\u6e90\u7aef\u53e3</code>, \u6b63\u786e\u7684\u505a\u6cd5\u662f\u914d\u7f6e\u5728 <code>\u76ee\u6807\u7aef\u53e3</code>.</p>\n<p>\u6700\u540e\u5f97\u51fa\u7ed3\u8bba:</p>\n<pre><code>\u82f1\u6587 -&gt; \u4eba -&gt; \u4e2d\u6587 == food -&gt; \u4eba -&gt; shit\n</code></pre>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/TonyStark1984", 
        "name": "TonyStark1984", 
        "avatar": "https://cdn.v2ex.com/avatar/4785/28ff/594279_large.png?m=1775374201"
      }, 
      "url": "https://www.v2ex.com/t/1205112", 
      "date_modified": "2026-04-11T07:07:50+00:00", 
      "content_html": "<p>\u4e0a\u8d34\u53d1\u4e86\u5173\u4e8e\u6700\u65b0\u6ce8\u518c\u5fb7\u56fd\u6c83\u8fbe\u4e30 eSIM \u7684\u65b9\u6cd5\uff0c\u6211\u770b\u8bc4\u8bba\u533a\u7684 v \u53cb\u4eec\u57fa\u672c\u7684\u6210\u529f\u4e86\u3002</p>\n<p><a href=\"https://www.v2ex.com/t/1203660?p=1#reply24\" rel=\"nofollow\">\u70b9\u51fb\u6b64\u5904\u8d85\u94fe\u63a5\uff0c\u4e0a\u8d34\u7533\u8bf7\u6559\u7a0b</a></p>\n<p>\u5728\u6b64\u6536\u96c6\u4e86 b \u7ad9\u548c\u6cb9\u7ba1\u8bc4\u8bba\u533a\u7684\u95ee\u9898\uff0c\u6709\u9700\u8981\u7684\u670b\u53cb\u53ef\u4ee5\u770b\u770b\uff0c\u5e0c\u671b\u6709\u5e2e\u52a9\u3002</p>\n<ol>\n<li>\n<p>\u6307\u7eb9\u6d4f\u89c8\u5668\u521b\u5efa\u540e\u73af\u5883\u6253\u5f00\u5931\u8d25\uff0ca. \u5c06\u672c\u673a\u4ee3\u7406\u8f6f\u4ef6\u5f00\u542f tun \u6a21\u5f0f\uff08 v2ray/clash \uff09\uff0c\u5c0f\u706b\u7bad\u5f00\u542f\u5168\u5c40\u6a21\u5f0f\u3002b. \u5207\u6362\u4e00\u4e2a\u672c\u673a\u673a\u573a\u8282\u70b9\u91cd\u8bd5\u3002c.\u91cd\u65b0\u521b\u5efa\u4e00\u4e2a\u539f\u751f\u5fb7\u56fd\u4f4f\u5b85 ip \uff08\u5b9e\u6d4b\u8282\u70b9\u95ee\u9898\u6982\u7387\u8f83\u5c0f\uff09</p>\n</li>\n<li>\n<p>\u7f51\u9875\u5361\u5728\u70b9\u51fb\u201c\u7ee7\u7eed\u8003\u8bd5\u201d\u6ca1\u53cd\u5e94\u89e3\u51b3\u529e\u6cd5\uff1a\u4ece\u5b98\u7f51\u8fdb\u53bb <a href=\"https://www.vodafone.de\" rel=\"nofollow\">https://www.vodafone.de</a> \uff0c\u627e\u5230 esim \u7533\u8bf7\u9875\u9762\uff0c\u4e0d\u8981\u51b2\u6211\u7b80\u4ecb\u7684\u94fe\u63a5\u8fdb\u5165\uff08\u539f\u56e0\u672a\u77e5\uff0c\u6700\u540e\u7684\u94fe\u63a5\u90fd\u662f\u4e00\u6837\u7684\uff09\u3002</p>\n</li>\n<li>\n<p>\u957f\u65f6\u95f4\u672a\u6536\u5230\u90ae\u4ef6\uff0c\u8010\u5fc3\u7b49\u5f85\uff0c\u8ba4\u8bc1\u4e0d\u8fc7\u4e5f\u4f1a\u90ae\u4ef6\u901a\u77e5\u3002\u5982\u679c\u201c\u6536\u5230\u91cd\u65b0\u8eab\u4efd\u9a8c\u8bc1\u90ae\u4ef6\u201d\uff0c\u91cd\u65b0\u63d0\u4ea4\u4e00\u4efd\u5373\u53ef\uff0c\u5728\u5149\u7ebf\u597d\u7684\u5730\u65b9\u8fdb\u884c\u8ba4\u8bc1\u3002\u63d0\u793a\u201c\u4e0a\u6b21\u81ea\u52a8\u9a8c\u8bc1\u5931\u8d25\uff0c\u56e0\u4e3a\u60a8\u7684\u8bc1\u4ef6\u7167\u7247\u6216\u81ea\u62cd\u89c6\u9891\u753b\u8d28\u592a\u4f4e\uff0c\u65e0\u6cd5\u6838\u5b9e\u201d</p>\n</li>\n<li>\n<p>\u53ef\u4ee5\u91cd\u65b0\u6ce8\u518c\u7533\u8bf7\uff0c\u4e0d\u9650\u6b21\u6570\u3002</p>\n</li>\n</ol>\n<p><a href=\"https://www.youtube.com/watch?v=3wHMD_TIsV0&amp;list=PL2iDGn4HfSKXn8Wt-sikeJUmh1Eph0fcp&amp;index=2\" rel=\"nofollow\">\u70b9\u51fb\u6b64\u5904\u8d85\u94fe\u63a5\uff0c\u5bf9\u5e94\u7684\u6cb9\u7ba1\u89c6\u9891</a></p>\n", 
      "date_published": "2026-04-11T07:02:12+00:00", 
      "title": "\u300c\u5fb7\u56fd\u6c83\u8fbe\u4e30 eSIM\u300d\u7533\u8bf7\u8fc7\u7a0b\u4e2d\u7684\u95ee\u9898\u6c47\u603b", 
      "id": "https://www.v2ex.com/t/1205112"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/lipengliang2012", 
        "name": "lipengliang2012", 
        "avatar": "https://cdn.v2ex.com/gravatar/570c8a982de495450319c37d695e9cd3?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205079", 
      "title": "SBTI \u514d\u8d39\u5728\u7ebf\u4eba\u683c\u6d4b\u8bd5", 
      "id": "https://www.v2ex.com/t/1205079", 
      "date_published": "2026-04-11T03:34:11+00:00", 
      "content_html": "\u6211\u662f\u601d\u8003\u8005\uff0c\u6709\u70b9\u65e0\u804a\u3002<br /><br />\u7ecf\u7814\u7a76\u53d1\u73b0\uff0cTHIN-K \u4eba\u683c\u7684\u5927\u8111\u6784\u9020\u4e0e\u5e38\u4eba\u6709\u6839\u672c\u6027\u4e0d\u540c\uff0c\u8fd9\u5bfc\u81f4\u8be5\u4eba\u683c\u4ec5\u5360\u4e16\u754c\u4eba\u53e3\u7684 0.00001 \uff05\uff01\u6b63\u5982\u540d\u79f0\u6240\u793a\uff0c\u60a8\u7684\u5927\u8111\u65f6\u957f\u5904\u4e8e\u601d\u8003\u72b6\u6001\uff0c\u60a8\u5341\u5206\u4f1a\u5ba1\u5224\u4fe1\u606f\uff0c\u6ce8\u91cd\u8bba\u70b9\u3001\u8bba\u636e\u3001\u903b\u8f91\u63a8\u7406\u3001\u6f5c\u5728\u504f\u89c1\uff0c\u4e43\u81f3\u201d\u4f5c\u8005\u672c\u4eba\u4e09\u4ee3\u4ee5\u5185\u601d\u60f3\u80cc\u666f\u8c03\u67e5\u62a5\u544a\u201d\u7684\u5168\u5957\u6750\u6599\u3002\u5728\u8fd9\u4e2a\u4fe1\u606f\u7206\u70b8\u7684\u65f6\u4ee3\uff0c\u60a8\u7edd\u4e0d\u4f1a\u76f2\u4ece\uff0c\u4f1a\u5728\u5173\u7cfb\u4e2d\u8861\u91cf\u5229\u5f0a\uff0c\u60a8\u4e5f\u5341\u5206\u634d\u536b\u60a8\u7684\u81ea\u6211\u7a7a\u95f4\u3002\u5f53\u522b\u4eba\u770b\u5230\u60a8\u72ec\u5904\u65f6\u5728\u53d1\u5446\uff1f\u611a\u8822\uff01\u90a3\u4e0d\u662f\u53d1\u5446\uff0c\u90a3\u662f\u60a8\u7684\u5927\u8111\u6b63\u5728\u5bf9\u4eca\u5929\u63a5\u6536\u5230\u7684\u6240\u6709\u4fe1\u606f\u8fdb\u884c\u5206\u7c7b\u3001\u5f52\u6863\u548c\u9500\u6bc1\u3002\u60a8\u50cf\u4e00\u4e2a\u4e25\u8c28\u7684\u5b66\u8005\uff0c\u4ee5\u51b7\u9759\u7684\u773c\u5149\u5ba1\u89c6\u7740\u8fd9\u4e2a\u6df7\u4e71\u4e0d\u582a\u7684\u4e16\u754c\uff0c\u7136\u540e\u4ee5\u6700\u4f18\u96c5\u7684\u59ff\u6001\uff0c\u62c9\u4e0a\u81ea\u5df1\u4e66\u623f\u7684\u7a97\u5e18\uff0c\u5bf9\u81ea\u5df1\u8bf4\uff1a\u201d\u54a6\uff1f\u6211\u660e\u660e\u662f\u62b1\u7740\u88ab\u9a82\u7684\u5fc3\u6001\u6765\u6d4b\u8bc4\u7684\uff0c\u7ed3\u679c\u600e\u4e48\u662f\u5982\u6b64\u6b63\u5e38\u7684\u4eba\u683c\uff1f\u201d\u54c8\u54c8\uff01\u4f5c\u8005\u8868\u793a\uff1a\u4e0d\u6b63\u5e38\u4e2d\u7684\u6b63\u5e38\u624d\u662f\u4e0d\u6b63\u5e38\u3002<br /><br />\u4f60\u662f\u5565\uff0c\u6709\u6ca1\u6709\u597d\u73a9\u4e00\u70b9\u7684\u7ed3\u679c\uff1f <a target=\"_blank\" href=\"https://www.sbti.sh/\u8fd9\u91cc\u53ef\u4ee5\u73a9\" rel=\"nofollow noopener\">https://www.sbti.sh/\u8fd9\u91cc\u53ef\u4ee5\u73a9</a>"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Bootis", 
        "name": "Bootis", 
        "avatar": "https://cdn.v2ex.com/gravatar/63d904a51dc61bb6bf0627926dd215ca?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205078", 
      "title": "GLM5.1 \u5728 arena \u4e0a code \u6392\u884c\u4e16\u754c\u7b2c\u4e09\u4e86", 
      "id": "https://www.v2ex.com/t/1205078", 
      "date_published": "2026-04-11T03:30:16+00:00", 
      "content_html": "<p><img alt=\"\" class=\"embedded_image\" loading=\"lazy\" referrerpolicy=\"no-referrer\" rel=\"noreferrer\" src=\"https://i.imgur.com/7NJHWEt.png\"/>\n\u5982\u56fe\uff0c\u8ddf\u4e2a\u4eba\u4f53\u611f\u6bd4\u8f83\u4e00\u81f4\uff08\u66fe\u7ecf\u8ba2\u9605 Claude Max 20x \uff0c\u73b0\u8ba2\u9605 ChatGPT Pro \u548c ZAI Max Plan \uff09\uff0c\u5982\u679c\u667a\u8c31\u7684 infra \u518d\u5347\u7ea7\u4e0b\uff0c\u5927\u591a\u6570 coding \u4efb\u52a1\u5c31\u5b8c\u5168\u53ef\u4ee5\u9760\u4ed6\u4e86</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/cs419", 
        "name": "cs419", 
        "avatar": "https://cdn.v2ex.com/gravatar/d5164e3a9c9e0d51220934370bfe8210?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205070", 
      "title": "\u94f6\u4fdd\u76d1\u9488\u5bf9\u6295\u8bc9\u5904\u7406-\u516c\u5f00\u5f81\u6c42\u610f\u89c1", 
      "id": "https://www.v2ex.com/t/1205070", 
      "date_published": "2026-04-11T02:57:21+00:00", 
      "content_html": "<p>\u56fd\u5bb6\u91d1\u878d\u76d1\u7763\u7ba1\u7406\u603b\u5c40\u5173\u4e8e\u300a\u94f6\u884c\u4fdd\u9669\u673a\u6784\u91d1\u878d\u6d88\u8d39\u6295\u8bc9\u5904\u7406\u7ba1\u7406\u529e\u6cd5\uff08\u4fee\u8ba2\u5f81\u6c42\u610f\u89c1\u7a3f\uff09\u300b\u516c\u5f00\u5f81\u6c42\u610f\u89c1\u7684\u516c\u544a\n<a href=\"https://www.nfra.gov.cn/cn/view/pages/ItemDetail.html?docId=1252216&amp;itemId=951&amp;generaltype=2\" rel=\"nofollow\">https://www.nfra.gov.cn/cn/view/pages/ItemDetail.html?docId=1252216&amp;itemId=951&amp;generaltype=2</a></p>\n<p>\u610f\u89c1\u53cd\u9988\u622a\u6b62\u65f6\u95f4\u4e3a 2026 \u5e74 4 \u6708 20 \u65e5</p>\n<p>\u6709\u5efa\u8bae\u7684\u53ef\u4ee5\u63d0 \u4e0d\u8fc7\u539f\u6587\u7684\u9644\u4ef6\u662f.wps \u6587\u4ef6 \u4e3a\u4e86\u6253\u5f00\u8fd9\u4e2a\u6587\u4ef6 \u8fd8\u5f97\u518d\u88c5\u4e2a wps</p>\n<p>ps\uff1a\u53ef\u80fd\u6709\u4e9b\u4eba\u4f1a\u8bf4\u6ca1\u7528\u5565\u7684 \u8fd9\u7c7b\u4eba\u8fd8\u662f\u8bf7\u95ed\u5634\u5427<br/>\n\u4ed6\u4eec\u597d\u50cf\u4eba\u95f4\u6e05\u9192 \u4f46\u901a\u5e38\u53ea\u6709\u7262\u9a9a \u6ca1\u6709\u5efa\u8bbe\u6027\u7684\u610f\u89c1</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/imrun", 
        "name": "imrun", 
        "avatar": "https://cdn.v2ex.com/avatar/7845/edda/57678_large.png?m=1394189874"
      }, 
      "url": "https://www.v2ex.com/t/1205042", 
      "title": "\u901a\u8fc7 HermesClaw \u5fae\u4fe1\u53ef\u4ee5\u53cc\u5f00 Hermes Agent \u548c OpenClaw \u4e86", 
      "id": "https://www.v2ex.com/t/1205042", 
      "date_published": "2026-04-10T19:57:18+00:00", 
      "content_html": "<p>Hermes Agent \u652f\u6301 Telegram \u3001Discord \u3001Slack \u3001WhatsApp \u3001Signal \uff0c\u4f46\u4e0d\u652f\u6301\u5fae\u4fe1\u3002\nOpenClaw \u652f\u6301\u5fae\u4fe1\uff0c\u4f46\u5982\u679c\u4f60\u60f3\u5728\u540c\u4e00\u4e2a\u8d26\u53f7\u4e0a\u4e5f\u8dd1 Hermes Agent \uff0c\u5c31\u5f97\u5f00\u4e24\u4e2a bot \u3001\u4e24\u4e2a\u624b\u673a\u3001\u4e24\u6b21\u626b\u7801\u767b\u5f55\u3002</p>\n<p>\u6211\u53d7\u4e0d\u4e86\u4e86\uff0c\u6240\u4ee5\u5199\u4e86 <strong>HermesClaw</strong>\uff1a\u4e00\u4e2a Python \u6865\u63a5\u5de5\u5177\uff0c\u590d\u7528 Clawbot / openclaw-weixin \u7684 iLink \u901a\u9053\uff0c\u8ba9\u5355\u4e2a\u5fae\u4fe1 Clawbot \u8d26\u53f7\u53ef\u4ee5\u628a\u6d88\u606f\u8def\u7531\u5230 Hermes Agent \u3001OpenClaw \uff0c\u6216\u4e24\u8005\u540c\u65f6\u56de\u590d\u3002</p>\n<p>\u7528\u6cd5\u5f88\u7b80\u5355\uff1a\u79c1\u804a bot \uff0c\u53d1 <code>/hermes</code> \u5207\u6362\u5230 Hermes \uff0c<code>/openclaw</code> \u5207\u56de OpenClaw \uff0c<code>/both</code> \u540c\u65f6\u4e24\u8fb9\u56de\u590d\u3002\u72b6\u6001\u662f\u6309\u7528\u6237\u9694\u79bb\u7684\u2014\u2014\u4f60\u548c\u670b\u53cb\u5728\u540c\u4e00\u4e2a\u7fa4\u91cc\uff0c\u53ef\u4ee5\u5206\u522b\u8ddf\u4e0d\u540c\u7684 Agent \u5bf9\u8bdd\u3002</p>\n<p>\u8bed\u97f3\u6d88\u606f\u4f1a\u901a\u8fc7 iLink \u5c42\u8f6c\u5199\u540e\u8f6c\u53d1\uff0c\u56fe\u7247/\u89c6\u9891/\u6587\u4ef6\u4f1a\u4ece\u5fae\u4fe1 CDN \u4e0b\u8f7d\u5e76 AES \u89e3\u5bc6\uff0c\u4ee5\u672c\u5730\u6587\u4ef6\u8def\u5f84\u5582\u7ed9\u6a21\u578b\uff0c\u4e0d\u9700\u8981 base64 \u7ed5\u4e00\u5708\uff0c\u89c6\u89c9\u5de5\u5177\u76f4\u63a5\u7528\u3002</p>\n<p>\u5b89\u88c5\u7b80\u5355\uff0c<a href=\"https://github.com/AaronWong1999/hermesclaw\" rel=\"nofollow\">https://github.com/AaronWong1999/hermesclaw</a> \uff0c\u76f4\u63a5\u4e22\u7ed9\u4f60\u7684 Agent \u8ba9\u5b83\u4e00\u952e\u5b89\u88c5\u5c31\u884c\u3002</p>\n<p>\u6709\u95ee\u9898\u63d0 issue \u8001\u94c1\u4eec</p>\n"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/andyzhshg", 
        "name": "andyzhshg", 
        "avatar": "https://cdn.v2ex.com/avatar/af94/68fe/72152_large.png?m=1773209733"
      }, 
      "url": "https://www.v2ex.com/t/1205031", 
      "date_modified": "2026-04-10T16:15:35+00:00", 
      "content_html": "<p>Gmail \u90ae\u7bb1\u6536\u5230 Lenny\u2019s Newsletter \u5feb\u8981\u5230\u671f\u7eed\u8d39\u7684\u90ae\u4ef6\uff0c\u6211\u672c\u6765\u662f\u53bb\u767b\u9646\u53d6\u6d88\u81ea\u52a8\u6263\u8d39\u7684\uff0c\u5374\u53d1\u73b0\u4e86\u73b0\u5728\u6743\u76ca\u8fd8\u6709\u4e0a\u65b0\uff0c\u5373\u4f7f\u662f\u53d6\u6d88\u4e86\u8ba2\u9605\u7eed\u8d39\uff0c\u53ea\u8981\u8fd9\u4e00\u671f\u8fd8\u6ca1\u6709\u5230\u671f\uff0c\u5c31\u8fd8\u80fd\u9886\uff0c\u6211\u9886\u4e86\uff1a</p>\n<ol>\n<li>ChatPRD</li>\n<li>Manus</li>\n<li>Mobbin</li>\n<li>Warp</li>\n<li>$50 free of Cursor credits</li>\n</ol>\n<p>\u8fd8\u6709\u633a\u591a\u5176\u4ed6\u7684\uff0c\u5927\u5bb6\u53bb\u5e74\u8ba2\u9605\u8fc7\u8fd8\u6ca1\u6709\u5230\u671f\u7684\uff0c\u53ef\u4ee5\u6293\u7d27\u53bb\u770b\u4e00\u4e0b\uff0c\u9664\u4e86 cursor \u7684$50 \uff0c\u90fd\u662f\u4ece\u9886\u53d6\u5f00\u59cb\u7b97\u4e00\u5e74\u7684\u6709\u6548\u671f\u7684\u3002\u987a\u4fbf\u4e0d\u6253\u7b97\u7eed\u8ba2\u7684\u8bdd\u9000\u4e00\u4e0b\u53bb\u5e74\u7684\u8ba2\u9605\uff0c\u514d\u5f97\u88ab\u8bef\u6263\u8d39\u3002</p>\n", 
      "date_published": "2026-04-10T16:15:18+00:00", 
      "title": "\u53bb\u5e74\u8ba2\u9605\u7684 Lenny's Newsletter \u5feb\u5230\u671f\u7eed\uff0c\u5c45\u7136\u8fd8\u80fd\u9886\u65b0\u7684\u6743\u76ca", 
      "id": "https://www.v2ex.com/t/1205031"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/wchluxi", 
        "name": "wchluxi", 
        "avatar": "https://cdn.v2ex.com/avatar/fb04/c51d/513435_large.png?m=1709792558"
      }, 
      "url": "https://www.v2ex.com/t/1205030", 
      "title": "minimax \u4e0d\u652f\u6301 anthropic \u63a5\u53e3", 
      "id": "https://www.v2ex.com/t/1205030", 
      "date_published": "2026-04-10T16:12:36+00:00", 
      "content_html": "\u6700\u8fd1 hermes agent \u597d\u50cf\u5f88\u706b\uff0c\u62b1\u7740\u5b66\u4e60\u7684\u5fc3\u6001\u88c5 hermes agent \u73a9\u73a9\uff0c\u5185\u7f6e\u7684 minimax cn endpoint \u662f anthropic \u63a5\u53e3\uff0c\u7ed3\u679c\u914d\u597d api \u4e00\u76f4\u90fd\u662f\u8fd4\u56de 404<br />&lt;html&gt;<br />&lt;head&gt;&lt;title&gt;404 Not Found&lt;/title&gt;&lt;/head&gt;<br />&lt;body&gt;<br />&lt;center&gt;&lt;h1&gt;404 Not Found&lt;/h1&gt;&lt;/center&gt;<br />&lt;hr&gt;&lt;center&gt;nginx&lt;/center&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;<br /><br />\u770b\u4e86 minimax \u7684\u5b98\u65b9\u6587\u6863\u4e5f\u662f\u7528 authropic \u63a5\u53e3\uff0c\u4e00\u76f4\u6392\u67e5\u662f\u4e0d\u662f\u7f51\u7edc\u7684\u95ee\u9898\uff0c\u7ed3\u679c\u6362\u4e86 openai \u7684\u63a5\u53e3\u9a6c\u4e0a\u5c31\u901a\u4e86\u3002\u771f\u662f\u592a\u5751\u4e86"
    }, 
    {
      "author": {
        "url": "https://www.v2ex.com/member/Gigibond", 
        "name": "Gigibond", 
        "avatar": "https://cdn.v2ex.com/gravatar/533b76c5348ccecfc00dae1192696cca?s=73&d=retro"
      }, 
      "url": "https://www.v2ex.com/t/1205019", 
      "title": "\u5410\u69fd\u5fb7\u56fd O2 esim \u7533\u8bf7\u89c6\u9891\u8ba4\u8bc1", 
      "id": "https://www.v2ex.com/t/1205019", 
      "date_published": "2026-04-10T14:26:42+00:00", 
      "content_html": "<p>Nodeseek \u4eca\u5929\u6709\u4eba\u53d1\u4e86\u5fb7\u56fd O2 \u7684 esim \u7533\u8bf7\n<a href=\"https://www.nodeseek.com/post-682628-1\" rel=\"nofollow\">https://www.nodeseek.com/post-682628-1</a></p>\n<p>\u7533\u8bf7\u94fe\u63a5 <a href=\"https://www.o2online.de/mobilfunk/prepaid/\" rel=\"nofollow\">https://www.o2online.de/mobilfunk/prepaid/</a></p>\n<p>\u6211\u7528\u7684\u6d4f\u89c8\u5668\u8ba4\u8bc1\uff0c\u56e0\u4e3a\u4e0b\u4e86 App \u8fde\u63a5\u89c6\u9891\u8ba4\u8bc1\u534a\u5929\u6ca1\u4eba\uff0c\u4e0d\u77e5\u662f\u8282\u70b9\u7684\u95ee\u9898\u8fd8\u662f\u4ec0\u4e48\uff0c\u5fb7\u56fd\uff0c\u8377\u5170\uff0c\u65b0\u52a0\u5761\u90fd\u6ca1\u6210\u3002\u540e\u6765\u76f4\u63a5\u7528\u7b14\u8bb0\u672c\u6d4f\u89c8\u5668\u7adf\u7136\u8fdb\u53bb\u4e86\u3002\n\u8ba4\u8bc1\u5185\u5bb9\uff1a\n\u62a4\u7167\u9875\n\u62a4\u7167\u5c01\u9762\uff0c\u56e0\u4e3a\u5e26\u4e86\u4fdd\u62a4\u5957\u8fd8\u8ba9\u6458\u4e86\uff0c\u548c\u4eba\u8138\u4e00\u8d77\u7684\n\u89c6\u9891\u4e2d\u8ba9\u53d1\u5fb7\u56fd\u5730\u5740\u7684\u6587\u5b57\u4fe1\u606f\uff0c\u6709\u6587\u5b57\u8f93\u5165\u6846\u3002\u7528\u7684\u4e0a\u6b21\u7533 Vodafone \u5fb7\u56fd\u7684\u5730\u5740\uff0cVodafone \u5730\u5740\u9875\u5e78\u597d\u8fd8\u6ca1\u5173\u3002\n\u95ee\u4e86\u62a4\u7167\u6709\u6548\u671f\n\u9a8c\u8bc1\u5f04\u5f97\u8fd8\u633a\u7e41\u7410\u7684\u3002</p>\n<p>\u53e6\u5916\u9009\u4fe1\u7528\u5361\u5145\u503c\u7684\u8bdd 10 \u6b27\u8d77\uff0c\u6240\u4ee5\u7eaf\u6536\u77ed\u4fe1\uff0c\u8fd8\u662f\u6bcf\u5b63\u5ea6\u8f6c\u8d26 0.01 \u6b27\u5427\u3002</p>\n"
    }
  ]
}