class-ai-agent 1.6.3 → 1.6.4
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.
- package/README.md +16 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
#
|
|
1
|
+
# class-ai-agent
|
|
2
2
|
|
|
3
|
-
**
|
|
3
|
+
**Give your AI coding agents the same discipline your team expects from production software.**
|
|
4
|
+
|
|
5
|
+
AI assistants like [Cursor](https://cursor.com), [Claude Code](https://code.claude.com/docs), [Kiro](https://kiro.dev), and [Antigravity](https://antigravity.google) move fast—but without shared rules, workflows, and handoff, every session starts from zero and quality depends on whoever wrote the prompt last. **class-ai-agent** is open-source scaffolding you drop into any repository: structured workflows, security guardrails, specialized agent personas, and code intelligence that stays with the project—not in a single chat thread.
|
|
6
|
+
|
|
7
|
+
Install once with `npx class-ai-agent`. You get four parallel layouts (`.cursor/`, `.claude/`, `.kiro/`, `.agents/` + `GEMINI.md`) wired to the same habits: Spec → Plan → Build → Test → Review → Ship. Session continuity lives in committed [`.agent/SESSION.md`](.agent/SESSION.md), so you can switch IDE, teammate, or model and resume with `/handoff` and `/resume`. CodeGraph and OntoSight rules, Supabase skills, and MCP configs ship pre-configured for Cursor and Kiro.
|
|
8
|
+
|
|
9
|
+
**Built for:** developers who want AI speed without sacrificing standards · teams aligning multiple AI tools · repos where security, TDD, and review are non-negotiable.
|
|
4
10
|
|
|
5
11
|
<div align="center">
|
|
6
12
|
|
|
@@ -18,7 +24,7 @@ Open-source AI agent scaffolding by **Royal Solution** — use it in your own pr
|
|
|
18
24
|
<a href="https://www.npmjs.com/package/class-ai-agent"><img src="https://img.shields.io/npm/v/class-ai-agent?label=npm&logo=npm&style=flat-square" alt="npm version" /></a>
|
|
19
25
|
<img src="https://img.shields.io/badge/node-%3E%3D16.7-339933?logo=node.js&logoColor=white&style=flat-square" alt="Node.js 16.7+" />
|
|
20
26
|
<img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="License MIT" />
|
|
21
|
-
<img src="https://img.shields.io/badge/version-1.6.
|
|
27
|
+
<img src="https://img.shields.io/badge/version-1.6.4-blue?style=flat-square" alt="Version" />
|
|
22
28
|
</p>
|
|
23
29
|
|
|
24
30
|
</div>
|
|
@@ -444,6 +450,13 @@ Ship thin end-to-end slices (DB + API + UI), not “all models first, then all r
|
|
|
444
450
|
|
|
445
451
|
|
|
446
452
|
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
### 1.6.4 — 2026-06-19
|
|
456
|
+
|
|
457
|
+
- Professional README hero introduction — outcome-led copy for developers and teams using Cursor, Claude Code, Kiro, and Antigravity
|
|
458
|
+
- Update npm package description to highlight rules, workflows, agents, CodeGraph, and cross-tool session handoff
|
|
459
|
+
|
|
447
460
|
### 1.6.3 — 2026-06-19
|
|
448
461
|
|
|
449
462
|
- Add **Project graph fidelity** rules for OntoSight — mandatory `codegraph_status` preflight, absolute workspace root as `[project-path]`, seed binding from CodeGraph MCP
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "class-ai-agent",
|
|
3
|
-
"version": "1.6.
|
|
4
|
-
"description": "Production-grade AI agent
|
|
3
|
+
"version": "1.6.4",
|
|
4
|
+
"description": "Production-grade AI agent scaffolding for Cursor, Claude Code, Kiro & Antigravity — rules, workflows, agents, CodeGraph, and cross-tool handoff.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|