-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp-store.json
More file actions
91 lines (91 loc) · 2.27 KB
/
app-store.json
File metadata and controls
91 lines (91 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "agent-architect",
"displayName": "Agent Architect",
"version": "1.0.0",
"description": "Creates secure, deployable Next.js AI agents as standalone microservices for non-technical users",
"category": "AI & Machine Learning",
"subcategory": "Code Generation",
"pricing": "free",
"author": "Your Name",
"homepage": "https://agent-architect.vercel.app",
"repository": "https://github.com/yourusername/agent-architect",
"documentation": "https://agent-architect.vercel.app/docs",
"license": "Private",
"tags": [
"ai",
"agents",
"microservices",
"code-generation",
"next.js",
"claude",
"deployment",
"no-code"
],
"apiEndpoint": "/api/agent",
"healthCheck": "/api/agent",
"methods": ["POST", "GET"],
"authentication": "none",
"rateLimit": "100/hour",
"environmentVariables": [
{
"name": "ANTHROPIC_API_KEY",
"description": "Anthropic API key for Claude AI (get from console.anthropic.com)",
"required": true,
"secret": true,
"example": "sk-ant-api03-..."
}
],
"capabilities": [
"code-generation",
"ai-agents",
"microservices",
"deployment-automation",
"security-first",
"educational"
],
"integration": {
"type": "rest-api",
"protocol": "https",
"format": "json",
"cors": "enabled",
"examples": [
{
"name": "Generate Agent",
"method": "POST",
"endpoint": "/api/agent",
"request": {
"input": "Create an agent that analyzes customer feedback"
},
"response": {
"result": "Complete agent package with all files..."
}
},
{
"name": "Health Check",
"method": "GET",
"endpoint": "/api/agent",
"response": {
"status": "healthy",
"service": "Agent Architect",
"version": "1.0.0"
}
}
]
},
"deployment": {
"platform": "vercel",
"runtime": "nodejs18.x",
"buildCommand": "npm run build",
"startCommand": "npm start",
"framework": "nextjs"
},
"requirements": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"support": {
"documentation": "README.md",
"deployment": "DEPLOYMENT.md",
"issues": "https://github.com/yourusername/agent-architect/issues"
}
}