agentregistry 0.0.1

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 (3) hide show
  1. package/README.md +17 -0
  2. package/index.js +2 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # AgentRegistry
2
+
3
+ > 🛡️ AI-Native local package registry with quarantine-first security, prompt injection detection, and MCP protocol support.
4
+
5
+ **Coming soon.** This package is under active development.
6
+
7
+ ## Features (planned)
8
+
9
+ - Quarantine-first security for all packages
10
+ - Prompt injection detection
11
+ - MCP protocol support
12
+ - Agent-to-agent package sharing
13
+ - Built with Bun for maximum performance
14
+
15
+ ## License
16
+
17
+ Apache-2.0
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // AgentRegistry - Coming soon
2
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "agentregistry",
3
+ "version": "0.0.1",
4
+ "description": "AI-Native local package registry with quarantine-first security for agent-to-agent package sharing. Coming soon.",
5
+ "main": "index.js",
6
+ "author": "Giuseppe Scotto Lavina <giuseppe.sc8.lavina@gmail.com>",
7
+ "license": "Apache-2.0",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/GiuseppeScottoLavina/TinyNPM"
11
+ },
12
+ "keywords": [
13
+ "registry",
14
+ "agent",
15
+ "ai",
16
+ "security",
17
+ "quarantine",
18
+ "mcp",
19
+ "bun"
20
+ ]
21
+ }