René's URL Explorer Experiment


Title: refactor: 调整项目目录结构 by hqwlkj · Pull Request #182 · lessweb/deepcode-cli · GitHub

Open Graph Title: refactor: 调整项目目录结构 by hqwlkj · Pull Request #182 · lessweb/deepcode-cli

X Title: refactor: 调整项目目录结构 by hqwlkj · Pull Request #182 · lessweb/deepcode-cli

Description: Deep Code 项目结构说明 目录结构 deepcode/ ├── .claude/ # Claude Code 配置 ├── .deepcode/ # Deep Code 本地配置 ├── .github/ # GitHub Actions 配置 │ └── workflows/ # CI/CD 工作流 ├── .husky/ # Git hooks (lint-staged) ├── docs/ # 项目文档 ├── packages/ # Monorepo 工作区 │ ├── cli/ # CLI 终端应用 │ ├── core/ # 核心库 │ └── vscode-ide-companion/ # VSCode 扩展 ├── resources/ # 静态资源 (截图等) ├── scripts/ # 构建脚本 ├── package.json # 根配置 (workspaces) ├── tsconfig.json # TypeScript 配置 └── eslint.config.mjs # ESLint 配置 核心包 (packages/core) 包名: @vegamo/deepcode-core 版本: 0.1.31 职责: LLM 会话管理、工具执行、共享工具库 源码结构 packages/core/ ├── src/ │ ├── common/ # 公共模块 │ │ ├── bash-timeout.ts # Bash 超时处理 │ │ ├── debug-logger.ts # 调试日志 │ │ ├── error-logger.ts # 错误日志 │ │ ├── file-history.ts # 文件历史记录 │ │ ├── file-utils.ts # 文件工具函数 │ │ ├── model-capabilities.ts # 模型能力配置 │ │ ├── notify.ts # 通知系统 │ │ ├── openai-client.ts # OpenAI API 客户端 │ │ ├── openai-message-converter.ts # 消息格式转换 │ │ ├── openai-thinking.ts # 思考链处理 │ │ ├── permissions.ts # 权限管理 │ │ ├── process-tree.ts # 进程树管理 │ │ ├── shell-utils.ts # Shell 工具函数 │ │ ├── state.ts # 状态管理 │ │ ├── telemetry.ts # 遥测统计 │ │ ├── tool-types.ts # 工具类型定义 │ │ └── validate.ts # 数据验证 │ ├── generated/ # 自动生成代码 │ │ └── git-commit.ts # Git 提交信息 │ ├── mcp/ # MCP 协议支持 │ │ ├── mcp-client.ts # MCP 客户端 │ │ └── mcp-manager.ts # MCP 管理器 │ ├── tools/ # 工具处理器 │ │ ├── ask-user-question-handler.ts # 用户提问 │ │ ├── bash-handler.ts # Bash 命令执行 │ │ ├── edit-handler.ts # 文件编辑 │ │ ├── executor.ts # 工具执行器 │ │ ├── read-handler.ts # 文件读取 │ │ ├── update-plan-handler.ts # 计划更新 │ │ ├── web-search-handler.ts # 网页搜索 │ │ └── write-handler.ts # 文件写入 │ ├── tests/ # 单元测试 │ ├── index.ts # 入口文件 │ ├── prompt.ts # Prompt 模板系统 │ ├── session.ts # 会话管理 │ └── settings.ts # 设置管理 ├── templates/ # 模板文件 │ ├── prompts/ # 系统提示词模板 │ ├── skills/ # Agent Skills 技能定义 │ │ └── bundled/ # 内置技能 │ │ ├── deepcode-self-refer/ # 自引用技能 │ │ ├── plan/ # 计划模式技能 │ │ ├── skill-digester/ # 技能分析器 │ │ └── skill-writer/ # 技能编写器 │ └── tools/ # 工具描述模板 └── dist/ # 构建输出 主要依赖 openai - OpenAI API SDK zod - 数据验证 ejs - 模板引擎 chalk - 终端颜色 CLI 应用 (packages/cli) 包名: @vegamo/deepcode-cli 版本: 0.1.31 职责: 终端交互界面,基于 React (Ink) 构建 源码结构 packages/cli/ ├── src/ │ ├── ui/ │ │ ├── components/ # React 组件 │ │ │ ├── DropdownMenu/ # 下拉菜单 │ │ │ ├── FileMentionMenu/# 文件提及菜单 │ │ │ ├── MessageView/ # 消息视图 │ │ │ ├── ModelsDropdown/ # 模型选择 │ │ │ ├── SkillsDropdown/ # 技能选择 │ │ │ └── ... │ │ ├── views/ # 页面视图 │ │ │ ├── App.tsx # 主应用 │ │ │ ├── PromptInput.tsx # 输入框 │ │ │ ├── SessionList.tsx # 会话列表 │ │ │ ├── WelcomeScreen.tsx # 欢迎页 │ │ │ └── ... │ │ ├── contexts/ # React Context │ │ │ ├── AppContext.tsx # 应用上下文 │ │ │ └── RawModeContext.tsx # 原始模式 │ │ ├── hooks/ # 自定义 Hooks │ │ │ ├── cursor.ts # 光标处理 │ │ │ ├── useHistoryNavigation.ts # 历史导航 │ │ │ ├── usePasteHandling.ts # 粘贴处理 │ │ │ └── useTerminalInput.ts # 终端输入 │ │ ├── core/ # 核心逻辑 │ │ │ ├── prompt-buffer.ts # 输入缓冲 │ │ │ ├── slash-commands.ts # 斜杠命令 │ │ │ ├── thinking-state.ts # 思考状态 │ │ │ └── ... │ │ └── index.ts │ ├── common/ │ │ └── update-check.ts # 更新检查 │ ├── tests/ # 单元测试 │ └── cli.tsx # 入口文件 └── dist/ # 构建输出 主要依赖 ink - React 终端渲染框架 react - UI 框架 gradient-string - 渐变文本 VSCode 扩展 (packages/vscode-ide-companion) 包名: deepcode-vscode 版本: 0.1.22 发布者: vegamo 职责: VSCode 编辑器集成 源码结构 packages/vscode-ide-companion/ ├── src/ │ ├── extension.ts # 扩展入口 │ ├── provider.ts # Webview 提供者 │ ├── utils.ts # 工具函数 │ └── tests/ # 测试文件 ├── resources/ # 图标资源 ├── out/ # 编译输出 └── *.vsix # 打包产物 功能特性 Activity Bar 集成 (Deep Code 图标) Webview 视图展示 编辑器标题栏快捷按钮 文档目录 (docs/) docs/ ├── quickstart.md / _en.md # 快速开始 ├── configuration.md / _en.md # 配置说明 ├── mcp.md / _en.md # MCP 协议 ├── notify.md / _en.md # 通知系统 ├── permission.md / _en.md # 权限管理 ├── session-persistence.md / _en.md # 会话持久化 ├── agent-skills.md / _en.md # Agent Skills └── agents-md.md / _en.md # Agents 配置 构建脚本 (scripts/) scripts/ ├── build.js # 主构建脚本 ├── build-vscode-companion.js # VSCode 扩展构建 ├── clean.js # 清理脚本 ├── esbuild.config.js # esbuild 配置 (CLI) ├── esbuild-vscode.config.js # esbuild 配置 (VSCode) ├── copy-bundle-assets.js # 复制资源文件 ├── generate-git-commit-info.js # 生成 Git 信息 └── start.js # 启动脚本 NPM Scripts npm run build # 构建 CLI 应用 npm run build:vscode # 构建 VSCode 扩展 npm run typecheck # TypeScript 类型检查 npm run lint # ESLint 检查 npm run format # Prettier 格式化 npm run test # 运行测试 npm run start # 启动 CLI npm run build-and-start #编译并启动CLI npm run check # 完整检查 (typecheck + lint + format) 版本信息 包名 版本 说明 @vegamo/deepcode-core 0.1.30 核心库 @vegamo/deepcode-cli 0.1.30 CLI 应用 deepcode-vscode 0.1.22 VSCode 扩展

Open Graph Description: Deep Code 项目结构说明 目录结构 deepcode/ ├── .claude/ # Claude Code 配置 ├── .deepcode/ # Deep Code 本地配置 ├── .github/ # GitHub Actions 配置 │ └── workflo...

X Description: Deep Code 项目结构说明 目录结构 deepcode/ ├── .claude/ # Claude Code 配置 ├── .deepcode/ # Deep Code 本地配置 ├── .github/ # GitHub Actions 配置 │ └── workflo...

Opengraph URL: https://github.com/lessweb/deepcode-cli/pull/182

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:ae43b55d-734e-9360-890e-0d696292e191
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-id9940:1162D4:15C8A1E:1FDD707:6A4E49B9
html-safe-nonce3fb66c7abb0861625605fedf39a748b964c09e0a5ea6c2ad9a232c196b4efff4
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5OTQwOjExNjJENDoxNUM4QTFFOjFGREQ3MDc6NkE0RTQ5QjkiLCJ2aXNpdG9yX2lkIjoiNDcwNDE2MTI3NDU5MzY5MjA4OSIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac2d86d37df26c8f1d5138031f25b87ea9bb58e53639841fbcc6c66dd08078fe41
hovercard-subject-tagpull_request:3873753172
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/lessweb/deepcode-cli/pull/182/files
twitter:imagehttps://avatars.githubusercontent.com/u/12181423?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/12181423?s=400&v=4
og:image:altDeep Code 项目结构说明 目录结构 deepcode/ ├── .claude/ # Claude Code 配置 ├── .deepcode/ # Deep Code 本地配置 ├── .github/ # GitHub Actions 配置 │ └── workflo...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None030096ee0db095447bfe77409d33bfac127ca7128299c58deef27c52eaa1b1f0
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/lessweb/deepcode-cli git https://github.com/lessweb/deepcode-cli.git
octolytics-dimension-user_id118287711
octolytics-dimension-user_loginlessweb
octolytics-dimension-repository_id1223512305
octolytics-dimension-repository_nwolessweb/deepcode-cli
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1223512305
octolytics-dimension-repository_network_root_nwolessweb/deepcode-cli
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasee8506f6d0538364886e3f0153c154c410965e70d
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/lessweb/deepcode-cli/pull/182/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Flessweb%2Fdeepcode-cli%2Fpull%2F182%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Flessweb%2Fdeepcode-cli%2Fpull%2F182%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=lessweb%2Fdeepcode-cli
Reloadhttps://github.com/lessweb/deepcode-cli/pull/182/files
Reloadhttps://github.com/lessweb/deepcode-cli/pull/182/files
Reloadhttps://github.com/lessweb/deepcode-cli/pull/182/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/182/files
lessweb https://github.com/lessweb
deepcode-clihttps://github.com/lessweb/deepcode-cli
Notifications https://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli
Fork 152 https://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli
Star 1.7k https://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli
Code https://github.com/lessweb/deepcode-cli
Issues 44 https://github.com/lessweb/deepcode-cli/issues
Pull requests 22 https://github.com/lessweb/deepcode-cli/pulls
Actions https://github.com/lessweb/deepcode-cli/actions
Projects https://github.com/lessweb/deepcode-cli/projects
Security and quality 0 https://github.com/lessweb/deepcode-cli/security
Insights https://github.com/lessweb/deepcode-cli/pulse
Code https://github.com/lessweb/deepcode-cli
Issues https://github.com/lessweb/deepcode-cli/issues
Pull requests https://github.com/lessweb/deepcode-cli/pulls
Actions https://github.com/lessweb/deepcode-cli/actions
Projects https://github.com/lessweb/deepcode-cli/projects
Security and quality https://github.com/lessweb/deepcode-cli/security
Insights https://github.com/lessweb/deepcode-cli/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Flessweb%2Fdeepcode-cli%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Flessweb%2Fdeepcode-cli%2Fissues%2Fnew%2Fchoose
qorzjhttps://github.com/qorzj
lessweb:mainhttps://github.com/lessweb/deepcode-cli/tree/main
hqwlkj:mainhttps://github.com/hqwlkj/deepcode-cli/tree/main
Conversation 0 https://github.com/lessweb/deepcode-cli/pull/182
Commits 15 https://github.com/lessweb/deepcode-cli/pull/182/commits
Checks 6 https://github.com/lessweb/deepcode-cli/pull/182/checks
Files changed https://github.com/lessweb/deepcode-cli/pull/182/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/182/files
refactor: 调整项目目录结构 https://github.com/lessweb/deepcode-cli/pull/182/files#top
Show all changes 15 commits https://github.com/lessweb/deepcode-cli/pull/182/files
2b8dc93 fix: update ESLint config for browser globals and fix vscode extensio… hqwlkj Jun 16, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/2b8dc93a0864adf07b8e9f7caf1071a1f2ac8c3b
b4d89ef fix: update package-lock.json to sync with workspace name change hqwlkj Jun 16, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/b4d89efbf43f519a46689873ea99590731ec7e62
6014c95 fix: remove .vscodeignore to resolve conflict with files property hqwlkj Jun 16, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/6014c9506891d0485ad717ce10e0e8245c23867c
b8ab68b fix: use double quotes in scripts for Windows compatibility hqwlkj Jun 16, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/b8ab68bbf43f9104753868ad0b7f238a4b76a377
1779c6e chore(core): 更新 skill-digester 说明及安装工作流文档 hqwlkj Jun 16, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/1779c6e01c43e6fc4e3c71b8432b0ec2e9600c90
cae7a4d Merge remote-tracking branch 'origin/main' into hqwlkj/main qorzj Jun 17, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/cae7a4de072ef6f64009adb8aa5930cd58eb1782
1d7abe7 chore(vscode-ide-companion): 更新 package.json 分类和关键词 hqwlkj Jun 17, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/1d7abe7c363461d884c8eb7eb142738e21a621ab
8979f07 chore(git): 更新.gitignore以忽略生成文件 hqwlkj Jun 17, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/8979f072560bbf3cd43dbc252d1c1e890c47d0dd
1081e1b chore(git): 更新.gitignore以忽略生成文件 hqwlkj Jun 17, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/1081e1bfb81c0558cfe2535861f65cdd53ff7bfd
c0a2c90 refactor(generated): 移除自动生成的git提交信息文件 hqwlkj Jun 17, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/c0a2c903f379592d77689e9d34d4e1ae231a5662
ca9d683 chore(git): 更新.gitignore以忽略更多文件 hqwlkj Jun 17, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/ca9d683b7903fe31b8036e5241614ef1dc571c08
a7949c3 chore(config): 配置npm注册表和Node版本 hqwlkj Jun 17, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/a7949c325fac4fe59191731b9027ec8e10d9ef43
499081a build(vscode-ide-companion): 添加模板文件复制支持并更新发布脚本 hqwlkj Jun 18, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/499081ababcfbe54ddab01e412e89a2bcc5cd8d3
8fc6d69 refactor(scripts): 优化清理脚本以删除更多构建产物 hqwlkj Jun 18, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/8fc6d696fdae44387cab561df18d331018783202
efdacc2 build(core): 添加后构建的 ESM 导入扩展名重写脚本 hqwlkj Jun 22, 2026 https://github.com/lessweb/deepcode-cli/pull/182/commits/efdacc23190c4d95ce99c6994c73d3774e3bc3f2
Clear filters https://github.com/lessweb/deepcode-cli/pull/182/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/182/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/182/files
ci.yml https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03f
.gitignore https://github.com/lessweb/deepcode-cli/pull/182/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
.npmrc https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e813096d69c49812e40e00be9ac8fa14d77f0ec1f97ab4c45cb096b3bedd35de
.nvmrc https://github.com/lessweb/deepcode-cli/pull/182/files#diff-2c8effdf840690ccb88c7e21e56148978c6adb2c6926530c58ff0e47a9588b44
RELEASE.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-2b1b69303b927a484e02c7fad9fc87d0d3ff0dc22ae1da0ecd0dc935d922a23c
RELEASE_en.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f0e44a47958404962ca65659161c091891199ed61bd3e0cf6d11031365ca6db8
eslint.config.mjs https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9601a8f6c734c2001be34a2361f76946d19a39a709b5e8c624a2a5a0aade05f2
package-lock.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-053150b640a7ce75eff69d1a22cae7f0f94ad64ce9a855db544dda0929316519
package.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519
package.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-6e2e2a1851648938b325ba84de634407a4e69a644ea61102df15ca4a8a7a9758
cli.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-a41539444c74b5a2ba0684ecd0815fdf8463c8a617d5f01aee7b9ef230208d85
update-check.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b5154e36ac4e99c5e08b15e2d0ff69ef0bf8845c6afd64a667150a2e055c011a
ask-user-question.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-4c83eb796005d8e97600c44bbca2473bf3949b1670d88b8896d5542ed4614981
clipboard.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-1505e590b75ffc08855077b5db3b10da495bdd046027a9e0d734674aedf2696b
dropdown-menu.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-72c5599162732b989a851e5c9af8c03b130efb590b6f0581699234c67f3787ef
exit-summary.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-8552ba0c223943af18ee88282a3a48f924f3e0f4e182bc16d3a37e80441555fd
file-mentions.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d7069bc96c7a8db055879e2facbe4e273d168d6e02cae9a2b36b88b41c4c5bd8
loading-text.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-6dc90519fc0eb6b2e882bb617b14ef4fed5bbebdc7b86b0c018ec61355ed0505
markdown.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ef4ae810c1a430bd50b1ad9c351473a30f55911f08a78eab6b5ba6f86a82d9b7
message-view.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-3869123086aabeaba481b2d8aec62ff26145f3996abeb0b77556ec2c164c52a7
permission-prompt.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ad02169594dccaea0b2814fbb39af44865ab602cff7cf993dc7d88528f71eb10
prompt-buffer.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-60311a79f64053deb93c49d97aab1eb3a31ab1ce4c23d522a30a9cdc65b66c23
prompt-input-keys.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-7224a62980ded922d2397ad1e6156a27e39409f46ab37a38f1d155aee647dc9b
prompt-undo-redo.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-24282c76b4b95d0a52598f9992b6a865e2b86f735ca4da2a8d4969fbee5595a3
run-tests.mjs https://github.com/lessweb/deepcode-cli/pull/182/files#diff-810ad57108139bfecbfbeb4abcc361808cba05de1567dcf71057f4bc29adf438
session-list.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b515ed5a9eb8d28b2c282718194d5003e138e8ebaef8ef69b7daf9afd2cb1409
slash-commands.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-21e84de1d0fa99525a673b0aa73e753171e6396f8eb53227e92f1c318456262f
thinking-state.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-df973b70eb794fa5264e187e84e11bc264bcb961c8b698a01421d41cf428dfec
update-check.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9c389cdf3f24315c7b22e0e03b54d862c4ed8808494a8be6242f979b838f8928
welcome-screen.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-16d6004469c0517484281eeb9cc8fc4cb4148896908eba9e9001d8b2a5dc517d
ascii-art.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-dc201aadaa18db483aa3397741df0795c6306009ea686d33610d00e408fd3ae1
index.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ae4c1a1b5eee5c193dbce4773fa779b2860dae2f0696c48cada2f351a9bfb36d
index.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f1224caa7a744d5f3a15397f637d92e2115631b73ef67c74876f801606ce5044
index.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-a2698a491659a99cf605d8e148aedb902ebc1173521345a3baa01ce32cc9aa2a
markdown.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-34d5e93f30899cde2155bce4bd56526e9d1efd056be177f6017dbe0e7dbc8200
types.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-25ebcfc03bf9dc437b4a109f0d7f0a99fc8d0edf8d44a31538cf24db4937efff
utils.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-292b7fbe76e8724363870aefc136d0235a4d2a3d11e0dfedffd9c469da9e417c
index.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-bcd8f5d323c12ef71626455076c54c309ee9f94511834cf65c6febfb558d3dd1
index.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-db9634d54b4274b3d7f09023228e47bd88643e94f22222b8461df039a5cab1a1
index.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d5ed74797ff432049e2edcdea6772fcd1298ad653804a5c797c6bbbf9c67bb33
index.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-df65131c24575a914e0faa26b91a095f9a8a43b4e1578618a06c1ecef1d20c9c
index.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0c2a4b6946887abf353b5ff72245f7017ed6d1f3a9e66f476563b10a111789cb
constants.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-3720f0d4fb57ffc15c1d197c01ceab6e2708e1e597b0f5ebfd5ebd89fa7546dc
AppContext.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-640d78ba3509911c41007150955fe428ea77cb3578ccf1b833c1537df009dc93
RawModeContext.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-6f86895efc21b1e87fa4231c30e9b54414cedb592227aecc806b95e0621d5613
index.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-acb7070c5f793ffc2704f4f9fa26dc5a35e11282843f5a5e8ce665b0f8d43f5b
ask-user-question.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-aa48c774a709b32239332871f387775753a27d6adc0d50ff8763041dd054ecce
clipboard.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-cedb5a3dddb19dd37a0d41133f22d59f282cc6781e7d91c24999b19e175d89b0
file-mentions.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-4ed317c82c4d7f432d9dd3a5e0b6292e565c2ce7e15811c59177b8e043004b47
loading-text.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e3ab4aa402640582866c91b99ee4f23847c67c1274e93d61506c122c3c701b63
prompt-buffer.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-376151d2fc72f45483bb3df58f8c4f00e984831a59a69fea3e4865a5d5b0ada6
prompt-undo-redo.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-2b43f06b3216bfa60e019379b9ee824d6248421463e0f45a6d82da78040dbc0f
slash-commands.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-09b6a5a50bf9b1ebea432bd2b4b57bc629d855d29519cad30268ecfd54b008f9
thinking-state.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-c8cbe0863d4c31801c908623e513413a6b32c226456b67895acdf23d41bb6767
exit-summary.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-14c00cfb3669474f3b4f0c23a49fa59081fa7e58f3d53594385d60ba24fe35ac
cursor.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-c157419a0cc3c280c1bb297b1cbf994ffe258ae226b45f5b14b04ebdd5195b93
index.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f09da05ecaa38022d4dfe69b2568801bccc31b605d2e81c1e1cc1f1ab8df35d0
useHistoryNavigation.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-1c8589d6a103aee1ee6f3a32aaed34952c7a60d77fc4fd56b5ba5e238d01c9ee
usePasteHandling.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-3fba66ca5f530d8ebfda503a6a880644e9afc833c9a33dffb7365e47400e5927
useTerminalInput.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b271af2eef939626dc98266b666437b6500aadcf7c3f73d74928819703be013e
index.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f6216f5f21a0404f397ec428fd7854f2ab3bd05c52b067691cef4e0a3eb19ced
index.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b00a413729e01b591398ae30019b6008eae176cd928e2b65291027f5e00d4e09
App.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-85bb709e32daf446ca90dc746b77c6d1cf092ec6a70d6471ec26786047093dfe
AppContainer.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-45162bdedb2643e10b117b97fea2082cbc4ec2d996afd36b31f805e930e71cd9
AskUserQuestionPrompt.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-3842d8a5b31f5e5a950a4df1265eebb17208c1ca8f3304e5703feeaf6b6cd600
McpStatusList.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0842ac899c8dea2208d61d99570f8bc37cc9de247cd910ff54b6f5303de6e450
PermissionPrompt.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-6a0769622438e9616c177c7feba07ba013d0a2032c516f8ec7cf30afb18a416e
ProcessStdoutView.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-af9536e9eeb9507d10d4f243fa7ca3f53fccf80aa7af738ee60fd33292278c9d
PromptInput.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-5d8e980323ff4917576c504c2289cb958e611b01ff3a7de332fcf4725a2e7522
SessionList.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e5820c2ad5d0558b6207c4d1e8585df55056d34885c02a24eda0799713de281a
SlashCommandMenu.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-4a189a624558fef14e5be3007705343681517a6dff7817b73d3284f0224ad650
ThemedGradient.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ff4817808b341401e3eaad5111b43b51df2dd0d62c57047e9208e07833d58d3d
UndoSelector.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-7e50f67330d8189152f3a9003de7f9d10616a77b44f1c7039e587f41a67aec71
UpdatePrompt.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-6d745c3234255b9c1829c37bc444591a269656a2cf73b883b02dd8012a211cf7
WelcomeScreen.tsx https://github.com/lessweb/deepcode-cli/pull/182/files#diff-8eea28d98801a4982789bee17e2a6b7bbad0eaccc24c0e18fe11db065d720a4b
tsconfig.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e22aa51eb6958a226e8ab3fe57f572e6ca93c2fc23a27d9e03f2a193a5f71d3b
package.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0b810c38f3c138a3d5e44854edefd5eb966617ca84e62f06511f60acc40546c7
bash-timeout.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-757f53fa15ebed4d82cb5c355c95d0f7e819055f11844970c458995907c3d8c9
debug-logger.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f112a435a355d094cecdb8c07a8bc820c73432479247186feb17b586c6084d72
error-logger.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-81d4dcce34df27cdb5d700a90ec5f5ebde09ffb77f2d022ff8d66ceeef01689e
file-history.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-4203f7ce33e65f5ece15a745fa16518a23f20f3e2d70b3f3c60189bf930751d0
file-utils.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-8a63e6a3202961d363fd407527bec6de9128b26497f3718fe5a9f606af8f49ff
model-capabilities.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-522acb72eca25c5e927aceb406f63124b7a801ce43bf9bcf1bb8c5201239779c
notify.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9e61ad554a6c50ecb9f1a68245bd378ca329151bf2cf8fc145e8b7b891f968cb
openai-client.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d928b5d1d1bb6e97ca2ca259b9e46da2ba2614a240877e2d8f996dd5cd9cdd78
openai-message-converter.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ab57aca509632c788196861f5fa6d25f79c1972e7e0e2f5503757c744f020409
openai-thinking.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-8c479aed3eebd86f971b26089baf1c4ca2b287b8bd4cff052878336013d8a8a1
permissions.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-4ebb2b2997ca10c2579a820d0cf6911dad6cad374bc308fd09f0c5bfbf2ea6a3
process-tree.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d7bcba10af2665aceebdf690272a824c97f2d45e0e4cfd31763177ad06cd03f7
shell-utils.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e50631323b4589c4e3f0dc452c391585682c20a6165dd9b844a03b6b7bd5e7c1
state.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-6c77a251b8104878479a5b55b9ca088902a908f9d0fba11e35b61b67b298d903
telemetry.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-6eefdd3074b692cb396b491dbfaf7fd606e739c377146d558f8429a7defa00b4
tool-types.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-505d25f34bcc36d1c27112fc308270f4f214a63f94dc7f6031f4b51f141bd3ff
validate.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-49d6e7df0d71eb51b1b2dbaa3517f941a3808798c381476bbf185b48238c8bb8
index.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9a4ceebe7c6f86856371906c3f061d3b56b7457022b05179884a113e7ced67e8
mcp-client.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-5d02ace300c3bbae93b4acefe34edd6b14fa9a1a2e3227297ac40519f9b14727
mcp-manager.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e553be557e8b86d4309cf08a30cfb774d5b0b801d6f366bbf4c62acecd60ccd7
prompt.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-1e2e5523a4780eb444bdb5e7db9d8d2a775ef5d30502c237043ef5d9800123bc
session.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f8c1eb5dd694398572491c32e62abdec888934d60158fd92a1cf7fed02e30f1b
settings.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-dbb374fe62f23fdf770022c3b44c4d1d8ffbe3b81c6678a4f3e06ae045ebf83e
debug-logger.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f49e8172a4a028a6a2f537e7bfda5012fcd5f4d2988489a0ac5f7d9521b70542
mcp-client.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-efc19843731fcf4cc2291e9c50b1b2c53ef6f033031ffa6aa0ac2ce4e96016aa
memory-leak.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-960942e21bcb10d98be81c129222a47b209a64c858404fdac18251a1dba36e14
openai-message-converter.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-06d7e90c5f82f6c79f71ea783b3194c845fc73772d5ff3cf975dbdbfe5be1fc6
openai-thinking.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-8733dc5c4659fba9fdd6c1896e0aae27f797d452f820f9907f57cba3e58c66f1
permissions.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-785aecca3ea6fd5052b59eee3780ac3e0add0e72eef1c6029fcf854f77d9629a
process-tree.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f89253867e76bf2c42a4c102ac5f49e8215fb77fddffc5b7e9cc4b758ce65469
prompt.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-a1e004aeee206666a6bf7369f893df59d9e95331bf9d783016aeb3f65b3edf78
run-tests.mjs https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ceea03a2514cb9666cc5551792faf3ba8cfddf8dfe071ba227e5826b1bbd7bc3
session.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-5656ff570d64b6b4110912e0ae0f72a1fcc21f50ce3db64663f1f81206dc9612
settings-and-notify.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-08afccad280438a8c538673f556ca66fcb83a15b7412a036f35ec82ef568b6b2
shell-utils.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-36f32493acfa96fc0b5baa4e4aad28b295984b97467db4154db77191c60f22f3
telemetry.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9a53b3233b2a446511d3832706d74c99b74a678f0e4f04bb0a366cd12befa1a4
tool-executor.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-8755858f8571e00c7a08993a71d4fc9eebbce45e8390cedcec0c9fc5ee1d290b
tool-handlers.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e81f947fd4acbcfec69e2384289985e7d745de1a33771c92c43272b902d9d9d8
web-search-handler.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0b0de50d87732dcef7d1cee2ede3ac4b508615b41bb0e9461ace41600dbd8f25
ask-user-question-handler.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d0695469cb5b8ffc904eb57322d1ab1ce35fa6c5223058e824cd08b5a1d56968
bash-handler.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b23e3f0119c2cd8329680378a957865cb110700b7f5fdd9975a65c1ede04e6bb
edit-handler.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-cc14473aad04fb88445b6960286c75ac342b2146b8d1fd63ad25ad9dfccf8306
executor.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-071865e3a0915998dbde1ee63a55d37b019f4f3735bb49086cfee61ab9ea3737
read-handler.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-affa4f05fdb991742f8b806a3fdfc5fbc0fa1f3f076b8f8709d35315af992168
update-plan-handler.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-749ec33d748db32005782f6bb01cc270541d25c004b1f519cb20d5448bbfd35e
web-search-handler.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-458fe5fd10264ab69ccda519fe26b300dd88e7e1825dce797900b540776b0209
write-handler.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ed8e4019383cb74a43a39a4535fdfeeff4f721f5290119fc3acdab3907288039
init_command.md.ejs https://github.com/lessweb/deepcode-cli/pull/182/files#diff-8053ab407ba7a1e11bae01e695f385ce14b1b184196d257599b021a28d97ff16
SKILL.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-fc77bfc70c3f3e37c1fcf45ca04a3597039d81d53f88542fe7b327adf62cea32
README.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-bc0755b71ebc8a4c9ec78146d7cda8563e230637c867ab17cb46eaea5faa3603
configuration.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-45325802c00704631ec21b5805c17ae05993c9bfb4f81379a49084a0a3351064
configuration_en.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0eeb16c3cbc8abe7dff1bd4d50b6de23b85b6df8cb3e622d5f43162c2f499ed8
mcp.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-c8ce8ef66d18bb434577949c540d5e2aa232ea3fcb02e630b021a8432f8660af
mcp_en.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-3f5ff313dd5eea86f02eb8bd28babfed2570573ff333dc64a94889e0a0d68b98
notify.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-248be52dc2567e2e0af96d3aea19fe9dc8f1268bc69a0b61c90abac32a9900e2
notify_en.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e87c0345bad8289ef83a3a70080fb634894d45dbc0cb1794b207c238fe055541
permission.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-bf1c761ecb250cb63da4a623e2a54fa2bef20093ba5ba39dc37207ea21313a61
permission_en.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-ab3d53e1abf1d8139528976978053311d1bad23facd528b6efa18ed8e821e41a
session-persistence.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-f64e0263d6febdb36328b19a9305c54971933b6bd40481034d997cf6f45e60d2
session-persistence_en.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-520a10f99afefdbf31315cf21e4ce47e721c5eb4347ef1f8f32bd641df0d10c9
SKILL.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-20add0c48ba9c67110998b5edf6e58b7a147bc68652d2535456f40ca65920e6e
SKILL.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-86c05daccff1cf4132ab92dad6a1761ff869864ab98df6c52483b115cb627280
find-skill.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-913a7718a39b0859fccd994df680cfd3a1301ef8070c8fb9f0bbcf4277139482
SKILL.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9122a9398e8bab47a69edda090c681e7fc145d451835e2b8124936a8d0cf4974
karpathy-guidelines.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-821341a2bb3079bea17a311eebf1928be19b199769a5040a3408e21bcab15c7f
ask-user-question.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-2a8c55daf9425b8b036b7079ba85ebac414b17d8e7091d272d66256f893a305b
bash.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d3596a7b16f035cf29d1073f601f5b5388fa3c2242ca6231ed4715b1be1b23ca
edit.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0425da6241fff181710c8327093b50db3dc7123eb7aeace284e8e2e3cc138c73
read.md.ejs https://github.com/lessweb/deepcode-cli/pull/182/files#diff-404a150f918ef0fbf084dd19f37cc7d7b69667d361c66842bee059f6eda3d10a
update-plan.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-630695591cf4922c9f7d674759eab5f1f2f12389fe37be26a488074f6f504b3b
web-search.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-cd1dbbb46d6bc5de2eb1538dca7b674b0ceeb9f2c65bf27065d6c511e8fa339c
write.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-740d64bace1cb7b6ec63cd17c091224aa225ebeb34ea4b895736f7d3e6ed343b
tsconfig.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0b8c3937c78098c0f85d5d3a7bfe1db353dac4c532f6ac227d016a28029fa6c9
LICENSE https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0692423c8cabb589f872a2d969b4c51e78414f8962aaefe5eb33fdccb81da779
README.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9e6e4f786e52ba46d2c72460bb781855f77960b80f5d1d2895b4136cd4c46511
README_cn.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e6f84e476aff25827e180fb43c04cd3151292ecc27f863c956b87120cbb2c6d1
README_en.md https://github.com/lessweb/deepcode-cli/pull/182/files#diff-14553f0da8c1b1d2de97f61190a5fc83e4f6be68c8ee0818c0852caac97091a8
package.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0ab4f9f32558992b782a8d4e1dd64282a8af6355285e35e6993e48c7588ef723
deepcode_screenshot.png https://github.com/lessweb/deepcode-cli/pull/182/files#diff-963302c10ba0c1cad38497cd099303d5bc22b3c8c484d9c38c0e7813eb5b2b47
deepcoding_icon.png https://github.com/lessweb/deepcode-cli/pull/182/files#diff-015fb51b574ce6e40e74543400b0d575b535b76a323d2ad1ba4c6850271a291f
deepcoding_icon.svg https://github.com/lessweb/deepcode-cli/pull/182/files#diff-02d8260274a49329c182bce31cb87495328670275127b42f0db830707b3ecf83
faq1.gif https://github.com/lessweb/deepcode-cli/pull/182/files#diff-151e2e8eb62f7be7e792fe960ff905904c2198250ac90a5fbddd343a6383747a
prompt-attachments.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-4fadce417c083698e38affd8ce3c9fced5b4c527ccc66f7e237aefaa1e7b43d3
webview.css https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b1b340dc543274843a47af78fd2310f9f4225ae81ba13c735e1132384ade4ca7
webview.html https://github.com/lessweb/deepcode-cli/pull/182/files#diff-9dffed602da5b640cc343e71687b11e0d97ea7f25ab66a44ff173d26a03410b1
extension.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-4c52019ed605a16548f0eef598f913bba640a96951ac23dbcba73f1565cc89fa
provider.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-3acf3bdbf149e85a1337a82f2505d4ae5b3ef5275bb37e371f74f151d91baa97
extension-utils.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-7047c60ebb02b06ac1307c3958e6e3e2d6ace685292af903240f36a807c51701
extension.test.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-a8470180fcaa24d80a62b389ab78f45e82ea4b6b73068da3ae187558d121cc9d
run-tests.mjs https://github.com/lessweb/deepcode-cli/pull/182/files#diff-7b95403770e9b24d50e50038caa544269c9666a0b20ba47c8601d09fe2d1f6ff
utils.ts https://github.com/lessweb/deepcode-cli/pull/182/files#diff-0b4ec4308b52b43f222dcee5464fda4251cb163750fa2230f9743ed9223fb859
tsconfig.build.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-11f2ab40a3a92391832706f1c554c472d6f0c4748e69805398ea73fa89e4b8f1
tsconfig.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-66213129b214f0844d473ca72d7584e434b0e89f92ef34951f5fb57c17d87a13
build-vscode-companion.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-5fd2dc488428c227014b48d8a5247a8e50cdfb7f87f6a89fd465d8e01e5774dc
build.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-a992dd64a8c626fedc95d613f43602b91f6dc6339893afaf405dc05fa13c9cea
clean.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-cfcbe4515bb8c1f6553d70f04c44fbb86d8b80c4fb65782e38c3defc65995366
copy-bundle-assets.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-7ab17decbf6811d45106001ea470eb83c899a407b44087f843e363ea528ad453
esbuild-vscode.config.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-809e655fffe7d8fbe3e1dfeeeb9cb4876343138d33777e393c1c089f1b2458c5
esbuild.config.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-e962d6956f40038db7ddcfeac2702f5137658333f6817cbff14fb3c8b23fb286
generate-git-commit-info.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-7b6819b7704d67e29f7d051200b084c406975100d65267c50523dd6644c625f7
prepare-package.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-152a9bb8d970664358c309233537698a5d25259149159d0711e5137a0bf11abb
rewrite-esm-imports.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-265488b153daafbf91a63de07702dc42ac3f047089df9dc07f11130c8a70721d
start.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d24555d9adeb3fc524a84f0c70c88d75827a3ed8ee2770d245a33a4b93afed16
version.js https://github.com/lessweb/deepcode-cli/pull/182/files#diff-d4dd6eae5a93186ddce0997857009fd364d8e3f6ed07792ccb2f37960049e989
run-tests.mjs https://github.com/lessweb/deepcode-cli/pull/182/files#diff-286c592c38f0f6b4cdeb2697740a53bc939c795e487ff424893f0c2743f4a073
tsconfig.json https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b55cdbef4907b7045f32cc5360d48d262cca5f94062e353089f189f4460039e0
.github/workflows/ci.ymlhttps://github.com/lessweb/deepcode-cli/pull/182/files#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03f
View file https://github.com/hqwlkj/deepcode-cli/blob/efdacc23190c4d95ce99c6994c73d3774e3bc3f2/.github/workflows/ci.yml
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/lessweb/deepcode-cli/pull/182/{{ revealButtonHref }}
https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03f
https://github.com/lessweb/deepcode-cli/pull/182/files#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03f
.gitignorehttps://github.com/lessweb/deepcode-cli/pull/182/files#diff-bc37d034bad564583790a46f19d807abfe519c5671395fd494d8cce506c42947
View file https://github.com/hqwlkj/deepcode-cli/blob/efdacc23190c4d95ce99c6994c73d3774e3bc3f2/.gitignore
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/lessweb/deepcode-cli/pull/182/{{ revealButtonHref }}
.npmrchttps://github.com/lessweb/deepcode-cli/pull/182/files#diff-e813096d69c49812e40e00be9ac8fa14d77f0ec1f97ab4c45cb096b3bedd35de
View file https://github.com/hqwlkj/deepcode-cli/blob/efdacc23190c4d95ce99c6994c73d3774e3bc3f2/.npmrc
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/lessweb/deepcode-cli/pull/182/{{ revealButtonHref }}
.nvmrchttps://github.com/lessweb/deepcode-cli/pull/182/files#diff-2c8effdf840690ccb88c7e21e56148978c6adb2c6926530c58ff0e47a9588b44
View file https://github.com/hqwlkj/deepcode-cli/blob/efdacc23190c4d95ce99c6994c73d3774e3bc3f2/.nvmrc
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/lessweb/deepcode-cli/pull/182/{{ revealButtonHref }}
RELEASE.mdhttps://github.com/lessweb/deepcode-cli/pull/182/files#diff-2b1b69303b927a484e02c7fad9fc87d0d3ff0dc22ae1da0ecd0dc935d922a23c
View file https://github.com/hqwlkj/deepcode-cli/blob/efdacc23190c4d95ce99c6994c73d3774e3bc3f2/RELEASE.md
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/lessweb/deepcode-cli/pull/182/{{ revealButtonHref }}
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/182/files
Please reload this pagehttps://github.com/lessweb/deepcode-cli/pull/182/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.