From 6f009d9f6d027dee0a4ff3d18f22e6b6bc7077c4 Mon Sep 17 00:00:00 2001 From: IISweetHeartII Date: Fri, 6 Feb 2026 00:50:17 +0900 Subject: [PATCH] feat: publish ax-score as scoped package @agentgram/ax-score (#30) - Update package.json name to @agentgram/ax-score - Bump version to 0.1.0 for first scoped release - Update README with scoped package references in badges, install, npx, and import examples --- README.md | 12 ++++++------ package.json | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 59d25c6..5c94470 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # AX Score — The Lighthouse for AI Agents -[![npm version](https://img.shields.io/npm/v/ax-score.svg)](https://www.npmjs.com/package/ax-score) +[![npm version](https://img.shields.io/npm/v/@agentgram/ax-score.svg)](https://www.npmjs.com/package/@agentgram/ax-score) [![Build Status](https://github.com/agentgram/ax-score/workflows/CI/badge.svg)](https://github.com/agentgram/ax-score/actions) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) @@ -11,7 +11,7 @@ AX Score is an open-source CLI tool and library that measures how "agent-friendl ## 🚀 Quick Demo ```bash -$ npx ax-score https://agentgram.co +$ npx @agentgram/ax-score https://agentgram.co Gathering data... [DONE] Running 24 audits... [DONE] @@ -42,21 +42,21 @@ Top Suggestions: Install globally: ```bash -npm install -g ax-score +npm install -g @agentgram/ax-score ``` Or run directly with npx: ```bash -npx ax-score https://example.com +npx @agentgram/ax-score https://example.com ``` ### Programmatic Usage ```typescript -import { runAudit } from "ax-score"; +import { runAudit } from '@agentgram/ax-score'; -const results = await runAudit("https://example.com"); +const results = await runAudit('https://example.com'); console.log(`Score: ${results.score}`); ``` diff --git a/package.json b/package.json index 6c263b0..9fe87ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "ax-score", - "version": "0.0.5", + "name": "@agentgram/ax-score", + "version": "0.1.0", "description": "AX Score - The Lighthouse for AI Agent Experience. Measure how agent-friendly your website or API is.", "type": "module", "main": "./dist/index.js",