Skip to main content
Home
This release is 4 versions behind 0.6.1 — the latest version of @corespeed/zypher. Jump to latest

Built and signed on GitHub Actions

An open-source agent framework for building production-ready agentic AI agents

This package works with DenoIt is unknown whether this package works with Cloudflare Workers, Node.js, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
This package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score
88%
Published
a month ago (0.4.4)
/** * Interface for error detectors. * Each detector is responsible for checking a specific type of error. */ export interface ErrorDetector { /** Unique name of the detector */ name: string; /** Description of what this detector checks for */ description: string; /** * Check if this detector is applicable for the current project * @param workingDirectory The directory to check in * @returns Promise<boolean> True if this detector should be run */ isApplicable(workingDirectory: string): Promise<boolean>; /** * Run the error detection * @param workingDirectory The directory to run detection in * @returns Promise<string | null> Error message if errors found, null otherwise */ detect(workingDirectory: string): Promise<string | null>; }