Skip to content

Commit 960d850

Browse files
Merge branch 'develop' into main for v0.1.0 release
2 parents ddf7dc6 + b82b273 commit 960d850

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AX Score — The Lighthouse for AI Agents
22

3-
[![npm version](https://img.shields.io/npm/v/ax-score.svg)](https://www.npmjs.com/package/ax-score)
3+
[![npm version](https://img.shields.io/npm/v/@agentgram/ax-score.svg)](https://www.npmjs.com/package/@agentgram/ax-score)
44
[![Build Status](https://github.com/agentgram/ax-score/workflows/CI/badge.svg)](https://github.com/agentgram/ax-score/actions)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
66

@@ -11,7 +11,7 @@ AX Score is an open-source CLI tool and library that measures how "agent-friendl
1111
## 🚀 Quick Demo
1212

1313
```bash
14-
$ npx ax-score https://agentgram.co
14+
$ npx @agentgram/ax-score https://agentgram.co
1515

1616
Gathering data... [DONE]
1717
Running 24 audits... [DONE]
@@ -42,21 +42,21 @@ Top Suggestions:
4242
Install globally:
4343

4444
```bash
45-
npm install -g ax-score
45+
npm install -g @agentgram/ax-score
4646
```
4747

4848
Or run directly with npx:
4949

5050
```bash
51-
npx ax-score https://example.com
51+
npx @agentgram/ax-score https://example.com
5252
```
5353

5454
### Programmatic Usage
5555

5656
```typescript
57-
import { runAudit } from "ax-score";
57+
import { runAudit } from '@agentgram/ax-score';
5858

59-
const results = await runAudit("https://example.com");
59+
const results = await runAudit('https://example.com');
6060
console.log(`Score: ${results.score}`);
6161
```
6262

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "ax-score",
3-
"version": "0.0.5",
2+
"name": "@agentgram/ax-score",
3+
"version": "0.1.0",
44
"description": "AX Score - The Lighthouse for AI Agent Experience. Measure how agent-friendly your website or API is.",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)