agentsmesh 0.3.1 → 0.6.0

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.
@@ -0,0 +1,131 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "name": {
6
+ "type": "string",
7
+ "minLength": 1
8
+ },
9
+ "source": {
10
+ "type": "string",
11
+ "minLength": 1
12
+ },
13
+ "version": {
14
+ "type": "string"
15
+ },
16
+ "source_kind": {
17
+ "type": "string",
18
+ "enum": [
19
+ "github",
20
+ "gitlab",
21
+ "git",
22
+ "local"
23
+ ]
24
+ },
25
+ "installed_at": {
26
+ "type": "string"
27
+ },
28
+ "updated_at": {
29
+ "type": "string"
30
+ },
31
+ "features": {
32
+ "minItems": 1,
33
+ "type": "array",
34
+ "items": {
35
+ "type": "string",
36
+ "enum": [
37
+ "rules",
38
+ "commands",
39
+ "agents",
40
+ "skills",
41
+ "mcp",
42
+ "hooks",
43
+ "ignore",
44
+ "permissions"
45
+ ]
46
+ }
47
+ },
48
+ "pick": {
49
+ "type": "object",
50
+ "properties": {
51
+ "skills": {
52
+ "type": "array",
53
+ "items": {
54
+ "type": "string"
55
+ }
56
+ },
57
+ "commands": {
58
+ "type": "array",
59
+ "items": {
60
+ "type": "string"
61
+ }
62
+ },
63
+ "rules": {
64
+ "type": "array",
65
+ "items": {
66
+ "type": "string"
67
+ }
68
+ },
69
+ "agents": {
70
+ "type": "array",
71
+ "items": {
72
+ "type": "string"
73
+ }
74
+ }
75
+ },
76
+ "additionalProperties": false
77
+ },
78
+ "target": {
79
+ "type": "string",
80
+ "enum": [
81
+ "claude-code",
82
+ "cursor",
83
+ "copilot",
84
+ "continue",
85
+ "junie",
86
+ "kiro",
87
+ "gemini-cli",
88
+ "cline",
89
+ "codex-cli",
90
+ "windsurf",
91
+ "antigravity",
92
+ "roo-code"
93
+ ]
94
+ },
95
+ "path": {
96
+ "type": "string"
97
+ },
98
+ "paths": {
99
+ "minItems": 1,
100
+ "type": "array",
101
+ "items": {
102
+ "type": "string",
103
+ "minLength": 1
104
+ }
105
+ },
106
+ "as": {
107
+ "type": "string",
108
+ "enum": [
109
+ "rules",
110
+ "commands",
111
+ "agents",
112
+ "skills"
113
+ ]
114
+ },
115
+ "content_hash": {
116
+ "type": "string"
117
+ }
118
+ },
119
+ "required": [
120
+ "name",
121
+ "source",
122
+ "source_kind",
123
+ "installed_at",
124
+ "updated_at",
125
+ "features",
126
+ "content_hash"
127
+ ],
128
+ "additionalProperties": false,
129
+ "title": "agentsmesh-pack.yaml",
130
+ "description": "AgentsMesh pack metadata (.agentsmesh/packs/{name}/pack.yaml)"
131
+ }
@@ -0,0 +1,38 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "type": "object",
4
+ "properties": {
5
+ "allow": {
6
+ "default": [],
7
+ "description": "Tool calls to allow without confirmation",
8
+ "type": "array",
9
+ "items": {
10
+ "type": "string"
11
+ }
12
+ },
13
+ "deny": {
14
+ "default": [],
15
+ "description": "Tool calls to always deny",
16
+ "type": "array",
17
+ "items": {
18
+ "type": "string"
19
+ }
20
+ },
21
+ "ask": {
22
+ "default": [],
23
+ "description": "Tool calls to confirm before running",
24
+ "type": "array",
25
+ "items": {
26
+ "type": "string"
27
+ }
28
+ }
29
+ },
30
+ "required": [
31
+ "allow",
32
+ "deny",
33
+ "ask"
34
+ ],
35
+ "additionalProperties": false,
36
+ "description": "AgentsMesh permissions config (.agentsmesh/permissions.yaml)",
37
+ "title": "agentsmesh-permissions.yaml"
38
+ }