🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@open330/oac-discovery

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@open330/oac-discovery

Task discovery scanners (lint, to-do comments, GitHub issues) for OAC

latest
Source
npmnpm
Version
2026.3.6
Version published
Maintainers
1
Created
Source

@open330/oac-discovery

Task discovery scanners for OAC (Open Agent Contribution).

Install

npm install @open330/oac-discovery

What's Inside

  • TodoScanner — finds TODO/FIXME/HACK comments via ripgrep
  • LintScanner — detects lint warnings from ESLint/Biome output
  • GitHubIssuesScanner — fetches open issues labeled good-first-issue, help-wanted, etc.
  • CompositeScanner — runs multiple scanners and merges results
  • Priority Ranker — scores and sorts tasks by actionability

Usage

import { CompositeScanner, TodoScanner, LintScanner, rankTasks } from '@open330/oac-discovery';

const scanner = new CompositeScanner([new TodoScanner(), new LintScanner()]);
const tasks = await scanner.scan('/path/to/repo');
const ranked = rankTasks(tasks);

License

MIT — see the main repo for details.

FAQs

Package last updated on 17 Feb 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts