This release is 4 versions behind 0.6.1 — the latest version of @corespeed/zypher. Jump to latest
@corespeed/zypher@0.4.4Built and signed on GitHub ActionsBuilt and signed on GitHub Actions
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




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>; }