taskmeld 0.1.1 → 0.1.2

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2024 TaskMeld
3
+ Copyright (c) 2026 TaskMeld
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
6
6
  associated documentation files (the "Software"), to deal in the Software without restriction, including
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  </p>
8
8
 
9
9
  <p align="center">
10
- <a href="./LICENSE"><img src="https://img.shields.io/npm/l/taskmeld.svg?style=flat-square&color=8b949e&labelColor=161b22" alt="license"/></a>
10
+ <a href="https://www.npmjs.com/package/taskmeld"><img src="https://img.shields.io/npm/v/taskmeld.svg?style=flat-square&color=cb3837&labelColor=161b22&logo=npm&logoColor=white" alt="npm version"/></a>
11
11
  <a href="./package.json"><img src="https://img.shields.io/node/v/taskmeld.svg?style=flat-square&color=5fa04e&labelColor=161b22&logo=nodedotjs&logoColor=white" alt="node"/></a>
12
12
  </p>
13
13
 
@@ -23,9 +23,13 @@
23
23
 
24
24
  <br/>
25
25
 
26
- ## Install
26
+ ## Prerequisites
27
+
28
+ - Node ≥ 18
29
+ - OpenClaw ≥ 5.20
30
+ - Windows (macOS and Linux are not yet tested)
27
31
 
28
- Requires Node ≥ 18. Works on macOS · Linux · Windows.
32
+ ## Install
29
33
 
30
34
  ~~~bash
31
35
  npm install -g taskmeld
package/README.zh-CN.md CHANGED
@@ -7,7 +7,7 @@
7
7
  </p>
8
8
 
9
9
  <p align="center">
10
- <a href="./LICENSE"><img src="https://img.shields.io/npm/l/taskmeld.svg?style=flat-square&color=8b949e&labelColor=161b22" alt="license"/></a>
10
+ <a href="https://www.npmjs.com/package/taskmeld"><img src="https://img.shields.io/npm/v/taskmeld.svg?style=flat-square&color=cb3837&labelColor=161b22&logo=npm&logoColor=white" alt="npm version"/></a>
11
11
  <a href="./package.json"><img src="https://img.shields.io/node/v/taskmeld.svg?style=flat-square&color=5fa04e&labelColor=161b22&logo=nodedotjs&logoColor=white" alt="node"/></a>
12
12
  </p>
13
13
 
@@ -23,9 +23,13 @@
23
23
 
24
24
  <br/>
25
25
 
26
- ## 安装
26
+ ## 环境要求
27
+
28
+ - Node ≥ 18
29
+ - OpenClaw ≥ 5.20
30
+ - Windows(macOS 和 Linux 尚未测试验证)
27
31
 
28
- 需要 Node ≥ 18。支持 macOS · Linux · Windows。
32
+ ## 安装
29
33
 
30
34
  ~~~bash
31
35
  npm install -g taskmeld
@@ -2,4 +2,4 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.APP_VERSION = void 0;
4
4
  // 由 scripts/gen-version.ts 自动生成,请勿手动编辑
5
- exports.APP_VERSION = "0.1.1";
5
+ exports.APP_VERSION = "0.1.2";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "taskmeld",
4
- "version": "0.1.1",
4
+ "version": "0.1.2",
5
5
  "description": "Agent pipeline orchestration platform — CLI, HTTP/WS backend, React console",
6
6
  "main": "dist/src/index.js",
7
7
  "bin": {
@@ -22,6 +22,7 @@
22
22
  "build": "tsx scripts/gen-version.ts && tsc -p tsconfig.json",
23
23
  "typecheck": "tsc --noEmit",
24
24
  "lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
25
+ "verify": "npm run typecheck && npm run lint && npm test",
25
26
  "test:watch": "npm run test",
26
27
  "start": "node dist/src/index.js",
27
28
  "cli": "node dist/src/cli/index.js",