Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions examples/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ packages:
- "asil/packages/*" # add this line
```

`pnpm install` will link them in. Or, once published, install from npm:
`pnpm install` will link them in. Or, once published, install the library packages from npm:

```bash
pnpm add asil-cost-controller asil-thought-multiplier asil-improvement-loop asil-runners
pnpm add asil-cost-controller asil-thought-multiplier asil-improvement-loop asil-analyzer
```

(`asil-runners` is the reference CLI/app, not a published library — vendor it or copy its wiring. The four libraries above are what you compose into your own runner.)

## 2. Set up environment

Create `.env` in your repo root:
Expand Down
11 changes: 9 additions & 2 deletions packages/asil-analyzer/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"name": "asil-analyzer",
"version": "0.0.1",
"private": true,
"description": "Deterministic reasoning-quality analyzer for ASIL transcripts: captures LLM/Codex calls, splits per-task, scans for five failure modes (sycophancy, first-item bias, belief-action gap, drift, multi-hop decay). Zero LLM calls in analysis.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "Deterministic reasoning-quality analyzer for ASIL transcripts: captures LLM/Codex calls, splits per-task, scans for five failure modes (sycophancy, first-item bias, belief-action gap, drift, multi-hop decay). Zero LLM calls in analysis.",
"files": ["dist", "README.md"],
"repository": {
"type": "git",
"url": "git+https://github.com/telivity-otaip/asil.git",
"directory": "packages/asil-analyzer"
},
"publishConfig": { "access": "public" },
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "vitest run",
Expand Down
5 changes: 5 additions & 0 deletions packages/asil-cost-controller/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# asil-cost-controller

Token-budget governor for autonomous LLM agents — per-task budgets, checkpoints, kill switch, daily caps. Part of [ASIL](https://github.com/telivity-otaip/asil).

See the [ASIL README](https://github.com/telivity-otaip/asil#readme) for the full architecture.
10 changes: 9 additions & 1 deletion packages/asil-cost-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
{
"name": "asil-cost-controller",
"version": "0.0.1",
"private": true,
"description": "Token-budget governor for autonomous LLM agents: per-task budgets, checkpoints, kill switch, daily caps. Part of ASIL.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md"],
"repository": {
"type": "git",
"url": "git+https://github.com/telivity-otaip/asil.git",
"directory": "packages/asil-cost-controller"
},
"publishConfig": { "access": "public" },
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "vitest run",
Expand Down
5 changes: 5 additions & 0 deletions packages/asil-improvement-loop/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# asil-improvement-loop

The autonomous code-improvement pipeline — scan, isolate, execute, 3-persona self-review, adversarial gate, domain guard, PR. Part of [ASIL](https://github.com/telivity-otaip/asil).

See the [ASIL README](https://github.com/telivity-otaip/asil#readme) for the full architecture.
10 changes: 9 additions & 1 deletion packages/asil-improvement-loop/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
{
"name": "asil-improvement-loop",
"version": "0.0.1",
"private": true,
"description": "Autonomous code-improvement pipeline: scan, isolate, execute, self-review, adversarial gate, domain guard, PR. Part of ASIL.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md"],
"repository": {
"type": "git",
"url": "git+https://github.com/telivity-otaip/asil.git",
"directory": "packages/asil-improvement-loop"
},
"publishConfig": { "access": "public" },
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "vitest run",
Expand Down
5 changes: 5 additions & 0 deletions packages/asil-thought-multiplier/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# asil-thought-multiplier

Strategic-thinking layer for autonomous agents — router, specialized thinkers, synthesizer, papa agent. Part of [ASIL](https://github.com/telivity-otaip/asil).

See the [ASIL README](https://github.com/telivity-otaip/asil#readme) for the full architecture.
10 changes: 9 additions & 1 deletion packages/asil-thought-multiplier/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
{
"name": "asil-thought-multiplier",
"version": "0.0.1",
"private": true,
"description": "Strategic-thinking layer for autonomous agents: router, specialized thinkers, synthesizer, papa agent. Part of ASIL.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md"],
"repository": {
"type": "git",
"url": "git+https://github.com/telivity-otaip/asil.git",
"directory": "packages/asil-thought-multiplier"
},
"publishConfig": { "access": "public" },
"scripts": {
"build": "tsup src/index.ts --format esm --dts",
"test": "vitest run",
Expand Down
Loading