dnacore-check 0.1.0

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.
Files changed (2) hide show
  1. package/index.js +3 -0
  2. package/package.json +17 -0
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log('dnacore-check v0.1.0 — coming soon');
3
+ console.log('Check your site\'s AI-readiness at https://dnacore.ai');
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "dnacore-check",
3
+ "version": "0.1.0",
4
+ "description": "Check your site's AI-readiness: validates llms.txt, agents.json, robots.txt and scores AI discoverability.",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "dnacore-check": "./index.js"
8
+ },
9
+ "keywords": ["llms-txt", "agents-json", "ai-web", "ai-readiness", "dnacore", "open-protocol"],
10
+ "author": "dnacore-ai",
11
+ "license": "MIT",
12
+ "homepage": "https://dnacore.ai",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/dnacore-ai/dnacore-protocol"
16
+ }
17
+ }