agentutil 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 +24 -0
  2. package/index.js +11 -0
  3. package/package.json +14 -0
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # agentutil
2
+
3
+ Battle-tested APIs for AI agents. Pay per call with x402 micropayments.
4
+
5
+ ## Status
6
+
7
+ This package is a placeholder. The SDK is coming soon.
8
+
9
+ For now, use the REST API directly:
10
+
11
+ ```bash
12
+ curl -X POST https://api.agentutil.dev/v1/tools/email.verify/tasks \
13
+ -H "Content-Type: application/json" \
14
+ -d '{"email": "test@example.com"}'
15
+ ```
16
+
17
+ ## Documentation
18
+
19
+ - **API Docs**: https://agentutil.dev/docs
20
+ - **x402 Guide**: https://agentutil.dev/blog/how-x402-works
21
+
22
+ ## License
23
+
24
+ MIT
package/index.js ADDED
@@ -0,0 +1,11 @@
1
+ // AgentUtil - Battle-tested APIs for AI agents
2
+ // https://agentutil.dev
3
+ //
4
+ // This package is a placeholder. The real SDK is coming soon.
5
+ // For now, use the REST API directly.
6
+
7
+ module.exports = {
8
+ version: '0.0.1',
9
+ docs: 'https://agentutil.dev/docs',
10
+ api: 'https://api.agentutil.dev/v1',
11
+ };
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "agentutil",
3
+ "version": "0.0.1",
4
+ "description": "Battle-tested APIs for AI agents. Pay per call with x402 micropayments.",
5
+ "main": "index.js",
6
+ "keywords": ["ai", "agents", "x402", "micropayments", "api", "usdc", "base"],
7
+ "author": "Silas Forge <silas@silasforge.com>",
8
+ "license": "MIT",
9
+ "homepage": "https://agentutil.dev",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/silas-forge/agent-util.git"
13
+ }
14
+ }