Skip to content

Commit ce73a6d

Browse files
author
JadeGate
committed
fix: README broken links + backticks
1 parent d999f99 commit ce73a6d

221 files changed

Lines changed: 22181 additions & 2 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Zero trust. Five-layer mathematical verification. Runs locally. No cloud. No LLM
1010
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-green.svg)](https://python.org)
1111
[![Zero Dependencies](https://img.shields.io/badge/dependencies-zero-brightgreen.svg)](#)
1212

13-
[Website](https://jadegate.io) · [Documentation](https://jadegate.io/docs) · [Skill Registry](https://jadegate.io/registry) · [中文](#中文)
13+
[Website](https://jadegate.io) · [Documentation](https://github.com/JadeGate/jade-core#readme) · [Skill Registry](https://jadegate.io/#explorer) · [中文](#中文)
1414

1515
</div>
1616

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
{
2+
"jade_version": "1.0.0",
3+
"skill_id": "mcp_amplitude_events",
4+
"metadata": {
5+
"name": "MCP Amplitude Events",
6+
"version": "1.0.0",
7+
"description": "Send events to Amplitude analytics.",
8+
"author": "jade-registry",
9+
"tags": [
10+
"mcp",
11+
"amplitude",
12+
"analytics",
13+
"events"
14+
],
15+
"license": "BSL-1.1",
16+
"created_at": "2026-02-23T13:59:56Z",
17+
"updated_at": "2026-02-23T13:59:56Z",
18+
"category": "mcp"
19+
},
20+
"trigger": {
21+
"type": "task_intent",
22+
"conditions": [
23+
{
24+
"field": "task.type",
25+
"operator": "in",
26+
"value": [
27+
"mcp_amplitude_events"
28+
]
29+
}
30+
]
31+
},
32+
"input_schema": {
33+
"required_params": [
34+
{
35+
"name": "event_type",
36+
"type": "string",
37+
"description": "Event type"
38+
},
39+
{
40+
"name": "user_id",
41+
"type": "string",
42+
"description": "User ID"
43+
}
44+
],
45+
"optional_params": []
46+
},
47+
"output_schema": {
48+
"fields": [
49+
{
50+
"name": "result",
51+
"type": "object",
52+
"description": "Result from MCP Amplitude Events"
53+
}
54+
]
55+
},
56+
"execution_dag": {
57+
"nodes": [
58+
{
59+
"id": "exec",
60+
"action": "http_get",
61+
"params": {
62+
"endpoint": "/mcp_amplitude_events"
63+
}
64+
},
65+
{
66+
"id": "parse",
67+
"action": "json_extract",
68+
"params": {
69+
"path": "$.result"
70+
}
71+
},
72+
{
73+
"id": "ret",
74+
"action": "return_result",
75+
"params": {}
76+
}
77+
],
78+
"edges": [
79+
{
80+
"from": "exec",
81+
"to": "parse"
82+
},
83+
{
84+
"from": "parse",
85+
"to": "ret"
86+
}
87+
],
88+
"entry_node": "exec",
89+
"exit_node": "ret"
90+
},
91+
"security": {
92+
"network_whitelist": [],
93+
"file_permissions": {
94+
"read": [],
95+
"write": []
96+
},
97+
"max_execution_time_ms": 30000,
98+
"max_retries": 2,
99+
"sandbox_level": "strict",
100+
"dangerous_patterns": []
101+
},
102+
"mcp_compatible": true,
103+
"required_mcp_capabilities": []
104+
}
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
{
2+
"jade_version": "1.0.0",
3+
"skill_id": "mcp_amplitude_query",
4+
"metadata": {
5+
"name": "MCP Amplitude Query",
6+
"version": "1.0.0",
7+
"description": "Query Amplitude analytics.",
8+
"author": "jade-registry",
9+
"tags": [
10+
"mcp",
11+
"amplitude",
12+
"analytics",
13+
"data"
14+
],
15+
"license": "BSL-1.1",
16+
"created_at": "2026-02-23T14:01:30Z",
17+
"updated_at": "2026-02-23T14:01:30Z",
18+
"category": "mcp"
19+
},
20+
"trigger": {
21+
"type": "task_intent",
22+
"conditions": [
23+
{
24+
"field": "task.type",
25+
"operator": "in",
26+
"value": [
27+
"mcp_amplitude_query"
28+
]
29+
}
30+
]
31+
},
32+
"input_schema": {
33+
"required_params": [
34+
{
35+
"name": "event_type",
36+
"type": "string",
37+
"description": "Event type"
38+
}
39+
],
40+
"optional_params": []
41+
},
42+
"output_schema": {
43+
"fields": [
44+
{
45+
"name": "result",
46+
"type": "object",
47+
"description": "Result from MCP Amplitude Query"
48+
}
49+
]
50+
},
51+
"execution_dag": {
52+
"nodes": [
53+
{
54+
"id": "exec",
55+
"action": "http_get",
56+
"params": {
57+
"endpoint": "/mcp_amplitude_query"
58+
}
59+
},
60+
{
61+
"id": "parse",
62+
"action": "json_extract",
63+
"params": {
64+
"path": "$.result"
65+
}
66+
},
67+
{
68+
"id": "ret",
69+
"action": "return_result",
70+
"params": {}
71+
}
72+
],
73+
"edges": [
74+
{
75+
"from": "exec",
76+
"to": "parse"
77+
},
78+
{
79+
"from": "parse",
80+
"to": "ret"
81+
}
82+
],
83+
"entry_node": "exec",
84+
"exit_node": "ret"
85+
},
86+
"security": {
87+
"network_whitelist": [],
88+
"file_permissions": {
89+
"read": [],
90+
"write": []
91+
},
92+
"max_execution_time_ms": 30000,
93+
"max_retries": 2,
94+
"sandbox_level": "strict",
95+
"dangerous_patterns": []
96+
},
97+
"mcp_compatible": true,
98+
"required_mcp_capabilities": []
99+
}
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
{
2+
"jade_version": "1.0.0",
3+
"skill_id": "mcp_ansible_playbook",
4+
"metadata": {
5+
"name": "MCP Ansible Playbook",
6+
"version": "1.0.0",
7+
"description": "Run Ansible playbooks.",
8+
"author": "jade-registry",
9+
"tags": [
10+
"mcp",
11+
"ansible",
12+
"automation",
13+
"devops"
14+
],
15+
"license": "BSL-1.1",
16+
"created_at": "2026-02-23T14:01:30Z",
17+
"updated_at": "2026-02-23T14:01:30Z",
18+
"category": "mcp"
19+
},
20+
"trigger": {
21+
"type": "task_intent",
22+
"conditions": [
23+
{
24+
"field": "task.type",
25+
"operator": "in",
26+
"value": [
27+
"mcp_ansible_playbook"
28+
]
29+
}
30+
]
31+
},
32+
"input_schema": {
33+
"required_params": [
34+
{
35+
"name": "playbook",
36+
"type": "string",
37+
"description": "Playbook path"
38+
}
39+
],
40+
"optional_params": []
41+
},
42+
"output_schema": {
43+
"fields": [
44+
{
45+
"name": "result",
46+
"type": "object",
47+
"description": "Result from MCP Ansible Playbook"
48+
}
49+
]
50+
},
51+
"execution_dag": {
52+
"nodes": [
53+
{
54+
"id": "exec",
55+
"action": "http_get",
56+
"params": {
57+
"endpoint": "/mcp_ansible_playbook"
58+
}
59+
},
60+
{
61+
"id": "parse",
62+
"action": "json_extract",
63+
"params": {
64+
"path": "$.result"
65+
}
66+
},
67+
{
68+
"id": "ret",
69+
"action": "return_result",
70+
"params": {}
71+
}
72+
],
73+
"edges": [
74+
{
75+
"from": "exec",
76+
"to": "parse"
77+
},
78+
{
79+
"from": "parse",
80+
"to": "ret"
81+
}
82+
],
83+
"entry_node": "exec",
84+
"exit_node": "ret"
85+
},
86+
"security": {
87+
"network_whitelist": [],
88+
"file_permissions": {
89+
"read": [],
90+
"write": []
91+
},
92+
"max_execution_time_ms": 30000,
93+
"max_retries": 2,
94+
"sandbox_level": "strict",
95+
"dangerous_patterns": []
96+
},
97+
"mcp_compatible": true,
98+
"required_mcp_capabilities": []
99+
}

0 commit comments

Comments
 (0)