-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcortex.json
More file actions
134 lines (134 loc) · 3.44 KB
/
Copy pathcortex.json
File metadata and controls
134 lines (134 loc) · 3.44 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
126
127
128
129
130
131
132
133
134
{
"name": "cortex-plugin-reflection",
"version": "1.0.1",
"description": "Post-turn reflection plugins: self-consistency, debate, verification",
"kind": "esm",
"entryPoint": "mod.ts",
"runtime": "deno",
"author": "CortexPrism",
"license": "MIT",
"repository": "https://github.com/CortexPrism/cortex-plugin-reflection",
"homepage": "https://cortexprism.io/marketplace/plugins/reflection",
"capabilities": [
"tools"
],
"tools": [
{
"name": "reflect_self_consistency",
"description": "Sample multiple reasoning paths and majority vote",
"params": [
{
"name": "problem",
"type": "string",
"description": "The problem to reason about",
"required": true
},
{
"name": "num_samples",
"type": "number",
"description": "Number of reasoning paths to sample",
"required": false
},
{
"name": "strategy",
"type": "string",
"description": "Optional reasoning strategy hint",
"required": false
}
]
},
{
"name": "reflect_debate",
"description": "Two sub-agents argue opposing positions, judge picks best",
"params": [
{
"name": "topic",
"type": "string",
"description": "The topic or question to debate",
"required": true
},
{
"name": "rounds",
"type": "number",
"description": "Number of debate rounds",
"required": false
}
]
},
{
"name": "reflect_verify",
"description": "Agent writes tests for its own output before declaring done",
"params": [
{
"name": "output",
"type": "string",
"description": "The agent's output to verify",
"required": true
},
{
"name": "criteria",
"type": "string",
"description": "Verification criteria",
"required": true
}
]
},
{
"name": "reflect_improve",
"description": "Suggest improvements based on reflection results",
"params": [
{
"name": "original_output",
"type": "string",
"description": "The original agent output",
"required": true
},
{
"name": "reflection_results",
"type": "string",
"description": "JSON of previous reflection results",
"required": true
}
]
}
],
"peerDependencies": {
"cortex": ">=1.0.0"
},
"ui": {
"settings": [
{
"section": "General",
"fields": [
{
"key": "defaultSamples",
"label": "Default Samples",
"type": "number",
"defaultValue": 3,
"description": "Default number of reasoning paths for self-consistency"
},
{
"key": "debateRounds",
"label": "Debate Rounds",
"type": "number",
"defaultValue": 3,
"description": "Default number of debate rounds"
},
{
"key": "autoVerify",
"label": "Auto Verify",
"type": "boolean",
"defaultValue": true,
"description": "Automatically verify outputs via post-middleware"
}
]
}
]
},
"aiDisclosure": {
"tools": [
"Claude Code (Anthropic)"
],
"humanReview": true
}
}