@jqntn/agentdoctor 0.1.1 → 0.1.2

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 CHANGED
@@ -10,7 +10,7 @@
10
10
  <a href="https://github.com/jqntn/agentdoctor/actions/workflows/ci.yml"><img alt="CI" src="https://github.com/jqntn/agentdoctor/actions/workflows/ci.yml/badge.svg"></a>
11
11
  <a href="https://www.npmjs.com/package/@jqntn/agentdoctor"><img alt="npm" src="https://img.shields.io/npm/v/%40jqntn%2Fagentdoctor"></a>
12
12
  <img alt="zero dependencies" src="https://img.shields.io/badge/dependencies-0-34D399">
13
- <img alt="node >=20" src="https://img.shields.io/badge/node-%3E%3D20-64748B">
13
+ <img alt="node &gt;=20" src="https://img.shields.io/badge/node-%3E%3D20-64748B">
14
14
  <a href="LICENSE"><img alt="MIT" src="https://img.shields.io/badge/license-MIT-blue"></a>
15
15
  </p>
16
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jqntn/agentdoctor",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Lint and grade your AI coding-agent configuration: permissions, hooks, MCP servers, skills, subagents and CLAUDE.md. Catches silent failures, security holes and context waste, with fixes. Zero dependencies, no telemetry.",
5
5
  "keywords": [
6
6
  "agent",
package/src/index.js CHANGED
@@ -3,7 +3,7 @@ import { lint, fingerprint, helpers } from './engine.js';
3
3
  import { allRules, CATEGORIES } from './rules/index.js';
4
4
  import { loadPolicy } from './rules/policy.js';
5
5
 
6
- export const VERSION = '0.1.1';
6
+ export const VERSION = '0.1.2';
7
7
 
8
8
  /**
9
9
  * One-call entry point: discover config, load any team policy, run every rule.