@yesod/core 0.0.1 → 0.0.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.
Files changed (2) hide show
  1. package/README.md +28 -0
  2. package/package.json +5 -3
package/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # @yesod/core
2
+
3
+ Core engine for Yesod — orchestration toolkit that makes AI agents delegate better and lets humans see why.
4
+
5
+ Provides the event bus, subscription engine (Vantage), TaskSpec/ResultSpec for structured delegation, RuntimeDecision tracking, and all shared interfaces.
6
+
7
+ ## Key Exports
8
+
9
+ - **EventBus** — publish/subscribe for orchestration events
10
+ - **SubscriptionEngine (Vantage)** — compound condition evaluation with notifications
11
+ - **TaskSpec / ResultSpec** — structured task delegation with typed result formats
12
+ - **RuntimeDecision** — required metadata recording why the agent chose a runtime
13
+ - **StepResult / StructuredOutput** — typed results (diff, review, test, summary) flowing back to orchestrators
14
+ - All type definitions and interfaces for adapters
15
+
16
+ ## Status
17
+
18
+ Pre-alpha. Interfaces are defined; implementation is in progress.
19
+
20
+ ## Links
21
+
22
+ - [GitHub](https://github.com/eryv-ai/yesod)
23
+ - [Architecture](https://github.com/eryv-ai/yesod/blob/main/docs/concept/03-architecture.md)
24
+ - [Core Interfaces](https://github.com/eryv-ai/yesod/blob/main/docs/concept/05-interfaces.md)
25
+
26
+ ## License
27
+
28
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yesod/core",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/eryv-ai/yesod.git",
@@ -16,14 +16,16 @@
16
16
  "main": "./dist/index.cjs",
17
17
  "module": "./dist/index.js",
18
18
  "types": "./dist/index.d.ts",
19
- "files": ["dist"],
19
+ "files": [
20
+ "dist"
21
+ ],
20
22
  "publishConfig": {
21
23
  "access": "public"
22
24
  },
23
25
  "scripts": {
24
26
  "build": "tsup",
25
27
  "dev": "tsup --watch",
26
- "test": "vitest run",
28
+ "test": "vitest run --passWithNoTests",
27
29
  "clean": "rm -rf dist"
28
30
  },
29
31
  "devDependencies": {