polydeukes 0.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,23 @@
1
+ # polydeukes
2
+
3
+ > A harness framework for developing alongside an AI coding partner.
4
+
5
+ **Pre-alpha — design stage.** This package currently reserves the name on npm and exposes only version metadata. The core, guard, ledger, kb, and verify modules are in design.
6
+
7
+ Polydeukes externalizes the discipline a developer applies to themselves — test-first, verify-before-commit, record decisions, don't repeat mistakes — into deterministic machinery shared with an AI partner, rather than prompt-level requests. The framing is partnership, not control.
8
+
9
+ See the [project repository](https://github.com/huskyhoochu/polydeukes) for the architecture blueprint and design rationale.
10
+
11
+ ## Planned packages
12
+
13
+ | Package | Role |
14
+ |---------|------|
15
+ | `@polydeukes/core` | Guard protocol, config loader, transcript interface |
16
+ | `@polydeukes/guard` | Deterministic PreToolUse hooks + self-mod meta-guard |
17
+ | `@polydeukes/ledger` | Work tracking; completion authority moves from "I'm done" to "the actions passed" |
18
+ | `@polydeukes/kb` | Local SQLite + FTS5 knowledge store |
19
+ | `@polydeukes/verify` | Multi-agent adversarial verification |
20
+
21
+ ## License
22
+
23
+ MIT
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Polydeukes — a harness framework for developing alongside an AI coding partner.
3
+ *
4
+ * Pre-alpha. This package currently reserves the name and exposes only version
5
+ * metadata; the core, guard, ledger, kb, and verify modules are in design.
6
+ * See https://github.com/huskyhoochu/polydeukes
7
+ */
8
+ export declare const version = "0.0.1";
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Polydeukes — a harness framework for developing alongside an AI coding partner.
3
+ *
4
+ * Pre-alpha. This package currently reserves the name and exposes only version
5
+ * metadata; the core, guard, ledger, kb, and verify modules are in design.
6
+ * See https://github.com/huskyhoochu/polydeukes
7
+ */
8
+ export const version = '0.0.1';
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "polydeukes",
3
+ "version": "0.0.1",
4
+ "description": "A harness framework for developing alongside an AI coding partner — deterministic guards, verifiable work ledger, local knowledge graph, and adversarial verification. Pre-alpha; design stage.",
5
+ "keywords": [
6
+ "harness",
7
+ "ai",
8
+ "agent",
9
+ "dev-tool",
10
+ "guard",
11
+ "ledger",
12
+ "verification"
13
+ ],
14
+ "license": "MIT",
15
+ "homepage": "https://github.com/huskyhoochu/polydeukes#readme",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/huskyhoochu/polydeukes.git",
19
+ "directory": "packages/polydeukes"
20
+ },
21
+ "bugs": {
22
+ "url": "https://github.com/huskyhoochu/polydeukes/issues"
23
+ },
24
+ "type": "module",
25
+ "main": "./dist/index.js",
26
+ "module": "./dist/index.js",
27
+ "types": "./dist/index.d.ts",
28
+ "exports": {
29
+ ".": {
30
+ "types": "./dist/index.d.ts",
31
+ "import": "./dist/index.js"
32
+ }
33
+ },
34
+ "files": [
35
+ "dist",
36
+ "README.md"
37
+ ],
38
+ "scripts": {
39
+ "build": "tsc -p tsconfig.json",
40
+ "typecheck": "tsc --noEmit",
41
+ "prepublishOnly": "pnpm run build"
42
+ },
43
+ "engines": {
44
+ "node": ">=24"
45
+ },
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
49
+ "devDependencies": {
50
+ "typescript": "^5.7.0"
51
+ }
52
+ }