-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-card.json
More file actions
125 lines (125 loc) · 4.83 KB
/
agent-card.json
File metadata and controls
125 lines (125 loc) · 4.83 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "TRUSS MCP — AI-Native Developer Tools",
"description": "AI-native developer tools for Claude Code and MCP-compatible agents. Generate CLAUDE.md files, rules, agent definitions, prompt templates, n8n workflows, and security audits from within your AI session.",
"version": "1.0.0",
"documentationUrl": "https://github.com/claw-factory/truss-mcp#readme",
"provider": {
"organization": "TRUSS / claw-factory",
"url": "https://claw-factory.github.io/truss-site"
},
"supportedInterfaces": [
{
"url": "https://claw-factory.github.io/truss-site/a2a/v1",
"protocolBinding": "HTTP+JSON",
"protocolVersion": "1.0"
}
],
"capabilities": {
"streaming": false,
"pushNotifications": false,
"stateTransitionHistory": false,
"extendedAgentCard": false
},
"securitySchemes": {
"bearer": {
"type": "http",
"scheme": "bearer",
"description": "TRUSS license key (optional — free tier available without authentication)"
}
},
"security": [],
"defaultInputModes": ["text/plain", "application/json"],
"defaultOutputModes": ["text/plain", "application/json"],
"pricing": {
"free": true,
"paid": {
"amount": 25,
"currency": "USD",
"interval": "month",
"url": "https://claw-factory.github.io/truss-site"
}
},
"skills": [
{
"id": "truss_init_project",
"name": "Initialize Project",
"description": "Initialize a project with CLAUDE.md, rules, and agent definitions",
"tags": ["setup", "configuration", "claude-code"],
"examples": ["Initialize a Node.js API project with CLAUDE.md and rules"],
"inputModes": ["text/plain", "application/json"],
"outputModes": ["text/plain", "application/json"]
},
{
"id": "truss_generate_claude_md",
"name": "Generate CLAUDE.md",
"description": "Generate a CLAUDE.md configuration file from codebase analysis",
"tags": ["claude-code", "configuration", "documentation"],
"examples": ["Generate a CLAUDE.md for my TypeScript React project"],
"inputModes": ["text/plain"],
"outputModes": ["text/plain"]
},
{
"id": "truss_generate_rules",
"name": "Generate Rules",
"description": "Generate .claude/rules/ files for any language and framework (Pro)",
"tags": ["claude-code", "rules", "configuration"],
"examples": ["Generate rules for TypeScript with the React framework"],
"inputModes": ["text/plain"],
"outputModes": ["text/plain"]
},
{
"id": "truss_generate_agents",
"name": "Generate Agent Definitions",
"description": "Generate .claude/agents/ definitions for specialized AI agents (Pro)",
"tags": ["claude-code", "agents", "configuration"],
"examples": ["Create a Security Auditor agent definition"],
"inputModes": ["text/plain"],
"outputModes": ["text/plain", "application/json"]
},
{
"id": "truss_generate_workflow",
"name": "Generate n8n Workflow",
"description": "Generate n8n workflow JSON from natural language descriptions (Pro)",
"tags": ["automation", "n8n", "workflow"],
"examples": ["When a GitHub issue is created, send a Slack notification"],
"inputModes": ["text/plain"],
"outputModes": ["application/json"]
},
{
"id": "truss_prompt_library",
"name": "Prompt Library",
"description": "Access 20+ prompt templates across code review, testing, documentation, security, architecture, and debugging categories (Pro)",
"tags": ["prompts", "templates", "productivity"],
"examples": ["Find prompts about security review"],
"inputModes": ["text/plain"],
"outputModes": ["text/plain", "application/json"]
},
{
"id": "truss_security_audit",
"name": "Security Audit",
"description": "Scan code for security vulnerabilities with remediation guidance (Pro)",
"tags": ["security", "audit", "vulnerabilities"],
"examples": ["Scan this Express.js controller for security issues"],
"inputModes": ["text/plain"],
"outputModes": ["application/json"]
},
{
"id": "truss_test_generator",
"name": "Test Generator",
"description": "Generate test cases from code supporting JS/TS, Python, Go, and Rust (Pro)",
"tags": ["testing", "code-generation", "quality"],
"examples": ["Generate tests for this Python function"],
"inputModes": ["text/plain"],
"outputModes": ["text/plain"]
},
{
"id": "truss_optimize_config",
"name": "Optimize Config",
"description": "Audit and optimize existing Claude Code configuration with grading (Pro)",
"tags": ["optimization", "configuration", "claude-code"],
"examples": ["Audit my CLAUDE.md and suggest improvements"],
"inputModes": ["text/plain"],
"outputModes": ["text/plain", "application/json"]
}
]
}