@open330/oac-tracking 2026.3.1 → 2026.3.2

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 +32 -0
  2. package/package.json +4 -3
package/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # @open330/oac-tracking
2
+
3
+ Contribution tracking and leaderboard for [OAC (Open Agent Contribution)](https://github.com/Open330/open-agent-contribution).
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @open330/oac-tracking
9
+ ```
10
+
11
+ ## What's Inside
12
+
13
+ - **Contribution Logger** — writes JSON audit logs to `.oac/contributions/`
14
+ - **Leaderboard** — aggregates contribution stats across team members
15
+ - **JSON Schema** — typed contribution log format
16
+
17
+ ## Usage
18
+
19
+ ```typescript
20
+ import { writeContributionLog } from '@open330/oac-tracking';
21
+
22
+ await writeContributionLog(repoPath, {
23
+ contributor: 'jiun',
24
+ tasks: completedTasks,
25
+ tokensUsed: 42_000,
26
+ prsCreated: 3,
27
+ });
28
+ ```
29
+
30
+ ## License
31
+
32
+ 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-tracking",
3
- "version": "2026.3.1",
3
+ "version": "2026.3.2",
4
4
  "description": "Contribution logging and leaderboard tracking 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"
@@ -28,7 +29,7 @@
28
29
  },
29
30
  "dependencies": {
30
31
  "zod": "^3.24.2",
31
- "@open330/oac-core": "2026.3.1"
32
+ "@open330/oac-core": "2026.3.2"
32
33
  },
33
34
  "devDependencies": {
34
35
  "tsup": "^8.3.6",