deepspider 0.1.0 → 0.1.1

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 CHANGED
@@ -1,8 +1,11 @@
1
1
  # DeepSpider
2
2
 
3
- > 智能爬虫工程平台 - 基于 DeepAgents + Patchright
3
+ [![npm version](https://img.shields.io/npm/v/deepspider.svg)](https://www.npmjs.com/package/deepspider)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
5
 
5
- JS 逆向分析到完整爬虫脚本的一站式 AI Agent 解决方案。
6
+ > 智能爬虫工程平台 - 基于 DeepAgents + Patchright 的 AI 爬虫 Agent
7
+
8
+ 从 JS 逆向分析到完整爬虫脚本的一站式解决方案。
6
9
 
7
10
  ## 特性
8
11
 
@@ -18,7 +21,12 @@
18
21
  ### 安装
19
22
 
20
23
  ```bash
21
- # 安装依赖
24
+ # 方式一:npm 全局安装
25
+ npm install -g deepspider
26
+
27
+ # 方式二:克隆仓库
28
+ git clone https://github.com/ma-pony/deepspider.git
29
+ cd deepspider
22
30
  pnpm install
23
31
 
24
32
  # 安装 Python 加密库(用于运行生成的 Python 代码)
@@ -129,6 +137,10 @@ deepspider/
129
137
  - [开发使用指南](docs/GUIDE.md)
130
138
  - [调试指南](docs/DEBUG.md)
131
139
 
140
+ ## 贡献
141
+
142
+ 欢迎提交 Issue 和 Pull Request!
143
+
132
144
  ## License
133
145
 
134
146
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepspider",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "智能爬虫工程平台 - 基于 DeepAgents + Patchright 的 AI 爬虫 Agent",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -10,7 +10,7 @@
10
10
  "scripts": {
11
11
  "start": "node src/index.js",
12
12
  "dev": "node --watch src/index.js",
13
- "cli": "node bin/cli.js",
13
+ "cli": "node src/agent/run.js",
14
14
  "mcp": "node src/mcp/server.js",
15
15
  "agent": "node src/agent/run.js",
16
16
  "test": "node --test test/",
package/src/agent/run.js CHANGED
File without changes