@interf/compiler 0.4.0 → 0.4.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.
Files changed (2) hide show
  1. package/README.md +6 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,22 +4,19 @@ Prepare local datasets for accurate agent use.
4
4
 
5
5
  Interf Compiler runs a local data-processing workflow over your dataset to build a compiled workspace: a file-based layer on top of your raw files that gives agents the full picture of the dataset they need to answer questions accurately.
6
6
 
7
- Define truth checks to measure how accurately agents answer from your dataset.
7
+ Define truth checks for your dataset, measure a baseline on the raw files, then compile and retest the workspace on the same checks.
8
8
 
9
- Start with a baseline on your files as-is.
10
-
11
- Then compile the workspace and retest it on the same checks so you can measure whether it actually helps.
12
-
13
- Then run self-improving loops that revise the workflow, rebuild the workspace, and rerun the same truth checks until the workspace passes or reaches the loop limit.
9
+ If it still fails, self-improving loops can revise the workflow, rebuild the workspace, and rerun the same checks until it passes or reaches the loop limit.
14
10
 
15
11
  ## Why Use It
16
12
 
17
13
  Interf Compiler is built around a few simple principles:
18
14
 
19
- - `Local`: the dataset, workflow, workspace, and test runs stay on your machine.
20
- - `File-based`: the compiled workspace is normal folders and files you can inspect, review, and version.
15
+ - `Explicit`: the compiled workspace is a real folder you can inspect, review, and version.
16
+ - `Yours`: the dataset, workflow, workspace, and test runs stay on your machine and in your control.
17
+ - `File over app`: the compiled workspace is normal files and folders, not hidden app state.
21
18
  - `Source-backed`: your raw files stay the source of truth; the compiled workspace is a layer on top, not a replacement database.
22
- - `Interoperable`: the same workspace can be used with different local agents and tools.
19
+ - `Bring your own agent`: the same workspace can be used with different local agents and tools.
23
20
  - `Self-improving`: when truth checks fail, Interf can retry the workflow or revise it, rebuild the workspace, and rerun the same checks.
24
21
 
25
22
  ## Example: Truth Checks
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@interf/compiler",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Interf Compiler is a local runtime for data-processing workflows that turn datasets into compiled workspaces for local agents.",
5
5
  "type": "module",
6
6
  "bin": {