@unity-china/codely-cli 1.0.0-rc.2 → 1.0.0-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md DELETED
@@ -1,332 +0,0 @@
1
- # Codely CLI
2
-
3
- <div align="center">
4
-
5
- ![Codely CLI Screenshot](https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/SDRJbcEfUoQRsVxcPJ8ccKTdnMc/?fallback_source=1&height=1280&mount_node_token=JRnkdygOJoQcpyxlCQncsGtMnTc&mount_point=docx_image&policy=equal&width=1280)
6
-
7
- [![npm version](https://img.shields.io/npm/v/@unity-china/codely-cli.svg)](https://www.npmjs.com/package/@unity-china/codely-cli)
8
- [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](./LICENSE)
9
- [![Node.js Version](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg)](https://nodejs.org/)
10
- [![Downloads](https://img.shields.io/npm/dm/@unity-china/codely-cli.svg)](https://www.npmjs.com/package/@unity-china/codely-cli)
11
-
12
- **AI-powered command-line workflow tool for developers**
13
-
14
- 🌐 [Official Website](https://codely.tuanjie.cn/) • 📖 [Documentation](https://yousandi.feishu.cn/wiki/Sqmlw31sYiTm8qkh7s1cSlbenmb) • 🇨🇳 [中文文档](https://yousandi.feishu.cn/wiki/Sqmlw31sYiTm8qkh7s1cSlbenmb)
15
-
16
- [Installation](#installation) • [Quick Start](#quick-start) • [Features](#key-features)
17
-
18
- </div>
19
-
20
- ## Key Features
21
-
22
- - **Code Understanding & Editing** - Query and edit large codebases beyond traditional context window limits
23
- - **Workflow Automation** - Automate operational tasks like handling pull requests and complex rebases
24
- - **AI Agent System** - Specialized intelligent agents for deep codebase analysis and automated tasks
25
- - **MCP Integration** - Extend capabilities with Model Context Protocol servers for external tools and services
26
- - **Unity Integration** - Direct integration with Unity/Tuanjie Engine for game development tasks
27
- - **Screenshot Analysis** - Analyze screenshots and images to understand UI/UX and extract information
28
- - **Sandboxing** - Secure execution environment with multiple sandboxing modes
29
- - **IDE Plugin** - VS Code extension for seamless integration
30
- - **ACP Support** - Agent Client Protocol integration for editors like Zed ([User Guide](docs/users/acp-guide-CN.md))
31
-
32
- ## 🤖 AI Agent System
33
-
34
- Codely CLI includes a powerful agent system with specialized AI assistants for complex development tasks:
35
-
36
- ### Agent Usage
37
-
38
- **Interactive Mode** (agents invoked automatically):
39
-
40
- ```bash
41
- codely
42
- > Analyze this React project's component architecture and identify performance bottlenecks
43
- ```
44
-
45
- **Non-Interactive Mode** with different output formats:
46
-
47
- ```bash
48
- # Standard text output
49
- codely --prompt "Analyze the API endpoints and security measures"
50
-
51
- # JSON output for automation
52
- codely --output-format json --prompt "Investigate the codebase structure" > analysis.json
53
-
54
- # Streaming JSON for real-time monitoring
55
- codely --output-format stream-json --prompt "Document the data flow" | jq '.type == "agent_think"'
56
- ```
57
-
58
- ### Agent Management
59
-
60
- **List available agents:**
61
-
62
- ```bash
63
- /agents list
64
- ```
65
-
66
- **Create custom agents:**
67
-
68
- ```bash
69
- # Project-level agent
70
- /agents create security-auditor
71
-
72
- # Global agent
73
- /agents create my-helper --global
74
-
75
- # With custom description
76
- /agents create api-analyzer "Analyzes API endpoints and documentation"
77
- ```
78
-
79
- **Agent locations:**
80
-
81
- - **Project agents**: `.codely-cli/agents/` (shared with team)
82
- - **Global agents**: `~/.codely-cli/agents/` (personal use)
83
-
84
- ### Example Agent Output
85
-
86
- Agents provide structured, comprehensive results:
87
-
88
- **Interactive Progress:**
89
-
90
- ```
91
- 🚀 Delegating to codebase_investigator subagent...
92
- 🔧 [1] List Directory - scanning project structure
93
- ✅ List Directory finished - 45 directories found
94
- 🤖💭 Analyzing package.json dependencies...
95
- 🔧 [2] Read File - package.json
96
- ✅ Read File finished - analyzing dependencies
97
- 📋 Result:
98
- {
99
- "SummaryOfFindings": "React application with 3-tier architecture...",
100
- "ExplorationTrace": ["Analyzed project structure", "Examined routing"],
101
- "RelevantLocations": ["src/components/App.tsx", "src/api/routes.ts"]
102
- }
103
- ```
104
-
105
- ## Installation
106
-
107
- ### Prerequisites
108
-
109
- Ensure you have [Node.js version 20](https://nodejs.org/en/download) or higher installed.
110
-
111
- ### Install directly
112
-
113
- ```bash
114
- npm i @unity-china/codely-cli
115
- ```
116
-
117
- ## Quick Start
118
-
119
- ```bash
120
- # Start
121
- codely
122
-
123
- # Example commands
124
- > Explain this codebase structure
125
- > Help me refactor this function
126
- > Generate unit tests for this module
127
- ```
128
-
129
- ### Session Management
130
-
131
- Control your token usage with configurable session limits to optimize costs and performance.
132
-
133
- #### Configure Session Token Limit
134
-
135
- Create or edit `.codely-cli/settings.json` in your home directory:
136
-
137
- ```json
138
- {
139
- "sessionTokenLimit": 32000
140
- }
141
- ```
142
-
143
- #### Session Commands
144
-
145
- - **`/compress`** - Compress conversation history to continue within token limits
146
- - **`/clear`** - Clear all conversation history and start fresh
147
- - **`/stats`** - Check current token usage and limits
148
-
149
- > 📝 **Note**: Session token limit applies to a single conversation, not cumulative API calls.
150
-
151
- ## Usage Examples
152
-
153
- ### 🔍 Explore Codebases
154
-
155
- ```bash
156
- cd your-project/
157
- codely
158
-
159
- # Architecture analysis
160
- > Describe the main pieces of this system's architecture
161
- > What are the key dependencies and how do they interact?
162
- > Find all API endpoints and their authentication methods
163
- ```
164
-
165
- ### 💻 Code Development
166
-
167
- ```bash
168
- # Refactoring
169
- > Refactor this function to improve readability and performance
170
- > Convert this class to use dependency injection
171
- > Split this large module into smaller, focused components
172
-
173
- # Code generation
174
- > Create a REST API endpoint for user management
175
- > Generate unit tests for the authentication module
176
- > Add error handling to all database operations
177
- ```
178
-
179
- ### 🔄 Automate Workflows
180
-
181
- ```bash
182
- # Git automation
183
- > Analyze git commits from the last 7 days, grouped by feature
184
- > Create a changelog from recent commits
185
- > Find all TODO comments and create GitHub issues
186
-
187
- # File operations
188
- > Convert all images in this directory to PNG format
189
- > Rename all test files to follow the *.test.ts pattern
190
- > Find and remove all console.log statements
191
- ```
192
-
193
- ### 🐛 Debugging & Analysis
194
-
195
- ```bash
196
- # Performance analysis
197
- > Identify performance bottlenecks in this React component
198
- > Find all N+1 query problems in the codebase
199
-
200
- # Security audit
201
- > Check for potential SQL injection vulnerabilities
202
- > Find all hardcoded credentials or API keys
203
- ```
204
-
205
- ## Popular Tasks
206
-
207
- ### 📚 Understand New Codebases
208
-
209
- ```text
210
- > What are the core business logic components?
211
- > What security mechanisms are in place?
212
- > How does the data flow through the system?
213
- > What are the main design patterns used?
214
- > Generate a dependency graph for this module
215
- ```
216
-
217
- ### 🔨 Code Refactoring & Optimization
218
-
219
- ```text
220
- > What parts of this module can be optimized?
221
- > Help me refactor this class to follow SOLID principles
222
- > Add proper error handling and logging
223
- > Convert callbacks to async/await pattern
224
- > Implement caching for expensive operations
225
- ```
226
-
227
- ### 📝 Documentation & Testing
228
-
229
- ```text
230
- > Generate comprehensive JSDoc comments for all public APIs
231
- > Write unit tests with edge cases for this component
232
- > Create API documentation in OpenAPI format
233
- > Add inline comments explaining complex algorithms
234
- > Generate a README for this module
235
- ```
236
-
237
- ### 🚀 Development Acceleration
238
-
239
- ```text
240
- > Set up a new Express server with authentication
241
- > Create a React component with TypeScript and tests
242
- > Implement a rate limiter middleware
243
- > Add database migrations for new schema
244
- > Configure CI/CD pipeline for this project
245
- ```
246
-
247
- ## Commands & Shortcuts
248
-
249
- ### Session Commands
250
-
251
- - `/help` - Display available commands
252
- - `/clear` - Clear conversation history
253
- - `/compress` - Compress history to save tokens
254
- - `/stats` - Show current session information
255
- - `/exit` or `/quit` - Exit Codely CLI
256
-
257
- ### MCP Commands
258
-
259
- Manage Model Context Protocol (MCP) servers to extend Codely capabilities with external tools and services:
260
-
261
- - `/mcp` - List configured MCP servers and their available tools
262
- - `/mcp desc` - Show detailed descriptions of servers and tools
263
- - `/mcp schema` - Display tool parameter schemas
264
- - `/mcp auth <server-name>` - Authenticate with OAuth-enabled MCP servers
265
- - `/mcp refresh` - Refresh the list of MCP servers and tools
266
-
267
- CLI commands for managing MCP server configurations:
268
-
269
- #### `codely mcp add <name> <commandOrUrl> [args...]`
270
-
271
- Add a new MCP server with the specified name and connection details.
272
-
273
- **Options:**
274
-
275
- - `--scope` (`-s`) - Configuration scope (user or project)
276
- - `--transport` (`-t`) - Transport type (stdio, sse, http)
277
- - `--env` (`-e`) - Set environment variables for stdio transport (e.g. `-e KEY=value`)
278
- - `--header` (`-H`) - Set HTTP headers for SSE and HTTP transports (e.g. `-H "X-Api-Key: abc123"`)
279
- - `--timeout` - Connection timeout in milliseconds
280
- - `--trust` - Trust the server (bypass all tool call confirmation prompts)
281
- - `--description` - Description for the server
282
- - `--include-tools` - Comma-separated list of tools to include
283
- - `--exclude-tools` - Comma-separated list of tools to exclude
284
-
285
- **Transport Types:**
286
-
287
- - `stdio` (default) - Launch a process using the specified command and arguments
288
- - `sse` - Connect to a server using Server-Sent Events protocol
289
- - `http` - Connect to a server using HTTP protocol
290
-
291
- **Examples:**
292
-
293
- ```bash
294
- # Add a stdio server
295
- codely mcp add my-server python /path/to/server.py --env API_KEY=abc123
296
-
297
- # Add an HTTP server
298
- codely mcp add my-http-server http://localhost:8000 --transport http --header "Authorization: Bearer token"
299
-
300
- # Add a server with scoped configuration
301
- codely mcp add my-server python /path/to/server.py --scope user
302
- ```
303
-
304
- #### `codely mcp list`
305
-
306
- List all configured MCP servers and their connection status.
307
-
308
- #### `codely mcp remove <name>`
309
-
310
- Remove an MCP server with the specified name.
311
-
312
- **Options:**
313
-
314
- - `--scope` (`-s`) - Configuration scope (user or project)
315
-
316
- ### Keyboard Shortcuts
317
-
318
- - `Ctrl+C` - Cancel current operation
319
- - `Ctrl+D` - Exit (on empty line)
320
- - `Up/Down` - Navigate command history
321
-
322
- ## Troubleshooting
323
-
324
- If you encounter issues, please check the error messages and ensure:
325
-
326
- - Node.js version is 20 or higher
327
- - All dependencies are properly installed
328
- - API keys are correctly configured in settings
329
-
330
- ## License
331
-
332
- [LICENSE](./LICENSE)
package/README.zh-CN.md DELETED
@@ -1,336 +0,0 @@
1
- # Codely CLI
2
-
3
- <div align="center">
4
-
5
- ![Codely CLI 截图](https://internal-api-drive-stream.feishu.cn/space/api/box/stream/download/v2/cover/SDRJbcEfUoQRsVxcPJ8ccKTdnMc/?fallback_source=1&height=1280&mount_node_token=JRnkdygOJoQcpyxlCQncsGtMnTc&mount_point=docx_image&policy=equal&width=1280)
6
-
7
- [![npm 版本](https://img.shields.io/npm/v/@unity-china/codely-cli.svg)](https://www.npmjs.com/package/@unity-china/codely-cli)
8
- [![许可证](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](./LICENSE)
9
- [![Node.js 版本](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg)](https://nodejs.org/)
10
- [![下载量](https://img.shields.io/npm/dm/@unity-china/codely-cli.svg)](https://www.npmjs.com/package/@unity-china/codely-cli)
11
-
12
- **面向开发者的 AI 驱动命令行工作流工具**
13
-
14
- 🌐 [官方网站](https://codely.tuanjie.cn/) • 📖 [使用手册](https://yousandi.feishu.cn/wiki/Sqmlw31sYiTm8qkh7s1cSlbenmb) • 🇺🇸 [English](./README.md)
15
-
16
- [安装](#安装) • [快速开始](#快速开始) • [核心功能](#核心功能)
17
-
18
- </div>
19
-
20
- ## 核心功能
21
-
22
- - **代码理解与编辑** - 查询和编辑超出传统上下文窗口限制的大型代码库
23
- - **工作流自动化** - 自动化处理拉取请求和复杂变基等操作任务
24
- - **AI 智能体系统** - 专业的智能代理,用于深度代码库分析和自动化任务
25
- - **MCP 集成** - 通过模型上下文协议服务器扩展外部工具和服务能力
26
- - **Unity 集成** - 与 Unity/团结引擎直接集成,支持游戏开发任务
27
- - **截图分析** - 分析截图和图像以理解 UI/UX 并提取信息
28
- - **沙箱环境** - 多种沙箱模式的安全执行环境
29
- - **IDE 插件** - VS Code 扩展实现无缝集成
30
-
31
- ## 🤖 AI 智能体系统
32
-
33
- Codely CLI 包含强大的智能体系统,提供专业的 AI 助手处理复杂的开发任务:
34
-
35
- ### 智能体使用
36
-
37
- **交互模式**(智能体自动调用):
38
-
39
- ```bash
40
- codely
41
- > 分析这个 React 项目的组件架构并识别性能瓶颈
42
- ```
43
-
44
- **非交互模式**支持不同的输出格式:
45
-
46
- ```bash
47
- # 标准文本输出
48
- codely --prompt "分析 API 端点和安全措施"
49
-
50
- # JSON 输出用于自动化
51
- codely --output-format json --prompt "调查代码库结构" > analysis.json
52
-
53
- # 流式 JSON 用于实时监控
54
- codely --output-format stream-json --prompt "记录数据流" | jq '.type == "agent_think"'
55
- ```
56
-
57
- ### 智能体管理
58
-
59
- **列出可用的智能体:**
60
-
61
- ```bash
62
- /agents list
63
- ```
64
-
65
- **创建自定义智能体:**
66
-
67
- ```bash
68
- # 项目级别智能体
69
- /agents create security-auditor
70
-
71
- # 全局智能体
72
- /agents create my-helper --global
73
-
74
- # 带自定义描述
75
- /agents create api-analyzer "分析 API 端点和文档"
76
- ```
77
-
78
- **智能体位置:**
79
-
80
- - **项目智能体**:`.codely-cli/agents/`(与团队共享)
81
- - **全局智能体**:`~/.codely-cli/agents/`(个人使用)
82
-
83
- ### 智能体输出示例
84
-
85
- 智能体提供结构化的完整结果:
86
-
87
- **交互式进度:**
88
-
89
- ```
90
- 🚀 委派给 codebase_investigator 子智能体...
91
- 🔧 [1] 列出目录 - 扫描项目结构
92
- ✅ 列出目录完成 - 找到 45 个目录
93
- 🤖💭 正在分析 package.json 依赖...
94
- 🔧 [2] 读取文件 - package.json
95
- ✅ 读取文件完成 - 分析依赖中
96
- 📋 结果:
97
- {
98
- "SummaryOfFindings": "React 应用采用三层架构...",
99
- "ExplorationTrace": ["分析项目结构", "检查路由"],
100
- "RelevantLocations": ["src/components/App.tsx", "src/api/routes.ts"]
101
- }
102
- ```
103
-
104
- ## 安装
105
-
106
- ### 前置要求
107
-
108
- 确保已安装 [Node.js 20](https://nodejs.org/en/download) 或更高版本。
109
-
110
- ### 直接安装
111
-
112
- ```bash
113
- npm i -g @unity-china/codely-cli
114
- ```
115
-
116
- ## 快速开始
117
-
118
- ```bash
119
- # 启动
120
- codely
121
-
122
- # 示例命令
123
- > 解释这个代码库结构
124
- > 帮我重构这个函数
125
- > 为这个模块生成单元测试
126
- ```
127
-
128
- ### 会话管理
129
-
130
- 通过可配置的会话限制控制您的 token 使用量,以优化成本和性能。
131
-
132
- #### 配置会话 Token 限制
133
-
134
- 在您的主目录中创建或编辑 `.codely-cli/settings.json`:
135
-
136
- ```json
137
- {
138
- "sessionTokenLimit": 32000
139
- }
140
- ```
141
-
142
- #### 会话命令
143
-
144
- - **`/compress`** - 压缩对话历史以继续在 token 限制内使用
145
- - **`/clear`** - 清除所有对话历史并重新开始
146
- - **`/stats`** - 检查当前 token 使用情况和限制
147
-
148
- > 📝 **注意**:会话 token 限制适用于单次对话,而非累计 API 调用。
149
-
150
- ## 使用示例
151
-
152
- ### 🔍 探索代码库
153
-
154
- ```bash
155
- cd your-project/
156
- codely
157
-
158
- # 架构分析
159
- > 描述这个系统架构的主要部分
160
- > 关键依赖是什么,它们如何交互?
161
- > 查找所有 API 端点及其认证方法
162
- ```
163
-
164
- ### 💻 代码开发
165
-
166
- ```bash
167
- # 重构
168
- > 重构这个函数以提高可读性和性能
169
- > 将这个类转换为使用依赖注入
170
- > 将这个大模块拆分成更小、更专注的组件
171
-
172
- # 代码生成
173
- > 创建一个用户管理的 REST API 端点
174
- > 为认证模块生成单元测试
175
- > 为所有数据库操作添加错误处理
176
- ```
177
-
178
- ### 🔄 自动化工作流
179
-
180
- ```bash
181
- # Git 自动化
182
- > 分析过去 7 天的 git 提交,按功能分组
183
- > 从最近的提交创建变更日志
184
- > 查找所有 TODO 注释并创建 GitHub issues
185
-
186
- # 文件操作
187
- > 将此目录中的所有图像转换为 PNG 格式
188
- > 将所有测试文件重命名为 *.test.ts 模式
189
- > 查找并删除所有 console.log 语句
190
- ```
191
-
192
- ### 🐛 调试与分析
193
-
194
- ```bash
195
- # 性能分析
196
- > 识别这个 React 组件中的性能瓶颈
197
- > 在代码库中查找所有 N+1 查询问题
198
-
199
- # 安全审计
200
- > 检查潜在的 SQL 注入漏洞
201
- > 查找所有硬编码的凭据或 API 密钥
202
- ```
203
-
204
- ## 常用任务
205
-
206
- ### 📚 理解新代码库
207
-
208
- ```text
209
- > 核心业务逻辑组件是什么?
210
- > 有哪些安全机制?
211
- > 数据如何在系统中流动?
212
- > 使用了哪些主要设计模式?
213
- > 为这个模块生成依赖关系图
214
- ```
215
-
216
- ### 🔨 代码重构与优化
217
-
218
- ```text
219
- > 这个模块的哪些部分可以优化?
220
- > 帮我重构这个类以遵循 SOLID 原则
221
- > 添加适当的错误处理和日志记录
222
- > 将回调转换为 async/await 模式
223
- > 为昂贵的操作实现缓存
224
- ```
225
-
226
- ### 📝 文档与测试
227
-
228
- ```text
229
- > 为所有公共 API 生成全面的 JSDoc 注释
230
- > 编写包含边界情况的单元测试
231
- > 以 OpenAPI 格式创建 API 文档
232
- > 添加解释复杂算法的内联注释
233
- > 为这个模块生成 README
234
- ```
235
-
236
- ### 🚀 开发加速
237
-
238
- ```text
239
- > 设置一个带认证的新 Express 服务器
240
- > 创建一个带 TypeScript 和测试的 React 组件
241
- > 实现一个速率限制中间件
242
- > 为新架构添加数据库迁移
243
- > 为这个项目配置 CI/CD 流水线
244
- ```
245
-
246
- ## 命令与快捷键
247
-
248
- ### 会话命令
249
-
250
- - `/help` - 显示可用命令
251
- - `/clear` - 清除对话历史
252
- - `/compress` - 压缩历史以节省 tokens
253
- - `/stats` - 显示当前会话信息
254
- - `/exit` 或 `/quit` - 退出 Codely CLI
255
-
256
- ### MCP 命令
257
-
258
- 管理模型上下文协议(MCP)服务器以扩展 Codely 的外部工具和服务能力:
259
-
260
- - `/mcp` - 列出已配置的 MCP 服务器及其可用工具
261
- - `/mcp desc` - 显示服务器和工具的详细描述
262
- - `/mcp schema` - 显示工具参数架构
263
- - `/mcp auth <server-name>` - 对启用 OAuth 的 MCP 服务器进行身份验证
264
- - `/mcp refresh` - 刷新 MCP 服务器和工具列表
265
-
266
- 管理 MCP 服务器配置的 CLI 命令:
267
-
268
- #### `codely mcp add <name> <commandOrUrl> [args...]`
269
-
270
- 添加具有指定名称和连接详情的新 MCP 服务器。
271
-
272
- **选项:**
273
-
274
- - `--scope` (`-s`) - 配置范围(user 或 project)
275
- - `--transport` (`-t`) - 传输类型(stdio、sse、http)
276
- - `--env` (`-e`) - 为 stdio 传输设置环境变量(例如 `-e KEY=value`)
277
- - `--header` (`-H`) - 为 SSE 和 HTTP 传输设置 HTTP 头(例如 `-H "X-Api-Key: abc123"`)
278
- - `--timeout` - 连接超时时间(毫秒)
279
- - `--trust` - 信任服务器(绕过所有工具调用确认提示)
280
- - `--description` - 服务器描述
281
- - `--include-tools` - 要包含的工具的逗号分隔列表
282
- - `--exclude-tools` - 要排除的工具的逗号分隔列表
283
-
284
- **传输类型:**
285
-
286
- - `stdio`(默认)- 使用指定的命令和参数启动进程
287
- - `sse` - 使用服务器发送事件协议连接到服务器
288
- - `http` - 使用 HTTP 协议连接到服务器
289
-
290
- **示例:**
291
-
292
- ```bash
293
- # 添加 stdio 服务器
294
- codely mcp add my-server python /path/to/server.py --env API_KEY=abc123
295
-
296
- # 添加 HTTP 服务器
297
- codely mcp add my-http-server http://localhost:8000 --transport http --header "Authorization: Bearer token"
298
-
299
- # 添加具有范围配置的服务器
300
- codely mcp add my-server python /path/to/server.py --scope user
301
- ```
302
-
303
- #### `codely mcp list`
304
-
305
- 列出所有已配置的 MCP 服务器及其连接状态。
306
-
307
- #### `codely mcp remove <name>`
308
-
309
- 删除具有指定名称的 MCP 服务器。
310
-
311
- **选项:**
312
-
313
- - `--scope` (`-s`) - 配置范围(user 或 project)
314
-
315
- ### 键盘快捷键
316
-
317
- - `Ctrl+C` - 取消当前操作
318
- - `Ctrl+D` - 退出(在空行上)
319
- - `上/下箭头` - 浏览命令历史
320
-
321
- ## 故障排除
322
-
323
- 如果您遇到问题,请检查错误消息并确保:
324
-
325
- - Node.js 版本为 20 或更高
326
- - 所有依赖项已正确安装
327
- - API 密钥在设置中正确配置
328
-
329
- 如需更多帮助,请访问:
330
-
331
- - 🌐 [官方网站](https://codely.tuanjie.cn/)
332
- - 📖 [使用手册](https://yousandi.feishu.cn/wiki/Sqmlw31sYiTm8qkh7s1cSlbenmb)
333
-
334
- ## 许可证
335
-
336
- [LICENSE](./LICENSE)