@open330/oac-discovery 2026.3.1 → 2026.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +31 -0
  2. package/package.json +5 -4
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # @open330/oac-discovery
2
+
3
+ Task discovery scanners for [OAC (Open Agent Contribution)](https://github.com/Open330/open-agent-contribution).
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @open330/oac-discovery
9
+ ```
10
+
11
+ ## What's Inside
12
+
13
+ - **TodoScanner** — finds `TODO`/`FIXME`/`HACK` comments via ripgrep
14
+ - **LintScanner** — detects lint warnings from ESLint/Biome output
15
+ - **GitHubIssuesScanner** — fetches open issues labeled `good-first-issue`, `help-wanted`, etc.
16
+ - **CompositeScanner** — runs multiple scanners and merges results
17
+ - **Priority Ranker** — scores and sorts tasks by actionability
18
+
19
+ ## Usage
20
+
21
+ ```typescript
22
+ import { CompositeScanner, TodoScanner, LintScanner, rankTasks } from '@open330/oac-discovery';
23
+
24
+ const scanner = new CompositeScanner([new TodoScanner(), new LintScanner()]);
25
+ const tasks = await scanner.scan('/path/to/repo');
26
+ const ranked = rankTasks(tasks);
27
+ ```
28
+
29
+ ## License
30
+
31
+ MIT — see the [main repo](https://github.com/Open330/open-agent-contribution) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open330/oac-discovery",
3
- "version": "2026.3.1",
3
+ "version": "2026.3.3",
4
4
  "description": "Task discovery scanners (lint, to-do comments, GitHub issues) for OAC",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -18,7 +18,8 @@
18
18
  }
19
19
  },
20
20
  "files": [
21
- "dist"
21
+ "dist",
22
+ "README.md"
22
23
  ],
23
24
  "publishConfig": {
24
25
  "access": "public"
@@ -27,8 +28,8 @@
27
28
  "node": ">=22.0.0"
28
29
  },
29
30
  "dependencies": {
30
- "@open330/oac-core": "2026.3.1",
31
- "@open330/oac-repo": "2026.3.1"
31
+ "@open330/oac-repo": "2026.3.3",
32
+ "@open330/oac-core": "2026.3.3"
32
33
  },
33
34
  "devDependencies": {
34
35
  "tsup": "^8.3.6",