@devflow-tools/adapters 0.17.7 → 0.18.0

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +2 -2
  3. package/package.json +10 -3
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 shilongfeicool
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @devflow-tools/adapters
2
2
 
3
- > 面向 Claude Code 等 Agent 的 MCP 配置适配器。(v0.17.7
3
+ > 面向 Claude Code 等 Agent 的 MCP 配置适配器。(v0.17.8
4
4
 
5
5
  [![npm version](https://img.shields.io/npm/v/%40devflow-tools%2Fadapters.svg)](https://www.npmjs.com/package/@devflow-tools/adapters)
6
6
 
@@ -30,7 +30,7 @@ await connect('claude', { command: 'devflow-mcp', args: ['--mode', 'stdio'] });
30
30
 
31
31
  ## 版本与兼容性
32
32
 
33
- - 当前包版本:`0.17.7`
33
+ - 当前包版本:`0.17.8`
34
34
  - Node.js:未在 package manifest 声明更高版本时,使用 Node.js 18+;原生 SQLite/Playwright 能力请按对应依赖安装
35
35
  - workspace 内部包应使用同一 DevFlow minor/patch 版本,避免类型和数据库 schema 不一致
36
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/adapters",
3
- "version": "0.17.7",
3
+ "version": "0.18.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -17,7 +17,7 @@
17
17
  "clean": "rm -rf dist"
18
18
  },
19
19
  "dependencies": {
20
- "@devflow-tools/sdk": "0.17.7"
20
+ "@devflow-tools/sdk": "0.18.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "typescript": "^5.5.0",
@@ -26,5 +26,12 @@
26
26
  "files": [
27
27
  "dist"
28
28
  ],
29
- "gitHead": "560fe8a097aa9d398fdcfec409134cc94d26f92f"
29
+ "gitHead": "940c6c004c0ebb59abad3da9bc67137fa2d2a666",
30
+ "description": "Host and framework adapters for DevFlow runtime integrations.",
31
+ "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/shilongfeicool/dev-flow.git"
35
+ },
36
+ "homepage": "https://github.com/shilongfeicool/dev-flow#readme"
30
37
  }