dsh-themis 1.0.0 → 1.0.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 ADDED
@@ -0,0 +1,11 @@
1
+ # dsh-themis
2
+
3
+ Themis — tech-lead lifecycle governance for DeepSeek Harness: **21 read-only tools**
4
+ (task tiering, state/plan/evidence validation, gate precheck/aggregation/reopen,
5
+ release/install audits, context & progress analysis, critical path,
6
+ resume reconciliation, mutation preview that always denies execution).
7
+
8
+ `dsh plugin --profile headless add dsh-themis`
9
+
10
+ No filesystem writes, no subprocesses, no network access — every tool computes
11
+ over caller-supplied JSON only. Upstream docs: https://github.com/240xu/tech-lead-skill
package/cordis.patch.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  # tech-lead bundle: one insert row over the profile root. The plugin is
2
2
  # strictly read-only (no fs writes, no subprocesses, no network); see
3
- # packages/dsh-tech-lead-plugin/src/tools.js for the full surface.
3
+ # dsh-themis/src/tools.js (assembled artifact) for the full surface.
4
4
  - insert:
5
5
  - id: tech-lead-tools
6
6
  name: 'dsh-themis'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-themis",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Themis — tech-lead lifecycle governance for DeepSeek Harness: 21 read-only tools (classify/state/plan/evidence/gates/release/install audits, context/evidence/progress analysis, mutation preview). No writes, no subprocesses, no network.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -10,7 +10,8 @@
10
10
  },
11
11
  "files": [
12
12
  "src/",
13
- "cordis.patch.yml"
13
+ "cordis.patch.yml",
14
+ "README.md"
14
15
  ],
15
16
  "keywords": [
16
17
  "dsh",
@@ -27,7 +28,7 @@
27
28
  "repository": {
28
29
  "type": "git",
29
30
  "url": "git+https://github.com/240xu/tech-lead-skill.git",
30
- "directory": "packages/dsh-tech-lead"
31
+ "directory": "packages/dsh-themis"
31
32
  },
32
33
  "dsh": {
33
34
  "bundle": {
package/src/tools.js CHANGED
@@ -17,7 +17,7 @@ import { renderEnvelope } from './protocol.js';
17
17
  * No tool touches the filesystem, spawns processes, or performs network I/O.
18
18
  *
19
19
  * @param {Function} defineTool harness tool factory
20
- * @param {Record<string, Function>} core pure validators from @240xu/dsh-tech-lead-core
20
+ * @param {Record<string, Function>} core pure validators (inlined under src/core in the published artifact)
21
21
  */
22
22
  export function registerTools(defineTool, core) {
23
23
  const json = (str) => {