@majkapp/plugin-kit 3.7.3 → 3.7.5
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.
- package/bin/promptable-cli.js +88 -0
- package/docs/AGENTS.md +641 -0
- package/docs/AUTH.md +248 -0
- package/docs/BATCH.md +256 -0
- package/docs/CONFIG_API.md +206 -0
- package/docs/CONVERSATIONS_API.md +283 -0
- package/docs/DELEGATION.md +196 -0
- package/docs/INDEX.md +38 -0
- package/docs/KNOWLEDGE.md +225 -0
- package/docs/PLUGINS.md +356 -0
- package/docs/REPORTS.md +271 -0
- package/docs/SCRIPTING.md +231 -0
- package/docs/SECRETS.md +412 -0
- package/docs/SKILLS.md +514 -0
- package/docs/TASKS.md +622 -0
- package/docs/TOOL_DISCOVERY.md +240 -0
- package/package.json +1 -1
package/bin/promptable-cli.js
CHANGED
|
@@ -106,4 +106,92 @@ cli.addCommand('--full',
|
|
|
106
106
|
{ description: 'Complete documentation' }
|
|
107
107
|
);
|
|
108
108
|
|
|
109
|
+
// ============================================
|
|
110
|
+
// Additional MAJK APIs
|
|
111
|
+
// ============================================
|
|
112
|
+
|
|
113
|
+
// Delegation API
|
|
114
|
+
cli.addCommand('--delegation',
|
|
115
|
+
cli.createFullDocCommand('DELEGATION.md'),
|
|
116
|
+
{ description: 'Multi-agent task delegation with witnesses' }
|
|
117
|
+
);
|
|
118
|
+
|
|
119
|
+
// Batch API
|
|
120
|
+
cli.addCommand('--batch',
|
|
121
|
+
cli.createFullDocCommand('BATCH.md'),
|
|
122
|
+
{ description: 'Batch processing for large datasets' }
|
|
123
|
+
);
|
|
124
|
+
|
|
125
|
+
// Reports API
|
|
126
|
+
cli.addCommand('--reports',
|
|
127
|
+
cli.createFullDocCommand('REPORTS.md'),
|
|
128
|
+
{ description: 'Knowledge management and reports' }
|
|
129
|
+
);
|
|
130
|
+
|
|
131
|
+
// Scripting API
|
|
132
|
+
cli.addCommand('--scripting',
|
|
133
|
+
cli.createFullDocCommand('SCRIPTING.md'),
|
|
134
|
+
{ description: 'Execute scripts that orchestrate tools' }
|
|
135
|
+
);
|
|
136
|
+
|
|
137
|
+
// Tool Discovery API
|
|
138
|
+
cli.addCommand('--tool-discovery',
|
|
139
|
+
cli.createFullDocCommand('TOOL_DISCOVERY.md'),
|
|
140
|
+
{ description: 'Discover and invoke tools dynamically' }
|
|
141
|
+
);
|
|
142
|
+
|
|
143
|
+
// Skills API
|
|
144
|
+
cli.addCommand('--skills',
|
|
145
|
+
cli.createFullDocCommand('SKILLS.md'),
|
|
146
|
+
{ description: 'Skill registration and management' }
|
|
147
|
+
);
|
|
148
|
+
|
|
149
|
+
// Auth API
|
|
150
|
+
cli.addCommand('--auth',
|
|
151
|
+
cli.createFullDocCommand('AUTH.md'),
|
|
152
|
+
{ description: 'Cognito authentication for MAJK services' }
|
|
153
|
+
);
|
|
154
|
+
|
|
155
|
+
// Secrets API
|
|
156
|
+
cli.addCommand('--secrets',
|
|
157
|
+
cli.createFullDocCommand('SECRETS.md'),
|
|
158
|
+
{ description: 'Secure secret storage and retrieval' }
|
|
159
|
+
);
|
|
160
|
+
|
|
161
|
+
// Config API
|
|
162
|
+
cli.addCommand('--config-api',
|
|
163
|
+
cli.createFullDocCommand('CONFIG_API.md'),
|
|
164
|
+
{ description: 'Access MAJK configuration' }
|
|
165
|
+
);
|
|
166
|
+
|
|
167
|
+
// Plugins API
|
|
168
|
+
cli.addCommand('--plugins',
|
|
169
|
+
cli.createFullDocCommand('PLUGINS.md'),
|
|
170
|
+
{ description: 'Plugin lifecycle management' }
|
|
171
|
+
);
|
|
172
|
+
|
|
173
|
+
// Tasks API
|
|
174
|
+
cli.addCommand('--tasks',
|
|
175
|
+
cli.createFullDocCommand('TASKS.md'),
|
|
176
|
+
{ description: 'Start and monitor async tasks' }
|
|
177
|
+
);
|
|
178
|
+
|
|
179
|
+
// Knowledge API
|
|
180
|
+
cli.addCommand('--knowledge',
|
|
181
|
+
cli.createFullDocCommand('KNOWLEDGE.md'),
|
|
182
|
+
{ description: 'Knowledge trees and search' }
|
|
183
|
+
);
|
|
184
|
+
|
|
185
|
+
// Agents API
|
|
186
|
+
cli.addCommand('--agents',
|
|
187
|
+
cli.createFullDocCommand('AGENTS.md'),
|
|
188
|
+
{ description: 'Agent configuration and testing' }
|
|
189
|
+
);
|
|
190
|
+
|
|
191
|
+
// Conversations API
|
|
192
|
+
cli.addCommand('--conversations',
|
|
193
|
+
cli.createFullDocCommand('CONVERSATIONS_API.md'),
|
|
194
|
+
{ description: 'Conversation access and management' }
|
|
195
|
+
);
|
|
196
|
+
|
|
109
197
|
cli.run();
|