@interf/compiler 0.2.0 → 0.2.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 CHANGED
@@ -1,168 +1,118 @@
1
1
  # Interf
2
2
 
3
- The open-source eval-first knowledge compiler.
3
+ Interf Knowledge Compiler uses local agents such as Claude Code and Codex to run a data-processing workflow over your files.
4
4
 
5
- Interf compiles a workspace beside your files for agents: a knowledge representation they can navigate, cross-check against raw source, and prove on your evals.
5
+ It creates a workspace with notes and navigation so the agent can see what is in the folder and what to retrieve.
6
6
 
7
- Your files stay the truth. Interf adds a compiled workspace and benchmark proof.
7
+ Then you test that workspace on your evals.
8
8
 
9
- - point it at a folder you already have
10
- - define or confirm what must be true for the task in `interf.config.json`
11
- - compile a shared knowledge base plus task-specific interfaces
12
- - benchmark raw files vs compiled workspaces and keep the best result
9
+ - your files stay on your machine
10
+ - you choose the local agent
11
+ - you decide what must be true
13
12
 
14
- Most "AI knowledge base" tools optimize for a demo. Interf optimizes for proof. It keeps the raw files on disk, compiles a visible workspace your agent can use, and makes workflows compete on your evals instead of on marketing claims.
13
+ Agents start missing things when a task spans PDFs, charts, and several files in one folder. That usually shows up when the job depends on:
15
14
 
16
- Interf is not a chat shell, a hosted notes app, or a generic agent OS. It is the compile + benchmark loop for turning real folders into better agent workspaces and proving they help on a real task.
15
+ - reading reports and filings
16
+ - extracting a number from a chart
17
+ - understanding what is inside a folder before doing work
18
+ - pulling context together across several files
19
+ - checking the raw source when the answer has to be exact
17
20
 
18
- ## What Happens
21
+ The workspace exists so the agent does not have to rediscover the folder from scratch on every run.
19
22
 
20
- ```text
21
- raw folder
22
- -> compiled workspace beside the raw files
23
- -> benchmark proof on your evals
24
- ```
25
-
26
- The compiled workspace is for agents. It gives them:
27
-
28
- - a clearer map of the data
29
- - task-specific outputs when broad summarization is not enough
30
- - better evidence paths back to the raw source
31
- - proof of whether the compiled workspace actually helped
32
-
33
- Interf does not replace your agent. It gives your agent a better workspace to use.
34
-
35
- ## Trust Boundary
36
-
37
- Interf keeps one trust boundary:
38
-
39
- - raw files in the source folder are the content truth
40
- - `interf.config.json` is the user-approved task truth
41
- - the compiled workspace is the generated working surface
42
- - the benchmark result is the proof of whether that generated surface is good enough
43
-
44
- That means:
23
+ The point is proof on your data, not generic AI claims.
45
24
 
46
- - agents may draft evals
47
- - users approve accepted task truth
48
- - raw files remain the final source of evidence
49
- - compiled workspaces earn trust only if they pass the benchmark
25
+ The simplest way to use Interf is to compare the same task before and after compilation:
50
26
 
51
- ## Who It’s For
27
+ - run the task on the raw folder
28
+ - compile the folder with Interf
29
+ - run the same task again from the workspace
30
+ - if you want a recorded pass/fail result, add evals and run `interf benchmark`
52
31
 
53
- Interf is for people already trying to get real work done with agents on real folders:
54
-
55
- - Claude Code and Codex users
56
- - OpenClaw and Hermes-style local-agent users
57
- - technical founders, researchers, and operators with messy source folders
58
- - teams who want to test whether compiled workspaces beat raw files on their own tasks
59
-
60
- If you want a generic chat UI, this is not that product.
61
-
62
- ## Mental Model
63
-
64
- - **Source folder**: your real files stay where they are
65
- - **Compiled workspace**: the generated workspace beside those files for agents
66
- - **Knowledge base**: the shared compiled workspace over the folder
67
- - **Interface**: the task-specific compiled workspace for one job
68
- - **Workflow**: the reusable compile method
69
- - **Eval**: what must be true for the task
70
- - **Benchmark**: the proof loop that compares raw and compiled results
71
-
72
- One source folder can host multiple knowledge bases under `interf/` if you want to compare workflows on the same data.
73
-
74
- ## Install
32
+ ## Quick Start
75
33
 
76
34
  Requirements:
77
35
 
78
36
  - Node.js 20+
79
- - one local coding agent executor: Claude Code or Codex
37
+ - a local coding agent: Claude Code or Codex
80
38
 
81
- Install the published package:
39
+ Install and check setup:
82
40
 
83
41
  ```bash
84
42
  npm install -g @interf/compiler
85
- ```
86
-
87
- Sanity check the local setup:
88
-
89
- ```bash
90
43
  interf doctor
91
44
  ```
92
45
 
93
- If you already use Claude Code or Codex locally, that is the intended path. Interf uses your local agent as the executor for compile and benchmark runs.
94
-
95
- ## Quick Start
96
-
97
- Initialize Interf in any folder:
46
+ Then run Interf in any folder:
98
47
 
99
48
  ```bash
100
49
  cd ~/my-folder
101
50
  interf init
51
+ interf compile
52
+ interf benchmark
102
53
  ```
103
54
 
104
- That flow can:
55
+ That is the whole first loop:
105
56
 
106
- 1. choose an executor like Claude Code or Codex
107
- 2. optionally install helper skills
108
- 3. attach the current folder as a knowledge base
109
- 4. optionally compile the knowledge base immediately
57
+ - point Interf at a folder you already have
58
+ - compile the workspace
59
+ - ask the agent to use it
60
+ - add evals later when you want to check the result more formally
110
61
 
111
- Then:
62
+ `interf init` chooses your local agent and can attach the current folder right away. It does not move or replace your files.
112
63
 
113
- ```bash
114
- interf create interface
115
- interf compile
116
- interf benchmark
117
- ```
118
-
119
- Fastest way to see the full loop:
64
+ Fastest sample loop:
120
65
 
121
66
  ```bash
122
- cp -r examples/benchmark-demo /tmp/benchmark-demo
123
- cd /tmp/benchmark-demo
67
+ cp -r examples/benchmark-demo /tmp/interf-demo
68
+ cd /tmp/interf-demo
124
69
  interf init
125
70
  interf compile
126
71
  interf benchmark
127
72
  ```
128
73
 
129
- What success looks like on disk:
130
-
131
- - `interf/<kb>/` = shared compiled workspace over the folder
132
- - `interf/<kb>/interfaces/<name>/` = task-specific compiled workspace
133
- - `interf/benchmarks/runs/...` = saved benchmark evidence for that folder
134
-
135
- ## 5-Minute Example
136
-
137
- Try the full loop on the shipped sample folder:
74
+ If you want a task-specific workspace for one job, add an interface:
138
75
 
139
76
  ```bash
140
- cp -r examples/benchmark-demo /tmp/interf-demo
141
- cd /tmp/interf-demo
142
- interf init
77
+ interf create interface
143
78
  interf compile
144
79
  interf benchmark
145
80
  ```
146
81
 
147
- This sample already includes an `interf.config.json`, so you can see the compile and benchmark loop without writing your own evals first.
82
+ ## Start With One Small Eval
148
83
 
149
- ## Simple Eval Example
84
+ `interf.config.json` is where you write what must be true.
150
85
 
151
- The default public eval file is `interf.config.json` at the source-folder root.
86
+ Use it for:
152
87
 
153
- Minimal example:
88
+ - broad checks on the folder as a whole
89
+ - task-specific checks for one interface
90
+
91
+ Example shape:
154
92
 
155
93
  ```json
156
94
  {
95
+ "knowledge_base": {
96
+ "name": "uk-office-market-report",
97
+ "evals": [
98
+ {
99
+ "question": "What was Bristol annual take-up in 2018, in millions of square feet?",
100
+ "answer": "About 0.5 million square feet. Accept answers between 0.3 and 0.6 if they clearly refer to Bristol annual take-up in 2018."
101
+ }
102
+ ]
103
+ },
157
104
  "interfaces": [
158
105
  {
159
- "name": "weekly-briefing",
160
- "about": "Summarize what changed, why it matters, and what to do next.",
106
+ "name": "market-briefing",
107
+ "about": "Prepare a short briefing from the office market report.",
161
108
  "evals": [
162
109
  {
163
- "question": "From the compiled interface only, what changed and what should the operator do next?",
164
- "answer": "A good answer says what changed, why it matters, and the next action.",
165
- "strictness": "approximate"
110
+ "question": "What was Bristol availability in 2018, in millions of square feet?",
111
+ "answer": "About 0.6 million square feet. Accept answers between 0.5 and 0.7 if they clearly refer to Bristol availability in 2018."
112
+ },
113
+ {
114
+ "question": "Did Bristol annual take-up rise or fall between 2016 and 2018?",
115
+ "answer": "It fell. The chart shows roughly 0.7 to 0.8 million square feet in 2016 and about 0.5 million square feet in 2018."
166
116
  }
167
117
  ]
168
118
  }
@@ -170,221 +120,158 @@ Minimal example:
170
120
  }
171
121
  ```
172
122
 
173
- That is enough to start. You do not need a large benchmark harness to use Interf:
123
+ Good first evals are small and practical:
174
124
 
175
- 1. write one or two questions that matter
176
- 2. say what a good answer must preserve
177
- 3. compile the workspace
178
- 4. run `interf benchmark`
125
+ - one exact number from a chart, table, or filing
126
+ - one short statement that should be true or false
127
+ - one simple comparison across years, files, or sections
179
128
 
180
- If the compiled workspace does not beat raw files on those evals, do not trust it yet.
181
-
182
- ## Use It With Your Agent
129
+ Then run:
183
130
 
184
- For many users, the agent is the operator.
185
-
186
- A practical agent-native loop looks like this:
131
+ ```bash
132
+ interf compile
133
+ interf benchmark
134
+ ```
187
135
 
188
- 1. the agent gets a real task against a real folder
189
- 2. it inspects raw files or prior benchmark evidence
190
- 3. it drafts or updates evals in `interf.config.json`
191
- 4. it asks the user to confirm the task truth when needed
192
- 5. it runs compile + benchmark
193
- 6. it only promotes the compiled workspace for real use once the benchmark says it helped
136
+ If the benchmark does not show an improvement over raw files, keep iterating or move to the experiment loop described below.
194
137
 
195
- Paste something like this into Claude Code, Codex, OpenClaw, or Hermes:
138
+ ## Compare Three Things
196
139
 
197
- ```text
198
- Install @interf/compiler, run `interf init` in this folder, choose the local agent executor, and compile the workspace.
140
+ Compare:
199
141
 
200
- If `interf.config.json` is missing or incomplete, draft evals for what must be true for this task and ask me to confirm them before benchmarking.
142
+ 1. the raw folder
143
+ 2. the workspace
144
+ 3. an interface for one specific job
201
145
 
202
- Then run `interf benchmark` and tell me whether raw files or the compiled workspace performed better.
203
- ```
146
+ `interf benchmark` is how you compare those on the same evals.
204
147
 
205
- ## What The Agent Sees
148
+ That gives you one clear question:
206
149
 
207
- The compiled folder is the agent-facing product surface.
150
+ - is the raw folder enough?
151
+ - does the workspace retrieve better?
152
+ - does a dedicated interface do better than both?
208
153
 
209
- Important files in a knowledge base or interface:
154
+ ## What `interf compile` Actually Does
210
155
 
211
- - `interf.json` = what this workspace is
212
- - `AGENTS.md` = canonical bootstrap and navigation
213
- - `CLAUDE.md` = generated compatibility mirror of `AGENTS.md`
214
- - `workflow/` = the editable local method package
215
- - `home.md` = entry document
216
- - `summaries/`, `knowledge/`, and `briefs/` = compiled outputs
156
+ `interf compile` runs a workflow over your folder.
217
157
 
218
- Interf supports two agent modes:
158
+ That workflow is the compilation pipeline:
219
159
 
220
- - **executor mode**: the CLI launches a local agent to satisfy one stage contract during create, compile, or benchmark flows
221
- - **use mode**: a human opens the compiled knowledge base or interface and asks an agent to navigate the finished workspace
160
+ - read the files
161
+ - write processed notes and navigation files
162
+ - build the workspace your agent can use
163
+ - optionally build an interface for one specific job
222
164
 
223
- Manual use looks like this:
165
+ The default workflow is built in. If you want a different method, you can define your own workflow package and benchmark it on the same folder.
224
166
 
225
- 1. open the knowledge base or interface folder
226
- 2. read `AGENTS.md`
227
- 3. follow `workflow/use/query/SKILL.md`
228
- 4. for interfaces, use local interface artifacts first, then the parent knowledge-base loop, then raw files if needed
167
+ ## Experiment Loop
229
168
 
230
- Interf does not require globally installed slash skills for workspace behavior. Local `workflow/.../SKILL.md` files are workspace instruction docs routed by `AGENTS.md` and stage contracts.
169
+ Interf Knowledge Compiler also supports an experiment loop above compile + benchmark.
231
170
 
232
- ## Benchmark Proof
171
+ It runs controlled experiments against the same folder and the same evals. Each attempt reruns the compilation workflow, reruns the benchmark, and records what changed. It stops when:
233
172
 
234
- Interf is benchmark-first.
173
+ - the evals pass
174
+ - or the experiment budget is exhausted
235
175
 
236
- The default eval file lives at the source-folder root:
176
+ In practice, that means:
237
177
 
238
- ```text
239
- source-folder/
240
- interf.config.json
241
- ```
178
+ - `retry_policy.max_attempts_per_profile` controls how many experiment attempts each compile profile gets
179
+ - stronger diagnostic profiles can be used only after the default ones fail
180
+ - the loop is still judged on the same eval truth from your folder
181
+ - failure summaries can be captured between attempts for diagnosis
242
182
 
243
- Saved benchmark runs live under:
183
+ Today that advanced path is configured through eval packs and explained in the deeper docs. The workflow is the part you change. The experiment loop is the controller that runs those experiments against the same evals with a fixed attempt budget.
244
184
 
245
- ```text
246
- source-folder/
247
- interf/
248
- benchmarks/
249
- runs/
250
- ```
185
+ Use the simple loop first. Use the experiment loop when you want to test workflow or profile changes against the same evals until one passes or the attempt budget runs out.
251
186
 
252
- Use benchmarks to answer questions like:
187
+ ## Use It With Your Agent
253
188
 
254
- - does the compiled workspace beat raw files on this task?
255
- - which workflow wins on this folder?
256
- - which interface is best for this job?
257
- - which model performs best on the same compiled target?
189
+ If you already work through Claude Code, Codex, OpenClaw, or Hermes, the agent can run this loop for you.
258
190
 
259
- `interf benchmark` uses your evals, opens the compiled target like a real user session, asks the questions, and grades the answers. The point is not a hidden score. The point is a benchmark artifact you can inspect, diff, and rerun locally.
191
+ Paste something like this into Claude Code, Codex, OpenClaw, or Hermes:
260
192
 
261
- ## Power Mode
193
+ ```text
194
+ Install @interf/compiler, run `interf init` in this folder, and use the local agent executor.
262
195
 
263
- Most users do not need to think about improvement loops.
196
+ If `interf.config.json` is missing, draft evals for what must be true for this task and ask me to confirm them.
264
197
 
265
- The basic story is:
198
+ Then run `interf compile` and `interf benchmark`.
266
199
 
267
- 1. compile
268
- 2. benchmark
269
- 3. trust the result only if it passes
200
+ Tell me whether the processed workspace beat raw files, and only recommend it if it did.
201
+ ```
270
202
 
271
- Power users and agent-native setups can go further:
203
+ That is the basic loop:
272
204
 
273
- - compare workflows on the same folder
274
- - compare models on the same compiled target
275
- - draft custom local workflows
276
- - rerun compile + benchmark until a task-specific interface passes
205
+ - the user or agent defines what must be true
206
+ - Interf prepares processed data for retrieval
207
+ - the benchmark shows whether that helped
277
208
 
278
- That improvement loop is a real capability, but it is not the main thing users need to understand first.
209
+ ## What Gets Created
279
210
 
280
- ## Layout On Disk
211
+ After compile, Interf writes into `./interf/` beside your source files.
281
212
 
282
- ```text
283
- source-folder/
284
- ...your files...
285
- interf.config.json
286
- interf/
287
- workflows/
288
- benchmarks/
289
- {knowledge-base-name}/
290
- interf.json
291
- AGENTS.md
292
- CLAUDE.md
293
- home.md
294
- workflow/
295
- summaries/
296
- knowledge/
297
- interfaces/
298
- {interface-name}/
299
- interf.json
300
- compile-plan.md
301
- AGENTS.md
302
- CLAUDE.md
303
- home.md
304
- workflow/
305
- knowledge/
306
- briefs/
307
- summaries/
308
- ```
213
+ - `interf/<name>/` is the shared workspace over the folder
214
+ - `interf/<name>/interfaces/<name>/` is a task-specific workspace for one job
215
+ - `interf/benchmarks/runs/...` stores saved benchmark runs
309
216
 
310
- ## Core Commands
217
+ Inside those workspaces you will see things like:
311
218
 
312
- - `interf init` = global setup first; if run inside a normal folder, it can also attach and compile a knowledge base there
313
- - `interf create interface` = create an interface for the current folder's knowledge base
314
- - `interf compile` = compile the current knowledge base or interface
315
- - `interf benchmark` = compare compiled knowledge bases or interfaces with evals from `interf.config.json` or an explicit spec file
219
+ - summaries of source files
220
+ - navigation notes and entrypoints for agents
221
+ - task-specific outputs for one interface
222
+ - benchmark artifacts you can inspect later
316
223
 
317
- Advanced commands still exist for workflow authoring and diagnostics:
224
+ In the CLI, the main Interf workspace is called a **knowledge base**. A task-specific workspace inside it is called an **interface**.
318
225
 
319
- - `interf create workflow`
320
- - `interf doctor`
321
- - `interf status`
322
- - `interf verify <check>`
323
- - `interf reset <scope>`
226
+ ## When To Create An Interface
324
227
 
325
- Useful run flags:
228
+ Start with one workspace.
326
229
 
327
- - `--model <name>` = pin the agent model for this run
328
- - `--profile <name>` = pass an agent-specific profile when supported
329
- - `--effort <level>` = override model reasoning effort
330
- - `--timeout-ms <ms>` = interrupt the local executor after this much inactivity
230
+ Create an interface when your agent needs outputs shaped for one specific job, for example:
331
231
 
332
- ## Workflows
232
+ - weekly briefing
233
+ - diligence on a deal room
234
+ - extracting chart values from research PDFs
235
+ - a focused research assistant for one question set
333
236
 
334
- A workflow is a package, not just a prompt.
237
+ If that workspace is enough for the job, you do not need an interface yet.
335
238
 
336
- It has two layers:
239
+ ## Custom Workflows
337
240
 
338
- - machine layer: `workflow.json`
339
- - human/agent layer: `workflow/` docs
241
+ Interf ships with a default workflow.
340
242
 
341
- Typical reusable workflow package:
243
+ If you want to change how compilation happens on your data, this is the part you customize:
342
244
 
343
- ```text
344
- interf/workflows/knowledge-base/<workflow-id>/
345
- workflow.json
346
- README.md
347
- create/
348
- SKILL.md
349
- compile/
350
- stages/
351
- <stage-id>/
352
- SKILL.md
353
- use/
354
- query/
355
- SKILL.md
245
+ ```bash
246
+ interf create workflow
247
+ interf verify workflow --path <path>
356
248
  ```
357
249
 
358
- Interf keeps the public command surface stable while letting workflows vary the internal stage pipeline. The engine still owns contract kinds, required artifacts, and state flow.
250
+ Then benchmark that workflow on the same folder and the same evals.
359
251
 
360
- Current shipped policy:
252
+ Workflow package docs live in [docs/workflow-spec.md](./docs/workflow-spec.md).
361
253
 
362
- - built-in knowledge-base workflows: `interf`, `karpathy`
363
- - built-in interface workflow: `interf`
364
- - if you need a custom interface method, create a local workflow package and benchmark it before treating it as better than the default
365
-
366
- ## Builder Docs
367
-
368
- If you want to create your own workflows, start here:
369
-
370
- 1. [`docs/workflow-spec.md`](./docs/workflow-spec.md)
371
- 2. [`docs/runtime-contract.md`](./docs/runtime-contract.md)
372
- 3. [`docs/architecture.md`](./docs/architecture.md)
373
- 4. [`docs/eval-loop.md`](./docs/eval-loop.md)
254
+ ## Core Commands
374
255
 
375
- Contributor and release-testing commands live in [`CONTRIBUTING.md`](./CONTRIBUTING.md).
256
+ - `interf init` = choose your local executor and optionally attach the current folder
257
+ - `interf create knowledge-base` = create the shared processed workspace for this folder
258
+ - `interf create interface` = create a task-specific workspace on top
259
+ - `interf create workflow` = create a reusable local workflow package
260
+ - `interf compile` = build the current workspace
261
+ - `interf benchmark` = compare raw files vs processed workspaces on your evals
262
+ - `interf doctor` = check local executor setup
263
+ - `interf verify <check>` = run deterministic checks on major workflow steps
264
+ - `interf reset <scope>` = remove generated state while keeping source files
376
265
 
377
- ## Design Choices
266
+ ## More Docs
378
267
 
379
- - filesystem-first, not service-first
380
- - raw files remain the truth
381
- - compiled workspaces remain visible on disk
382
- - workflow packages over hidden orchestration
383
- - contract-checked stages instead of prompt-only trust
384
- - benchmarkability as a core product feature
268
+ - [docs/workflow-spec.md](./docs/workflow-spec.md) for custom workflow packages
269
+ - [docs/runtime-contract.md](./docs/runtime-contract.md) for the exact on-disk contract
270
+ - [docs/architecture.md](./docs/architecture.md) for the deeper system model
271
+ - [docs/eval-loop.md](./docs/eval-loop.md) for the advanced benchmark and experiment loop
385
272
 
386
- Interf is not trying to win by hiding complexity. It is trying to make the method visible, enforceable, and comparable.
273
+ Maintainers should use [CONTRIBUTING.md](./CONTRIBUTING.md) for test and release gates.
387
274
 
388
275
  ## License
389
276
 
390
- Code is licensed under Apache 2.0. The `Interf` name and branding are reserved; see [`TRADEMARKS.md`](./TRADEMARKS.md).
277
+ Code is licensed under Apache 2.0. The `Interf` name and branding are reserved; see [TRADEMARKS.md](./TRADEMARKS.md).
@@ -137,8 +137,8 @@ export async function createKnowledgeBaseWizard(options = {}) {
137
137
  if (options.intro !== false) {
138
138
  p.intro(chalk.bold("Create a knowledge base"));
139
139
  }
140
- p.log.info("Interf compiles this folder into an LLM knowledge base for agents.");
141
- p.log.info("Your files stay on disk. Interf stores the compiled knowledge base under `./interf/<name>/` together with summaries, knowledge, agent instructions, and a local workflow package.");
140
+ p.log.info("Interf prepares a shared workspace beside this folder for your agent.");
141
+ p.log.info("In Interf, that shared workspace is called a knowledge base. Your raw files stay where they are; the knowledge base lives under `./interf/<name>/`.");
142
142
  const cwd = process.cwd();
143
143
  const currentConfig = readInterfConfig(cwd);
144
144
  if (currentConfig) {
@@ -169,7 +169,7 @@ export async function createKnowledgeBaseWizard(options = {}) {
169
169
  const selectedWorkflow = workflowChoice;
170
170
  const s = p.spinner();
171
171
  if (!options.skipSkillInstall) {
172
- p.log.info("Interf uses bundled stage instructions and local workflow docs by default. Run `interf init` when you want to choose an executor or install optional global helper skills.");
172
+ p.log.info("Interf uses bundled stage instructions and local workflow docs by default. Run `interf init` to choose a default executor for compile and benchmark runs.");
173
173
  }
174
174
  // Create
175
175
  s.start("Creating knowledge base...");
@@ -264,8 +264,8 @@ export async function createInterfaceWizard(options = {}) {
264
264
  if (options.intro !== false) {
265
265
  p.intro(chalk.bold("Create an interface"));
266
266
  }
267
- p.log.info("An interface is a focused layer on top of a knowledge base.");
268
- p.log.info("Use it for one job, perspective, or workflow. It keeps local outputs, a local workflow package, and its own agent instructions while reusing knowledge-base evidence.");
267
+ p.log.info("An interface is a task-specific workspace on top of a knowledge base.");
268
+ p.log.info("Use it when one shared workspace is not enough and your agent needs outputs shaped for one job.");
269
269
  // Find the knowledge-base — either cwd has interf/ or we look up registry
270
270
  const cwd = process.cwd();
271
271
  const detected = detectInterf(cwd);
@@ -1 +1 @@
1
- {"version":3,"file":"create.js","sourceRoot":"","sources":["../../src/commands/create.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"create.js","sourceRoot":"","sources":["../../src/commands/create.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAE3C,eAAO,MAAM,WAAW,EAAE,aA0LzB,CAAC"}
1
+ {"version":3,"file":"init.d.ts","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"AAYA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAE3C,eAAO,MAAM,WAAW,EAAE,aA0IzB,CAAC"}
@@ -1,15 +1,14 @@
1
1
  import chalk from "chalk";
2
2
  import { execSync } from "node:child_process";
3
3
  import * as p from "@clack/prompts";
4
- import { detectAgents, inspectInterfSkills, refreshInterfSkills, resolveAgent, supportsAutomatedRuns, } from "../lib/agents.js";
4
+ import { detectAgents, supportsAutomatedRuns, } from "../lib/agents.js";
5
5
  import { createKnowledgeBaseWizard } from "./create.js";
6
- import { SKILLS_DIR } from "../lib/config.js";
7
6
  import { detectInterf } from "../lib/interf.js";
8
7
  import { cleanupLegacyObsidianInterfaceVaultRegistrations } from "../lib/obsidian.js";
9
8
  import { loadUserConfig, saveUserConfig } from "../lib/user-config.js";
10
9
  export const initCommand = {
11
10
  command: "init",
12
- describe: "Set up Interf globally — choose executor and optional global helper skills",
11
+ describe: "Set up Interf — choose a local executor and optionally attach this folder",
13
12
  handler: async () => {
14
13
  p.intro(chalk.bold("Interf — global setup"));
15
14
  const cwd = process.cwd();
@@ -22,29 +21,6 @@ export const initCommand = {
22
21
  });
23
22
  if (p.isCancel(redo) || !redo) {
24
23
  cleanupLegacyObsidianInterfaceVaults(existing.viewer);
25
- const resolved = resolveAgent();
26
- if (resolved.agent && existing.skillsInstalled) {
27
- const skillHealth = inspectInterfSkills(resolved.agent);
28
- const needsRefresh = skillHealth.missing.length > 0 ||
29
- skillHealth.stale.length > 0 ||
30
- skillHealth.wrongAgent.length > 0;
31
- if (needsRefresh) {
32
- const refresh = await p.confirm({
33
- message: "Optional global Interf helper skills are out of date. Refresh them now? (optional)",
34
- initialValue: true,
35
- });
36
- if (p.isCancel(refresh))
37
- return;
38
- if (refresh) {
39
- const s = p.spinner();
40
- const refreshed = installBundledSkills(s, resolved.agent);
41
- if (refreshed) {
42
- saveUserConfig({ ...existing, skillsInstalled: true });
43
- p.log.success("Installed Interf skills refreshed.");
44
- }
45
- }
46
- }
47
- }
48
24
  await maybeAttachCurrentFolder(cwd);
49
25
  return;
50
26
  }
@@ -94,26 +70,7 @@ export const initCommand = {
94
70
  s.stop(`${agent.displayName} CLI not found in PATH`);
95
71
  p.log.warn(`Make sure '${agent.command}' is in your PATH`);
96
72
  }
97
- // Step 4: Optional global helper skills
98
- const installMethod = await p.select({
99
- message: "Install optional global agent skills too? (optional)",
100
- options: [
101
- { value: "skip", label: "Skip — local workspaces and bundled stage instructions are enough (Recommended)" },
102
- { value: "npx", label: "Yes — install optional global helper skills too" },
103
- { value: "manual", label: "I'll copy them manually" },
104
- ],
105
- });
106
- if (p.isCancel(installMethod))
107
- return;
108
- let skillsInstalled = false;
109
- if (installMethod === "npx") {
110
- skillsInstalled = installBundledSkills(s, agent);
111
- }
112
- else if (installMethod === "manual") {
113
- p.log.info(`Copy optional global helper skills to your agent:`);
114
- p.log.info(` cp -R ${SKILLS_DIR}/. ${agent.skillsDir}/`);
115
- }
116
- // Step 5: Optional viewer preference
73
+ // Step 4: Optional viewer preference
117
74
  let viewer = "plain";
118
75
  let obsidianAvailable = false;
119
76
  try {
@@ -144,11 +101,11 @@ export const initCommand = {
144
101
  else {
145
102
  p.log.info("Obsidian CLI not found — keeping vaults app-neutral by default");
146
103
  }
147
- // Step 6: Save config
104
+ // Step 5: Save config
148
105
  saveUserConfig({
149
106
  agent: agent.displayName,
150
107
  agentCommand: agent.command,
151
- skillsInstalled,
108
+ skillsInstalled: false,
152
109
  viewer,
153
110
  initialized: new Date().toISOString(),
154
111
  });
@@ -169,7 +126,6 @@ export const initCommand = {
169
126
  p.outro([
170
127
  `Global setup complete — ${agent.displayName} connected`,
171
128
  `Runtime stage instructions: bundled with this Interf build`,
172
- `Optional global helper skills: ${skillsInstalled ? "installed" : "not installed"}`,
173
129
  `Viewer defaults: ${viewer === "obsidian" ? "Obsidian" : "App-neutral markdown"}`,
174
130
  ``,
175
131
  `Next:`,
@@ -179,18 +135,6 @@ export const initCommand = {
179
135
  ].join("\n"));
180
136
  },
181
137
  };
182
- function installBundledSkills(s, agent) {
183
- s.start("Installing skills...");
184
- const installed = refreshInterfSkills(agent);
185
- if (installed) {
186
- s.stop("Optional helper skills installed");
187
- return true;
188
- }
189
- s.stop("Optional helper skill refresh failed");
190
- p.log.warn("Falling back to manual instructions:");
191
- p.log.info(` cp -R ${SKILLS_DIR}/. ${agent.skillsDir}/`);
192
- return false;
193
- }
194
138
  function cleanupLegacyObsidianInterfaceVaults(viewer) {
195
139
  if (viewer !== "obsidian")
196
140
  return;
@@ -1 +1 @@
1
- {"version":3,"file":"init.js","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"init.js","sourceRoot":"","sources":["../../src/commands/init.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@interf/compiler",
3
- "version": "0.2.0",
4
- "description": "Eval-first knowledge compiler that turns folders into agent-ready knowledge bases and interfaces.",
3
+ "version": "0.2.1",
4
+ "description": "Knowledge compiler that prepares local folders for agent use and lets you test the result on your evals.",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "interf": "dist/bin.js"