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
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0] - 2026-02-08

### Added
- GitHub Marketplace listing as a GitHub Action
- First npm publish with provenance

### Changed
- README: new title, tagline, Marketplace badge, removed Online API and website refs
- GitHub Action pinning updated from `@main` to `@v0`

## [0.0.6] - 2026-01-28

### Added
Expand Down Expand Up @@ -61,7 +71,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 100% scan success rate
- Factory.ai comparison documented in `test/VALIDATION_REPORT.md`

[Unreleased]: https://github.com/agent-next/agent-ready/compare/v0.0.6...HEAD
[Unreleased]: https://github.com/agent-next/agent-ready/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/agent-next/agent-ready/compare/v0.0.6...v0.1.0
[0.0.6]: https://github.com/agent-next/agent-ready/compare/v0.0.5...v0.0.6
[0.0.5]: https://github.com/agent-next/agent-ready/compare/v0.0.4...v0.0.5
[0.0.4]: https://github.com/agent-next/agent-ready/compare/v0.0.1...v0.0.4
Expand Down
24 changes: 5 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# agent-ready
# Agent Ready

[中文文档](./README_CN.md) | English
*From entropy generator to scalable production worker.*

[![npm version](https://img.shields.io/npm/v/agent-ready.svg)](https://www.npmjs.com/package/agent-ready)
[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-Agent%20Ready-blue?logo=github)](https://github.com/marketplace/actions/agent-ready-scanner)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Node.js](https://img.shields.io/badge/node-%3E%3D20.0.0-brightgreen.svg)](https://nodejs.org/)
[![TypeScript](https://img.shields.io/badge/TypeScript-5.7-blue.svg)](https://www.typescriptlang.org/)
Expand Down Expand Up @@ -148,8 +149,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run Agent Ready
# Pin to a tag or SHA for production usage; `main` tracks the latest.
uses: agent-next/agent-ready@main
# Pin to @v0 for latest stable; use a full tag like @v0.1.0 for exact version.
uses: agent-next/agent-ready@v0
with:
fail-below-level: 'L2'
comment-on-pr: 'true'
Expand All @@ -174,18 +175,6 @@ jobs:
| `project-type` | `cli`, `library`, `webapp`, `web-service`, `monorepo` |
| `passed` | Whether threshold was met |

## Online API

```bash
# Submit a scan
curl -X POST https://agent-ready.org/api/scan \
-H "Content-Type: application/json" \
-d '{"repo_url":"https://github.com/owner/repo"}'

# Check status
curl https://agent-ready.org/api/scan/{scan_id}
```

## CLI Usage

```bash
Expand Down Expand Up @@ -301,13 +290,10 @@ agent-ready/

## Related Projects

- [agent-ready-website](https://github.com/agent-next/agent-ready-website) - Web UI for scanning repos
- [spec-kit](https://github.com/github/spec-kit) - GitHub's spec-driven development methodology

## License

MIT

---

**Agent-Ready: From entropy generator to scalable production worker.**
Loading
Loading