{"id":49954158,"url":"https://github.com/jonathanong/no-mistakes","last_synced_at":"2026-06-07T09:01:21.600Z","repository":{"id":357648893,"uuid":"1235521884","full_name":"jonathanong/no-mistakes","owner":"jonathanong","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-31T08:01:36.000Z","size":3152,"stargazers_count":0,"open_issues_count":6,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-31T08:05:51.296Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jonathanong.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-11T12:04:24.000Z","updated_at":"2026-05-31T08:01:39.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jonathanong/no-mistakes","commit_stats":null,"previous_names":["jonathanong/playwright-ast-coverage","jonathanong/no-mistakes"],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/jonathanong/no-mistakes","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanong%2Fno-mistakes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanong%2Fno-mistakes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanong%2Fno-mistakes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanong%2Fno-mistakes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonathanong","download_url":"https://codeload.github.com/jonathanong/no-mistakes/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonathanong%2Fno-mistakes/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34014821,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-07T02:00:07.652Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-17T22:00:33.663Z","updated_at":"2026-06-07T09:01:21.541Z","avatar_url":"https://github.com/jonathanong.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# no-mistakes\n\nDeterministic AST-based codebase intelligence for AI agents.\n\n`no-mistakes` answers structural questions about TypeScript, JavaScript,\nReact, Next.js, Playwright, queue, server-route, and Rust repository code\nwithout running the application or calling an AI model. It is built for agents\nthat need small, reliable answers they can feed into follow-up edits and tests.\n\n## Agent Workflows\n\n| Agent question | Use |\n| --- | --- |\n| What does this file import? | `no-mistakes dependencies \u003cfile\u003e --format json` |\n| What can this change affect? | `no-mistakes dependents \u003cfile\u003e --format paths` |\n| Who uses this export? | `no-mistakes dependents \u003cfile\u003e#Symbol --format json` |\n| What does this module export/import? | `no-mistakes symbols \u003cfile\u003e --include both --format json` |\n| Which tests should run? | `no-mistakes tests plan \u003cplaywright\\|vitest\u003e --format json` |\n| Why was a test selected? | `no-mistakes tests why \u003ctest\u003e --plan plan.json` |\n| Which Playwright tests cover this page? | `no-mistakes playwright related \u003cfile\u003e --json` |\n| Which queue/server files are connected? | `no-mistakes queues related \u003cfile\u003e --json`; `no-mistakes server related \u003cfile\u003e --json` |\n| Are configured repository rules passing? | `no-mistakes check --format json` |\n\nUse `--format json` when an agent will parse the answer, `--format paths` when\nthe output feeds another shell command, and `--timings` when explaining analysis\ncost. For repeated in-process queries, prefer the async Node API so one agent\nworkflow can avoid subprocess overhead.\n\n## Install\n\n```sh\nnpm install --save-dev no-mistakes eslint-plugin-no-mistakes\n```\n\nLocal development from this repository:\n\n```sh\ncargo run -p no-mistakes -- dependents src/utils.mts --format paths\n```\n\n## Documentation\n\n- [Documentation index](docs/README.md)\n- [CLI commands](docs/cli/README.md)\n- [Node/N-API guide](docs/node-api.md)\n- [Configuration](docs/configuration/README.md)\n- [Graph edge types](docs/graph-edges.md)\n- [no-mistakes rules](docs/rules/README.md)\n- [ESLint rules](docs/eslint-rules/README.md)\n- [Agent guide](docs/agent-guide.md)\n- [AST analysis behavior](docs/ast-analysis.md)\n\n## Design Constraints\n\n- Local and deterministic: no services, databases, remote AI calls, or\n  persistent filesystem caches.\n- One pass per invocation: discover files once, parse TS/JS once for requested\n  facts, and reuse shared fact maps across checks.\n- Programmatic parity: stable CLI capabilities also expose async N-API\n  functions for Node callers.\n- Explicit configuration: route roots, queue factories, test projects, and\n  global fallback behavior are opt-in configuration, not inferred conventions.\n\n## Link Lint\n\n```sh\nlychee --no-progress --exclude-path '^fixtures/' README.md 'docs/**/*.md' 'skills/**/*.md' 'packages/*/README.md' 'crates/*/README.md' CLAUDE.md\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanong%2Fno-mistakes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonathanong%2Fno-mistakes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonathanong%2Fno-mistakes/lists"}