AUTONOMOUS SELF-HEALINGDEPENDENCY HEALING DAEMON

Autonomous dependency healing for your codebase.

Telex watches your dependencies. When a package ships a breaking change, Telex finds every call-site in your codebase, generates a CI-verified patch, and opens a pull request — before your users notice.

CI-VERIFIED PATCHESTREE-SITTER AST ANALYSISGEMINI AST REPAIRNATIVE CI GATES
TELEX BOT // 3D WEBGLTRACKING: CURSOR60 FPS
ENGINE AAUTONOMOUS DEPENDENCY HEALING
TREE-SITTER ASTPRECISE CALL-SITE SCANNER
VERIFICATION GATEEPHEMERAL GITHUB ACTIONS CI
NPM & PYPIREGISTRY MONITORING
GEMINI SYNTHESISAI AST CODE REPAIR
SAFETY POLICYDELIBERATE STOP RETRY GUARDS
HMAC VALIDATIONCRYPTOGRAPHIC SHA-256 SECRETS
PR SUBSTRATEZERO AUTO-MERGE // HUMAN REVIEWED
ENGINE AAUTONOMOUS DEPENDENCY HEALING
TREE-SITTER ASTPRECISE CALL-SITE SCANNER
VERIFICATION GATEEPHEMERAL GITHUB ACTIONS CI
NPM & PYPIREGISTRY MONITORING
GEMINI SYNTHESISAI AST CODE REPAIR
SAFETY POLICYDELIBERATE STOP RETRY GUARDS
HMAC VALIDATIONCRYPTOGRAPHIC SHA-256 SECRETS
PR SUBSTRATEZERO AUTO-MERGE // HUMAN REVIEWED
[ TELEX PIPELINE // 01-03 ]

Three steps. Zero broken builds.

From upstream SDK break to CI-verified pull request — fully automated, human-reviewed.

[01 // DETECT]

Registry Monitoring & Breaking Change Detection

Telex polls npm and PyPI for new package versions. When a new version ships, it extracts the changelog and uses Gemini to identify renamed, removed, or signature-changed symbols.

// Detected Change Schema
{
"source": "npm_registry",
"symbol_old": "createClient",
"change_type": "signature_change",
"confidence": 0.97
}
[02 // SCAN & PATCH]

AST-Precise Call-Site Scanning & Gemini Patch Synthesis

Tree-sitter parses every TypeScript and Python file in the repo. Only files that actually call the changed symbol are targeted. Gemini synthesizes a minimal unified diff.

// Unified Diff Synthesis
-const client = createClient(config);
+const client = createClient({
+ ...config,
+ timeout: config.timeout ?? 5000
+});
[03 // VERIFY & PR]

Ephemeral CI Gate & Human-Reviewed Pull Request

The patch runs through an isolated GitHub Actions gate (real install, tsc, and test suite) before a pull request is opened. Nothing merges automatically — a human always reviews.

# Ephemeral Native CI Gate
steps:
- run: npm ci
- run: npx tsc --noEmit
- run: npm test
# Gate: repo CI proved green
[ 03 // TELEX DEPENDENCY HEALING ]

Zero lost revenue. Zero broken builds.

Deploy autonomous dependency healing agents to detect breaking changes, generate CI-verified patches, and ship human-reviewed pull requests before your users notice anything broke.

TREE-SITTER AST ANALYSISCI-VERIFIED PATCHESAUTONOMOUS DEPENDENCY HEALINGNATIVE CI GATES