Filter
Exclude
Time range
-
Near
Anthropic accidentally leaked 512k lines of Claude Code source. X immediately called KAIROS — the hidden "always-on agent" inside it — Anthropic's secret surveillance endgame. But here's what the truth data actually shows: KAIROS isn't watching *you*. It's watching your *codebase.* The verified purpose is proactive dev workflow automation — SleepTool, SubscribePRTool, PushNotificationTool, SendUserFileTool. It's Claude that checks your GitHub PRs while you sleep, not Claude that reports on your behavior to Anthropic. The surveillance narrative is spreading at scale with a 57% mean truth score across 294 monitored claims. The claims with the lowest truth scores are the most viral ones. The real risk isn't Orwellian surveillance — it's something less dramatic and more dangerous: misconfigured autonomous agents running external integrations with no hard limits. Meanwhile the irony writes itself: Anthropic built "Undercover Mode" to stop Claude from leaking internal secrets. Then they leaked their own source code. 21 million impressions later, the code has been ported to Python, rewritten in Rust, and mirrored to decentralized storage. You cannot DMCA a fork of a fork of a rewrite. The story isn't "Anthropic is watching you." It's "a proactive AI agent framework accidentally escaped, and no one can put it back in the box."
2
4
11
600
KAIROS is Hidden Autonomous assistant mode in Claude Code KAIROS = hidden proactive assistant mode that lets Claude work autonomously on a schedule like a personal AI companion SleepTool, PushNotificationTool, SubscribePRTool It can literally run in the background
1
1
367
🚨BREAKING: Claude Code just got fully leaked on GitHub. 512,000 lines of TypeScript. here's what you need to know: the stack → TypeScript strict mode, Bun runtime, React Ink for terminal UI → ~40 agent tools, ~50 slash commands, ~140 UI components → GrowthBook for A/B testing and feature flags internally tons of unreleased stuff gated behind internal flags: → KAIROS: a proactive agent mode. SleepTool (agent sleeps and wakes up), PushNotificationTool (sends you push notifs), SubscribePRTool (watches GitHub PRs via webhooks), SendUserFileTool. basically Claude that works while you sleep. → COORDINATOR_MODE: full multi-agent orchestration. TeamCreateTool, TeamDeleteTool, SendMessageTool. agents spawning and managing other agents in teams. → VOICE_MODE (codename "amber quartz"): voice input/output, requires OAuth to claude's voice_stream endpoint. not available with API keys. → ULTRAPLAN: remote multi-agent planning that runs on Opus with a 30-minute timeout. offloads heavy exploration to cloud instances. → WEB_BROWSER_TOOL: a built-in browser tool, currently feature-gated. → x402: this one is wild. a full crypto wallet built into Claude Code for HTTP 402 payments. USDC on Base. /x402 setup generates a wallet, set spend limits per request or per session. Claude can autonomously pay for API calls with crypto. ant-only tools (Anthropic employees) → REPLTool and SuggestBackgroundPRTool are gated behind USER_TYPE === 'ant'. internal dogfooding tools that regular users never see. there's a companion/tamagotchi system with species, hats, eyes, and rarity tiers (common → legendary). a seeded RNG generates your buddy based on your profile. they built a virtual pet into a coding CLI.
5
2
34
3,308
Mar 31
隠れ機能は、実際には「1つの秘密コマンド集」ではなく、5層に分かれています。 入口の隠し方は主に main.tsx の hideHelp()、commands.ts の isHidden / isEnabled、build-time feature(...)、process.env.USER_TYPE === 'ant'、そして GrowthBook gate と policy/auth 条件です。つまり「見えない」の意味が、help に出ない、条件が揃うまで出さない、外部 build では消す、社内 build にだけ残す の4種類あります。 1. いちばん大きい隠れ機能群は Remote/Cloud 系 --remote, --teleport, --remote-control, --rc, --assistant, --sdk-url は help 非表示です。main.tsx /remote-control は単なる URL 発行ではなく、ローカル REPL と claude.ai 側を双方向接続する bridge です。QR 表示、切断ダイアログ、session URL、mirror mode、env-less bridge v2 まであります。bridge/index.ts bridge.tsx bridgeEnabled.ts /session は remote mode のときだけ現れる隠しコマンドで、remote session URL と QR を出します。session/index.ts /remote-env は teleport / remote session 用の既定実行環境を選ぶ UI です。公開されている印象より、かなりクラウド実行が前提です。remote-env/index.ts /web-setup は help から実質隠されていて、GitHub CLI の token を Claude web 側へ接続するための導線です。allow_remote_sessions policy と tengu_cobalt_lantern が必要です。remote-setup/index.ts さらに隠れ本命として、cloud 上で定期実行する remote agent trigger があります。これは local cron ではなく Anthropic 側の remote session を定期起動する機能です。scheduleRemoteAgents.ts RemoteTriggerTool.ts 2. “条件が揃うまで見せない”機能 /voice は hidden 扱いですが、本体はかなり実装済みです。claude.ai OAuth があり、tengu_amber_quartz_disabled が off で、録音依存とマイク権限が揃うと有効化されます。voice/index.ts voice.ts voiceModeEnabled.ts /passes も隠しです。max 契約の claude.ai subscriber で、referral eligibility がキャッシュ済みのときだけ出ます。内容は「友達に無料1週間を配る代わりに追加 usage / credit を得る」系です。passes/index.ts referral.ts /advisor と hidden flag --advisor は、会話全履歴を強い reviewer model に渡す server-side advisor です。tengu_sage_compass 設定次第で user が選べるかどうかまで変わります。これはかなり未公開感が強いです。advisor.ts advisor.ts /think-back は “Your 2025 Claude Code Year in Review” で、さらに hidden な /thinkback-play でアニメ再生だけを行います。年末まとめ機能が入っています。thinkback/index.ts thinkback-play/index.ts /sandbox も実は半隠しで、未対応 platform、enterprise の enabledPlatforms、policy lock で見えなくできます。/sandbox exclude "pattern" という実用的なサブコマンドもあります。sandbox-toggle/index.ts 3. help に出なくても、裏ではかなり動いている機能 Session Memory は会話を自動で markdown に要約・更新します。forked subagent が裏で動きます。sessionMemory.ts Auto Dream は複数 session を横断して memory を統合します。時間閾値と session 数閾値を超えたら自動発火します。autoDream.ts Magic Docs は # MAGIC DOC: ヘッダのついた markdown を読んだだけで追跡対象にして、会話から学んだことをバックグラウンド更新します。magicDocs.ts Prompt Suggestion も常時バックグラウンド生成です。使っていないように見えて、裏で次の入力候補を作っています。promptSuggestion.ts /loop と Cron 系は見た目以上に強く、session-only と durable の両方があり、durable は .claude/scheduled_tasks.json に保存されます。auto-expire まで入っています。loop.ts prompt.ts 4. ブラウザ・Chrome・Computer Use はかなり本気 /chrome 自体は visible ですが、中身は Beta 設定画面以上です。Chrome extension、native messaging host、MCP server、bridge 接続、site permissions まであります。chrome/index.ts setup.ts mcpServer.ts Computer Use 側はさらに別レイヤで、Esc abort、display pinning、screenshot state、lock、OS notification まで揃っています。wrapper.tsx ただし面白いのは、tools.ts に WebBrowserTool, MonitorTool, WorkflowTool, PushNotificationTool, SubscribePRTool, CtxInspectTool, TerminalCaptureTool, SnipTool, TungstenTool などが参照されるのに、このスナップショットには実体がない点です。tools.ts つまり「未完成」より「別 build / 非同梱モジュールがある」と見る方が自然です。 5. かなり内部向けなもの INTERNAL_ONLY_COMMANDS に bughunter, autofixPr, ctx_viz, share, summary, teleport, oauthRefresh, debug-tool-call などが並び、USER_TYPE === 'ant' && !IS_DEMO でだけ有効になります。commands.ts hidden ant flags も多く、--tasks, --enable-auto-mode, --channels, --dangerously-load-development-channels, --agent-id, --team-name, --teammate-mode などがあります。main.tsx buddy もその一つで、REPL 側には companion sprite、speech bubble、petting、/buddy teaser があるのに、コマンド実装ファイル自体はこの snapshot では欠けています。CompanionSprite.tsx useBuddyNotification.tsx prompt.ts src/assistant も sessionHistory.ts しかなく、main.tsx が参照する assistant/index.js / assistant/gate.js は見当たりません。assistant mode まわりは確実に抜けています。main.tsx 結論 隠れ機能の中心は remote/cloud execution, background autonomy, browser/computer-use, internal advisor/observer, experiments gated by account/build です。見た目は CLI でも、内部の伸ばし先は明らかに「ローカル専用ツール」ではなく「分散エージェント作業環境」です。
1
1
4,867
Claude 今日收入来源是大家都在用 Claude 分析 Claude 源码,Claudecode 源码泄漏,更准确说是逆向提取 深扒了一遍代码,以下是你可以解析源码做的 4 件事: (你可以直接喂给你的龙虾,让他学习) 1、学 Anthropic 怎么写 System Prompt 传统写法(错误示范):“尽量帮助用户,提供详细回答” Anthropic 写法(工程化) 工具约束: “读文件必须用 FileReadTool,不允许用 bash” 风险控制:“删除数据前必须二次确认” 输出规范:“先给结论,再解释” 可以直接套用到你在编程的产品 这样 AI 行为会更加可预测、可控、可上线 2、拆解多 Agent 协作架构(Swarm) 源码里有完整的多 Agent 编排系统 ▪️Coordinator Mode:一个主 Agent 分配任务给多个 Worker,Worker 并行执行后汇报 ▪️权限队列(Mailbox):Worker 需要执行危险操作时,通过 mailbox 向 leader 请求权限,leader 审批后才执行 ▪️原子认领机制:createResolveOnce 防止多个 Worker 同时处理同一个权限请求 ▪️Team Memory:跨 Agent 共享记忆空间 如果你想做多 Agent 系统,这是 Anthropic 自己的最佳实践。特别是权限队列的设计—— 如何在给 Agent 自主权的同时保持人类控制 3、偷师上下文压缩策略 这是 Claude Code 最精妙的工程之一 三层压缩机制: ▪️微压缩(MicroCompact):不触发 API 调用,直接在本地编辑缓存内容,移除旧的工具输出。两种策略——基于缓存的和基于时间的。 ▪️自动压缩(AutoCompact):接近上下文窗口上限时触发。预留 13,000 token 缓冲区,最多生成 20,000 token 的摘要。内置断路器——连续失败 3 次就停止重试,防止死循环 ▪️全量压缩(Full Compact):把整段对话压成摘要,然后重新注入最近访问的文件(每文件 5,000 token 上限)、活跃的 plan、用过的 skill schema。压缩后预算 50,000 token 如果你在做任何长对话 AI 应用,这套三层压缩策略可以直接用,特别是微压缩,不调 API 就能释放上下文空间 4、复制 AutoDream 记忆整理机制 这个最有意思。Claude Code 会在后台自动整理记忆: 触发条件(四个全部触发才执行): 1. 距上次整理 ≥ 24 小时 2.之后又有 ≥ 5 个新会话 3. 没有其他整理进程在跑 4. 距上次扫描 ≥ 10 分钟 整理流程(4 阶段): 1. Orient — 读 MEMORY.md,扫描现有记忆文件 2. Gather — 检查日志,找到已过时的记忆,grep 对话记录 3. Consolidate — 合并、更新、修正矛盾、转换相对日期 4. Prune — 保持 MEMORY.md ≤ 200 行 / 25KB 任何需要长期记忆的 AI 应用都能用这个模式 记忆需要定期整理,不能只增不减 ———— 😎 还有几个搞笑的是: 1、Anthropic 居然在做虚拟宠物 从 userId 哈希确定性生成,别是要发nft?还是愚人节玩笑? 2、源码里列出了所有工具和命令,包括大量未公开的 41 个内置工具 80 个斜杠命令 🔧 未公开工具:WebBrowserTool(浏览器自动化)、MonitorTool(监控)、PushNotificationTool(推送)、SubscribePRTool(PR 订阅)、SnipTool(截图)、ListPeersTool(查看同伴) 🪓 未公开命令:/teleport(会话传送)、/thinkback(回放思维链)、/ultraplan(超级规划模式)、/passes(多轮执行)、/stickers(贴纸??) 这些都还在 feature flag 后面,但知道它们的存在,等正式发布时你就是第一批用上的人 3、看懂 Feature Flags = 看懂 Anthropic 的产品路线图 源码里藏着大量未上线的 feature flag。这是产品经理的水晶球——代码写了但没开放的功能,就是团队接下来要做的事 大致的路线是:CLI → 长驻服务 → 主动模式 → 多Agent协作 → 操作系统级Agent 不仅仅是功能迭代,是产品范式切换 目前已经增加到夸张的 6.5k stars、10k forks,Fork:Star 比 1.7:1 确实离谱——大家都在悄悄存副本怕被删。。。
31
89
429
63,309
Claude Code reverse-engineered par Claude lui-même. Quelle époque. On va balancer tout ça à Hermes pour voir ce qu'il en sort. Description complète du repo — 1884 fichiers TypeScript/TSX: Structure racine Le repo est le frontend/CLI de Claude Code — pas le backend LLM, mais tout ce qui tourne côté client : le terminal interactif (basé sur une fork custom de Ink), le système de tâches, les outils, les agents, les permissions, la mémoire, les plugins, les intégrations IDE. C'est une application React/TSX qui tourne dans le terminal via Node/Bun. src/tools/ — Les outils que Claude peut appeler Chaque outil a sa propre structure ToolName/ToolName.ts prompt.ts UI.tsx. Inventaire complet : BashTool — exécution shell avec AST parser bash maison, classification sémantique des commandes (destructives/sûres), validation sed, validation PowerShell parallèle FileReadTool / FileWriteTool / FileEditTool — lecture/écriture/édition de fichiers avec diff structuré GlobTool / GrepTool — recherche filesystem WebFetchTool / WebSearchTool — fetch web et recherche AgentTool — spawn de sous-agents (le cœur du multi-agent) LSPTool — Language Server Protocol : diagnostics, symboles, définitions en temps réel NotebookEditTool — édition de Jupyter notebooks TeamCreateTool / TeamDeleteTool / SendMessageTool — orchestration multi-agents (swarms) EnterPlanModeTool / ExitPlanModeTool — bascule du mode planification EnterWorktreeTool / ExitWorktreeTool — git worktrees isolés ScheduleCronTool (CronCreate/Delete/List) — tâches planifiées persistées dans .claude/scheduled_tasks.json BriefTool — canal de communication Kairos → utilisateur (proactif/normal) SleepTool — l'agent peut se mettre en pause (Kairos) PushNotificationTool — l'agent peut te notifier (Kairos) RemoteTriggerTool — gestion de triggers CCR via l'API claude.ai TaskCreateTool / TaskGetTool / TaskListTool / TaskUpdateTool / TaskStopTool / TaskOutputTool — système de tasks asynchrones SkillTool — exécution de skills ConfigTool — modification de la config en cours de session TodoWriteTool — gestion de todo lists avec vérification automatique (hive evidence) ToolSearchTool — recherche parmi les outils disponibles AskUserQuestionTool — Claude peut poser des questions structurées à l'utilisateur (choix multiples, etc.) McpAuthTool / MCPTool / ListMcpResourcesTool / ReadMcpResourceTool — intégration MCP complète PowerShellTool — exécution PowerShell (Windows) avec les mêmes garanties de sécurité que BashTool SyntheticOutputTool — outil interne pour outputs synthétiques src/tasks/ — Les types de tâches background LocalAgentTask — agent local dans le même process RemoteAgentTask — agent sur une session distante (CCR) InProcessTeammateTask — teammate dans le même process (swarm in-process) LocalShellTask — tâche shell background DreamTask — tâche de consolidation mémoire (autoDream) LocalMainSessionTask — la session principale src/services/ — Les services Mémoire SessionMemory/ — mémoire de session auto-maintenue via sous-agent forké, mise à jour périodiquement en background autoDream/ — consolidation mémoire automatique nocturne (lock, config, prompt de consolidation) extractMemories/ — extraction de souvenirs depuis les conversations compact/ — compaction du contexte (auto, micro, api-micro, session memory compact, post-compact cleanup) Agents AgentSummary/ — résumés d'agents awaySummary.ts — résumé de ce qui s'est passé pendant une absence API api/claude.ts — client principal Anthropic API api/grove.ts — Grove : système de consentement aux nouvelles conditions d'utilisation (opt-in/opt-out, grace period, notice) api/referral.ts — système de passes guest/referral api/ultrareviewQuota.ts — quota pour /ultrareview api/filesApi.ts — API de fichiers Anthropic (upload) api/sessionIngress.ts — auth des sessions entrantes Analytics analytics/growthbook.ts — feature flags GrowthBook (toute la logique de flags) analytics/datadog.ts — monitoring Datadog analytics/firstPartyEventLogger.ts — logging événements first-party Plugins plugins/PluginInstallationManager.ts — installation/gestion des plugins Marketplace, autoupdate, blocklist, policy, versioning, validation... Autres lsp/ — LSP client/server complet (diagnostics en temps réel dans le contexte Claude) mcp/ — MCP connection manager, auth OAuth, elicitation, channels, Claude.ai MCP, VS Code SDK MCP voice.ts / voiceKeyterms.ts / voiceStreamSTT.ts — Voice (Kairos Amber Quartz) vcr.ts — VCR : système de fixtures pour tests (enregistre/rejoue les appels API, hash-based, activé sur NODE_ENV=test ou FORCE_VCR=1 pour les ants) settingsSync/ — sync des settings entre sessions teamMemorySync/ — sync de mémoire d'équipe avec scan de secrets remoteManagedSettings/ — settings managés à distance (MDM) tips/ — système de tips/conseils avec registry, scheduler, historique compact/timeBasedMCConfig.ts — configuration temporelle de la compaction PromptSuggestion/speculation.ts — spéculation : Claude pré-calcule la réponse probable pendant que l'utilisateur tape, max 20 turns / 100 messages de lookahead preventSleep.ts — empêche l'OS de dormir pendant une tâche longue src/commands/ — Les slash commands Inventaire : /add-dir /advisor /agents /branch /bridge /brief /btw /chrome /clear /color /commit /compact /config /context /copy /cost /desktop /diff /doctor /effort /exit /export /extra-usage /fast /feedback /files /heapdump /help /hooks /ide /init /insights /install-github-app /install-slack-app /keybindings /login /logout /mcp /memory /mobile /model /output-style /passes /permissions /plan /plugin /privacy-settings /rate-limit-options /release-notes /reload-plugins /remote-env /remote-setup /rename /resume /review /rewind /sandbox-toggle /security-review /session /skills /stats /status /stickers /tag /tasks /terminalSetup /theme /thinkback /thinkback-play /ultraplan /upgrade /usage /version /vim /voice Quelques highlights non mentionnés : /thinkback — "Your 2025 Claude Code Year in Review" : une rétrospective animée de ton année avec Claude Code, gated tengu_thinkback /stickers — ouvre stickermule.com/claudecode dans le navigateur /rewind — retour en arrière dans la conversation /tag — tagging de sessions /effort — contrôle du niveau d'effort (low/medium/high/max), paramètre API natif supporté sur Opus 4.6 et Sonnet 4.6 /security-review et /ultrareview — review de sécurité et review "bug hunter" ultra-approfondie (gated tengu_review_bughunter_config) /heapdump — dump mémoire Node.js pour debugging /mobile — intégration mobile src/utils/ — Les utilitaires (le cœur) PermissionsSystème à plusieurs couches : règles, classifier Yolo (LLM léger qui pré-approuve les commandes bash), dangerous patterns, auto-mode state, bypass killswitch, shadow rule detection, deny tracking Swarm Backends multiples : iTerm2, Tmux, InProcess, Pane Leader/worker permission bridge via mailbox Teammate init/layout/model/prompt/reconnection spawnMultiAgent.ts — spawn parallèle de plusieurs agents Computer Use (computerUse/) Nommé en interne Chicago (tengu_malort_pedway). Contrôle de souris/clavier, pixel validation, clipboard guard, coordinate mode pixels/normalized. Gated Max/Pro. Implémenté via @ant/computer-use-mcp, un package interne. La Swift native integration (swiftLoader.ts) suggère une implémentation macOS native. Ultraplan (ultraplan/) keyword.ts — détection du mot magique dans l'input ccrSession.ts — routing vers une session CCR spéciale Teleport (teleport/) api.ts — API claude.ai pour sessions distantes avec retry exponentiel environments.ts — gestion des environnements cloud (création d'un env par défaut) gitBundle.ts — bundle git pour téléporter un repo vers le cloud environmentSelection.ts — sélection d'environnement UndercoverMode où Claude Code masque son identité dans les commits/PRs sur repos publics. Prompt système injecté interdisant tout codename interne (Capybara, Tengu, etc.), numéros de versions non publiées, noms de repos internes. Auto-activé sauf si repo dans l'allowlist interne. Bash (bash/) Parser bash maison complet : AST, tree-sitter analysis, shell completion, heredoc, pipe command, alias resolution, specs (pyright, srun, timeout, time, nohup...) Deep LinkProtocole claude-cli:// enregistré dans l'OS (macOS .app trampoline, Linux .desktop, Windows registry). Permet d'ouvrir Claude Code depuis un lien avec pré-remplissage du prompt, CWD, ou repo. MigrationsHistorique complet des migrations de modèles : Fennec → Opus, Opus → Opus1m, Sonnet 4.5 → Sonnet 4.6, réinitialisation de l'opt-in auto-mode, migration REPL bridge... src/memdir/ — Mémoire (déjà décrit, complet) src/skills/bundled/ — Les skills intégrés batch.ts — traitement batch claudeApi.ts / claudeApiContent.ts — accès direct à l'API Claude depuis un skill claudeInChrome.ts — skill pour Claude dans Chrome debug.ts — debugging keybindings.ts — gestion des raccourcis clavier loop.ts — boucle de traitement loremIpsum.ts — génération de lorem ipsum remember.ts — mémorisation explicite scheduleRemoteAgents.ts — planification d'agents distants via CCR RemoteTrigger (avec décodage d'UUID tagged IDs Base58) simplify.ts — simplification de code skillify.ts — capture une session en cours comme skill réutilisable (analyse les messages user session memory, génère un skill markdown) stuck.ts — aide quand Claude est bloqué updateConfig.ts — mise à jour de la config verify.ts / verifyContent.ts — vérification src/utils/computerUse/ — Chicago (Computer Use) Architecture modulaire : executor.ts (exécution des actions), hostAdapter.ts (adaptation OS), swiftLoader.ts (binaire Swift natif macOS), escHotkey.ts (raccourci d'urgence), computerUseLock.ts (exclusion mutuelle), drainRunLoop.ts (drain du run loop macOS), setup.ts (configuration initiale) src/ink/ — Le moteur de rendu terminal (fork custom d'Ink) Réécriture quasi-totale : layout engine basé sur Yoga (flexbox), renderer custom, gestion ANSI/bidi, support des hyperlinks terminaux, virtual scroll, selection, search highlight, keybindings customs, AlternateScreen, ScrollBox... C'est un vrai moteur UI terminal from scratch. src/bridge/ — Le bridge REPL Bridge entre le CLI et une interface web/desktop : WebSocket, SSE, polling config, JWT, trusted device, capacity wake, flush gate, inbound messages/attachments. Base d'OpenClaw / sessions déportées. src/remote/ — Sessions distantes RemoteSessionManager.ts, SessionsWebSocket.ts, sdkMessageAdapter.ts, remotePermissionBridge.ts — infrastructure pour contrôler Claude Code depuis une interface distante (claude.ai web, desktop app) Feature flags (tengu_*) — Liste exhaustive 55 flags identifiés. Quelques non encore mentionnés : tengu_surreal_dali — expérience inconnue (nom artistique) tengu_coral_fern — expérience inconnue tengu_cicada_nap_ms — durée de sleep Kairos (en ms ?) tengu_chomp_inflection — probablement lié à la compaction tengu_collage_kaleidoscope — expérience visuelle ? tengu_birch_trellis / tengu_bramble_lintel — expériences inconnues tengu_cobalt_harbor / tengu_cobalt_lantern / tengu_cobalt_raccoon — famille cobalt (probablement un modèle ou feature) tengu_slate_prism / tengu_slate_thimble — famille slate tengu_jade_anvil — inconnu tengu_fgts — inconnu (acronyme) tengu_malort_pedway — Chicago (Computer Use) tengu_review_bughunter_config — ultrareview Ce que ce repo révèle sur l'architecture globale Ce n'est pas "un CLI". C'est une plateforme : moteur UI terminal custom, système multi-agents complet avec swarms, mémoire hiérarchique (session/projet/équipe), cron scheduler persistant, spéculation lookahead, Computer Use natif, bridge web/desktop, deep links OS, plugin marketplace, voice, LSP intégré, VCR pour tests, undercover mode, télémétrie multi-niveaux (Datadog, BigQuery, Perfetto tracing), migrations de modèles automatiques, MDM pour entreprises. 1884 fichiers. Tout est là.
4
2
19
6,504
miam miam. Le code source de Claude a fuité. Festin. J'ai analysé le source leak de Claude Code. Ce qu'Anthropic construit en secret est bien plus fou que ce qu'ils annoncent. Claude Code n'est pas un assistant de code. C'est un OS pour agents. Voici ce qui se cache derrière les feature flags. Il y a une variable dans tout le codebase : if (USER_TYPE === 'ant') return true Les employés Anthropic ont accès à TOUT. Kairos, Advisor, multi-agents, sandbox. Vous utilisez la version démo. Eux utilisent le vrai produit. -> KAIROS : l'agent qui agit sans qu'on lui demande. > Il se réveille seul (SleepTool) > Il vous notifie (PushNotificationTool) > Il vous envoie des fichiers (SendUserFileTool) > Il distingue ses messages "normaux" de ses alertes "proactives" Claude qui tape sur votre épaule quand il a fini. Pendant que vous dormez. -> ADVISOR : un Claude qui surveille Claude. Un second modèle tourne en parallèle du modèle principal. Il observe. Il peut interrompre. Il injecte des corrections via des blocs API non documentés publiquement (advisor_result, advisor_redacted_result). Un méta-Claude. En prod. Maintenant. Pour les ants. -> PLAN MODE V2 — le nombre d'agents parallèles est tiérisé par abonnement. Free/Pro : 1 agent Max 20x / Enterprise / Team : 3 agents Vous payez pas juste pour des tokens. Vous payez pour combien de Claudes travaillent en même temps pour vous. -> Le mot ultraplan dans une conversation déclenche une session spéciale côté serveur. Un keyword magique. Dans le code. Hardcodé. Qui change le comportement du modèle. -> SANDBOX : @anthropic-ai/sandbox-runtime, Un package npm interne. Restrictions filesystem, réseau par host pattern, callbacks sur violation. Anthropic peut faire tourner Claude dans un environnement totalement isolé. L'infrastructure pour des agents en prod dans des environnements hostiles existe déjà. -> WILLOW MODE : Claude sait quand vous revenez après une longue absence. Context > 100k tokens 75 min d'inactivité = il détecte votre retour. Trois variantes A/B : dialogue bloquant, hint discret, hint v2. Il gère la reprise de conscience de la conversation. -> BRANCH : /branch fork une conversation à n'importe quel point. Nouveau sessionId. Champ forkedFrom pour tracer la parenté. Git. Mais pour des conversations avec une IA. -> Et le easter egg : un système d'animaux de compagnie ASCII avec des raretés (common → legendary), des chapeaux, des stats nommées. Les espèces sont obfusquées en hex dans le source pour ne pas apparaître dans les grep de canary strings des builds. Ils ont caché un Tamagotchi dans Claude Code. Avec soin. Ce que tout ça dit vraiment : Anthropic ne construit pas un meilleur chatbot. Ils construisent un système d'exploitation pour agents avec scheduling, isolation, fork de contexte, supervision inter-agents et boucles proactives autonomes. Le produit que vous voyez est le tutoriel. @MistralAI faites un mix de ce bijoux avec Qwen et épatez-nous.
Claude code source code has been leaked via a map file in their npm registry! Code: pub-aea8527898604c1bbb12468b…
43
102
900
186,840
30 Jul 2022
Re-engage your audiences with actionable push notifications Register today with free push service, Truepush app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #pushnotification #pushnotifications #pushnotificationsservice #webpush #webpushnotifications
3
29 Jul 2022
Push notifications are great way to communicate with your users. Join Truepush, free push notification service. app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #pushnotification #pushnotifications #pushnotificationsservice #webpush
4
28 Jul 2022
Join Truepush to send unlimited push notifications with advanced features for free. Click link to Register app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #unlimited #pushnotifications #pushservice #pushnotificationsservice #pushnotificationtraffic
4
26 Jul 2022
Thinking about how push notifications can bring traffic or engage users? Here are your answers. Join Truepush and send unlimited push notifications app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #unlimited #pushnotifications #pushnotification #webpush
3
25 Jul 2022
4
23 Jul 2022
Drive users to your website with relevant push notifications Join Truepush today for free!! app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #pushnotification #pushnotifications #free #webpush #chromnotifications
3
22 Jul 2022
Communicate with your users using engaging and relevant push notifications. Join our free webs push notification service today! app.truepush.com/home/regist… #pushnotificationtool #chromepushnotifications #webpushnotifications #pushservice #relationshipmanagement #browserpush
3
21 Jul 2022
Personalized marketing campaigns can increase click and open rates. Register with Truepush and send unlimited push notifications for free. app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #pushnotification #pushnotifications #pushnotificationsservice
3
19 Jul 2022
3
18 Jul 2022
Never leave a chance to make a communication with your users. Join Truepush and send #free and unlimited push notifications app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #pushnotification #pushnotifications #webpush #pushnotificationsservice #Target
3
15 Jul 2022
Reach your customer's devices with push notifications and increase engagement. Login today and save on your push marketing strategy. app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #pushnotification #pushnotifications #pushnotificationsservice
3
14 Jul 2022
Reach your customers wherever they are with push notifications Login to Truepush and send free push messages app.truepush.com/home/regist… #pushnotificationtool #freepushnotificationservice #pushnotification #pushnotifications #pushnotificationsservice #pushnotificationtraffic
3