Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

This page tracks real, dated public project health and adoption signals. Do not inflate, estimate, or backfill adoption numbers.

## Snapshot: 2026-07-05 UTC after v0.2.0 release

| Metric | Value | Evidence / notes |
| --- | ---: | --- |
| Latest GitHub release | `v0.2.0` | Published 2026-07-05 UTC |
| npm version | `0.2.0` | `npm view @jin0/agentic-workflow-guard version` |
| npm dist tag | `latest: 0.2.0` | `npm view @jin0/agentic-workflow-guard dist-tags` |
| `v0` action tag | `v0.2.0` | `v0` and `v0.2.0` point to commit `1bc05b4` |
| Open issues | `0` | No open public issues |
| Closed issues | `7` | #1, #2, #3, #4, #5, #6, #7 |
| Merged pull requests | `9` | #9, #10, #11, #12, #13, #14, #15, #16, #17 |
| npm clean install smoke test | Pass | See [docs/npm-smoke-test.md](npm-smoke-test.md) |
| External adopters | `0` | No known external adopters yet |
| Owned repo adoption examples | `1` | `jinyounghub/approach-key-privacy` uses the GitHub Action in CI |
| Owned repo dogfooding workflow | Pass | `jinyounghub/approach-key-privacy` [run 28742478947](https://github.com/jinyounghub/approach-key-privacy/actions/runs/28742478947) after `v0` tag move |

## Snapshot: 2026-07-05 UTC after contributor onboarding PR merge

| Metric | Value | Evidence / notes |
Expand Down
45 changes: 45 additions & 0 deletions docs/npm-smoke-test.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,51 @@

This document records installation checks for the published npm package. It is intentionally factual: it only records commands that were run and the observed result.

## Snapshot: 2026-07-05 UTC after v0.2.0

Environment:

| Check | Result |
| --- | --- |
| Node.js | `v24.16.0` |
| npm | `11.13.0` |
| Package | `@jin0/agentic-workflow-guard` |
| Version | `0.2.0` |
| Dist tag | `latest: 0.2.0` |
| Registry visibility | `public` |

Registry metadata:

```json
{
"name": "@jin0/agentic-workflow-guard",
"version": "0.2.0",
"dist-tags": {
"latest": "0.2.0"
}
}
```

Fresh install check:

```bash
npm init -y
npm install --save-dev @jin0/agentic-workflow-guard@0.2.0
npx agentic-workflow-guard --help
npx awi-guard --help
npx agentic-workflow-guard scan --help
```

Observed result:

| Check | Result |
| --- | --- |
| Install from npm | Pass |
| Installed dependency audit | `found 0 vulnerabilities` |
| `npx agentic-workflow-guard --help` | Pass, exit code 0 |
| `npx awi-guard --help` | Pass, exit code 0 |
| `npx agentic-workflow-guard scan --help` | Pass, exit code 0 |

## Snapshot: 2026-07-04 UTC

Environment:
Expand Down
Loading