@solidxai/core 0.1.12-beta.2 → 0.1.12-beta.3

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.
Files changed (128) hide show
  1. package/.claude/settings.local.json +16 -0
  2. package/CLAUDE.md +26 -0
  3. package/dist/constants/media-file-types.d.ts +5 -0
  4. package/dist/constants/media-file-types.d.ts.map +1 -0
  5. package/dist/constants/media-file-types.js +27 -0
  6. package/dist/constants/media-file-types.js.map +1 -0
  7. package/dist/controllers/media.controller.d.ts +14 -11
  8. package/dist/controllers/media.controller.d.ts.map +1 -1
  9. package/dist/controllers/media.controller.js +72 -33
  10. package/dist/controllers/media.controller.js.map +1 -1
  11. package/dist/dtos/create-media.dto.d.ts +1 -0
  12. package/dist/dtos/create-media.dto.d.ts.map +1 -1
  13. package/dist/dtos/create-media.dto.js +7 -1
  14. package/dist/dtos/create-media.dto.js.map +1 -1
  15. package/dist/dtos/update-media.dto.d.ts +1 -0
  16. package/dist/dtos/update-media.dto.d.ts.map +1 -1
  17. package/dist/dtos/update-media.dto.js +7 -1
  18. package/dist/dtos/update-media.dto.js.map +1 -1
  19. package/dist/entities/media.entity.d.ts +1 -0
  20. package/dist/entities/media.entity.d.ts.map +1 -1
  21. package/dist/entities/media.entity.js +9 -1
  22. package/dist/entities/media.entity.js.map +1 -1
  23. package/dist/enums/auth-type.enum.d.ts +2 -1
  24. package/dist/enums/auth-type.enum.d.ts.map +1 -1
  25. package/dist/enums/auth-type.enum.js +1 -0
  26. package/dist/enums/auth-type.enum.js.map +1 -1
  27. package/dist/guards/authentication.guard.d.ts +3 -1
  28. package/dist/guards/authentication.guard.d.ts.map +1 -1
  29. package/dist/guards/authentication.guard.js +5 -1
  30. package/dist/guards/authentication.guard.js.map +1 -1
  31. package/dist/guards/media-signed-url.guard.d.ts +9 -0
  32. package/dist/guards/media-signed-url.guard.d.ts.map +1 -0
  33. package/dist/guards/media-signed-url.guard.js +49 -0
  34. package/dist/guards/media-signed-url.guard.js.map +1 -0
  35. package/dist/helpers/field-crud-managers/MediaFieldCrudManager.d.ts.map +1 -1
  36. package/dist/helpers/field-crud-managers/MediaFieldCrudManager.js +10 -13
  37. package/dist/helpers/field-crud-managers/MediaFieldCrudManager.js.map +1 -1
  38. package/dist/repository/media.repository.d.ts.map +1 -1
  39. package/dist/repository/media.repository.js +2 -0
  40. package/dist/repository/media.repository.js.map +1 -1
  41. package/dist/seeders/seed-data/solid-core-metadata.json +88 -3
  42. package/dist/services/media-download-url.service.d.ts +21 -0
  43. package/dist/services/media-download-url.service.d.ts.map +1 -0
  44. package/dist/services/media-download-url.service.js +67 -0
  45. package/dist/services/media-download-url.service.js.map +1 -0
  46. package/dist/services/media-storage.utils.d.ts +27 -0
  47. package/dist/services/media-storage.utils.d.ts.map +1 -0
  48. package/dist/services/media-storage.utils.js +82 -0
  49. package/dist/services/media-storage.utils.js.map +1 -0
  50. package/dist/services/media.service.d.ts +20 -4
  51. package/dist/services/media.service.d.ts.map +1 -1
  52. package/dist/services/media.service.js +157 -55
  53. package/dist/services/media.service.js.map +1 -1
  54. package/dist/services/mediaStorageProviders/file-s3-storage-provider.d.ts +4 -4
  55. package/dist/services/mediaStorageProviders/file-s3-storage-provider.d.ts.map +1 -1
  56. package/dist/services/mediaStorageProviders/file-s3-storage-provider.js +37 -63
  57. package/dist/services/mediaStorageProviders/file-s3-storage-provider.js.map +1 -1
  58. package/dist/services/mediaStorageProviders/file-storage-provider.d.ts +5 -5
  59. package/dist/services/mediaStorageProviders/file-storage-provider.d.ts.map +1 -1
  60. package/dist/services/mediaStorageProviders/file-storage-provider.js +37 -38
  61. package/dist/services/mediaStorageProviders/file-storage-provider.js.map +1 -1
  62. package/dist/solid-core.module.d.ts.map +1 -1
  63. package/dist/solid-core.module.js +11 -1
  64. package/dist/solid-core.module.js.map +1 -1
  65. package/dist/subscribers/audit.subscriber.js +1 -1
  66. package/dist/subscribers/audit.subscriber.js.map +1 -1
  67. package/package.json +1 -1
  68. package/src/constants/media-file-types.ts +44 -0
  69. package/src/controllers/media.controller.ts +44 -24
  70. package/src/dtos/create-media.dto.ts +8 -3
  71. package/src/dtos/update-media.dto.ts +8 -3
  72. package/src/entities/media.entity.ts +4 -1
  73. package/src/enums/auth-type.enum.ts +1 -0
  74. package/src/guards/authentication.guard.ts +3 -0
  75. package/src/guards/media-signed-url.guard.ts +41 -0
  76. package/src/helpers/field-crud-managers/MediaFieldCrudManager.ts +12 -24
  77. package/src/repository/media.repository.ts +2 -0
  78. package/src/seeders/seed-data/solid-core-metadata.json +88 -3
  79. package/src/services/1.js +6 -0
  80. package/src/services/media-download-url.service.ts +67 -0
  81. package/src/services/media-storage.utils.ts +79 -0
  82. package/src/services/media.service.ts +189 -59
  83. package/src/services/mediaStorageProviders/file-s3-storage-provider.ts +52 -76
  84. package/src/services/mediaStorageProviders/file-storage-provider.ts +44 -48
  85. package/src/solid-core.module.ts +21 -2
  86. package/src/subscribers/audit.subscriber.ts +1 -1
  87. package/dist-tests/api/authenticate.spec.js +0 -119
  88. package/dist-tests/api/authenticate.spec.js.map +0 -1
  89. package/dist-tests/api/crud-service.findOne.cityMaster.spec.js +0 -97
  90. package/dist-tests/api/crud-service.findOne.cityMaster.spec.js.map +0 -1
  91. package/dist-tests/api/ping.spec.js +0 -21
  92. package/dist-tests/api/ping.spec.js.map +0 -1
  93. package/dist-tests/helpers/auth.js +0 -41
  94. package/dist-tests/helpers/auth.js.map +0 -1
  95. package/dist-tests/helpers/env.js +0 -11
  96. package/dist-tests/helpers/env.js.map +0 -1
  97. package/docs/agent-builder/notebook-lm-prompt-for-agent-builder.md +0 -136
  98. package/docs/agent-builder/team-ready-note-agent-builder.md +0 -305
  99. package/docs/agent-hub-grooming.md +0 -301
  100. package/docs/dashboards/AGENTIC_DASHBOARD_IMPLEMENTATION_PLAN.md +0 -438
  101. package/docs/dashboards/dashboard-curl-smoke-tests.txt +0 -146
  102. package/docs/dashboards/delete-legacy-dashboard-metadata.sql +0 -172
  103. package/docs/datasource-introspection-ddl-analysis.md +0 -326
  104. package/docs/datasource-introspection-implementation-plan.md +0 -306
  105. package/docs/grouping-enhancements.md +0 -89
  106. package/docs/java-spring/README.md +0 -3
  107. package/docs/java-spring/solid-core-module-deep-dive-report.md +0 -1317
  108. package/docs/module-package-import-handoff.md +0 -691
  109. package/docs/seed-changes.md +0 -65
  110. package/docs/test-data-workflow.md +0 -200
  111. package/docs/type-declaration-import-issue.md +0 -24
  112. package/docs/workflow/business-automation-example-notes.md +0 -309
  113. package/docs/workflow/data-engineering-pipeline-example-notes.md +0 -330
  114. package/docs/workflow/foreach-example-notes.md +0 -187
  115. package/docs/workflow/hello-world-example-notes.md +0 -271
  116. package/docs/workflow/kestra-concepts-plugins-blueprints.md +0 -315
  117. package/docs/workflow/loop-until-example-notes.md +0 -198
  118. package/docs/workflow/microservices-and-apis-example-notes.md +0 -264
  119. package/docs/workflow/samples.md +0 -25
  120. package/docs/workflow/what-is-kestra.md +0 -79
  121. package/docs/workflow/workflow-core-module-handoff-summary.md +0 -191
  122. package/docs/workflow/workflow-module-brd.md +0 -185
  123. package/docs/workflow/workflow-module-domain-model.md +0 -252
  124. package/docs/workflow/workflow-module-metadata-dsl.md +0 -302
  125. package/docs/workflow/workflow-module-technical-spec.md +0 -293
  126. package/docs/workflow/workflow-node-type-contracts.md +0 -635
  127. package/docs/workflow/workflow-node-ui-metadata-contract.md +0 -1262
  128. package/docs/workflow/workflow-solidx-model-field-spec.md +0 -284
@@ -1,136 +0,0 @@
1
- Use this as a copy-paste prompt for NotebookLM.
2
-
3
- :::writing{variant="document" id="73942"}
4
- Create a neat, professional presentation from the notes below.
5
-
6
- Audience: SolidX internal product/engineering team
7
- Purpose: Explain the vision for an installable “AI Agent Builder / AI Agent Registry” module in SolidX
8
- Tone: Clear, strategic, practical, product-oriented
9
- Output: A slide-by-slide presentation outline with titles, bullet points, and suggested diagrams
10
-
11
- Presentation title:
12
- “SolidX AI Agent Builder: Metadata-Driven Enterprise Agents”
13
-
14
- Create around 10–12 slides.
15
-
16
- Structure the presentation as follows:
17
-
18
- Slide 1: Title Slide
19
- - SolidX AI Agent Builder / Agent Registry
20
- - Metadata-driven enterprise agents
21
- - Position this as the next evolution of SolidX workflows
22
-
23
- Slide 2: Why This Module?
24
- Explain the problem:
25
- - Enterprises need AI agents, but they also need governance, security, auditability, and workflow integration
26
- - Most agents today are hardcoded or isolated prototypes
27
- - SolidX can make agents configurable, reusable, governed, and workflow-aware
28
-
29
- Slide 3: Core Concept
30
- Explain:
31
- - AI agents become first-class SolidX metadata entities
32
- - Each agent is defined using metadata
33
- - Agent behaviour is configured, not hardcoded
34
- - Mini-SWE provides the autonomous runtime loop
35
-
36
- Include visual:
37
- Agent Definition + Skills + Tools + Knowledge Base + Policies = Runnable Enterprise Agent
38
-
39
- Slide 4: Installable SolidX Module
40
- Explain:
41
- - AI Agent Builder can be installed as a SolidX module
42
- - It brings its own domain model
43
- - It can include entities such as Agent, Skill, Tool, Knowledge Base, Policy, Agent Run, Tool Call Log
44
- - Configuration can be stored directly in metadata JSON
45
- - Runtime execution records can be stored in database tables
46
-
47
- Slide 5: Agent Configuration UI
48
- Explain what users can configure:
49
- - Agent name and description
50
- - System instructions
51
- - Allowed skills
52
- - Allowed tools
53
- - Linked knowledge bases
54
- - Runtime limits
55
- - Approval policies
56
- - Output schema
57
-
58
- Mention that this can be built using native SolidX CRUD screens or a custom Agent Builder UI.
59
-
60
- Slide 6: Skills Registry
61
- Explain:
62
- - Skills are reusable know-how
63
- - They define how the agent performs a task
64
- - Examples: Contract Review, Invoice Validation, Customer Escalation Handling, Code Review, Document Classification
65
- - A skill may contain instructions, prompt templates, examples, decision criteria, and output expectations
66
-
67
- Make clear:
68
- Skill = how the agent thinks/performs a task
69
-
70
- Slide 7: Tool Registry
71
- Explain:
72
- - Tools are executable capabilities
73
- - Examples: Send Email, Search Gmail, Query Database, Create Ticket, Read File, Call API, Search Knowledge Base
74
- - SolidX can provide a screen where all registered or discovered tools are visible
75
- - Tools may come from native SolidX APIs, internal systems, MCP servers, Composio, or custom enterprise integrations
76
-
77
- Make clear:
78
- Tool = what action the agent can perform
79
-
80
- Slide 8: Knowledge Base
81
- Explain:
82
- - Agents can be attached to specific knowledge bases
83
- - Examples: company policies, product documentation, SOPs, technical specifications, contract templates
84
- - Knowledge gives the agent controlled enterprise context
85
- - Knowledge can be attached to agents, skills, or workflows
86
-
87
- Slide 9: Agent Runtime Using Mini-SWE
88
- Explain:
89
- - Each agent runs as a Mini-SWE loop
90
- - When invoked, SolidX spawns an Agent Run
91
- - The runtime receives goal, user input, metadata, skills, tools, knowledge context, policies, and output schema
92
- - The loop performs: Plan → Act → Use Tool → Observe → Re-plan → Complete
93
-
94
- Include diagram:
95
- SolidX Agent Metadata → Mini-SWE Runtime → Tool Calls / Knowledge Search → Structured Result
96
-
97
- Slide 10: Test Interface
98
- Explain:
99
- - Once configured, users can test the agent inside SolidX
100
- - Default interface: chat-based console
101
- - Future channels: voice, WhatsApp, Slack, email, embedded app widget
102
- - This allows business users and developers to validate agents before attaching them to workflows
103
-
104
- Slide 11: Workflow Integration
105
- Explain:
106
- - Any SolidX workflow can include an Agent Handoff step
107
- - Workflow creates Agent Run
108
- - Agent works asynchronously
109
- - Agent returns result via callback/event
110
- - Workflow continues deterministically
111
-
112
- Include diagram:
113
- Workflow → Agent Handoff → Mini-SWE Agent Run → Result Callback → Workflow Continues
114
-
115
- Slide 12: Strategic Value
116
- Explain the positioning:
117
- - SolidX becomes an enterprise agent platform
118
- - Agents become configurable, reusable, governed, auditable, workflow-aware, tool-aware, and knowledge-aware
119
- - SolidX remains the control plane
120
- - Mini-SWE becomes the execution loop
121
- - Skills provide task expertise
122
- - Tools provide actions
123
- - Knowledge bases provide enterprise context
124
-
125
- End with a strong closing message:
126
- “SolidX AI Agent Builder turns agents from isolated prototypes into governed, reusable enterprise capabilities.”
127
-
128
- Design guidance:
129
- - Use clean enterprise SaaS style
130
- - Prefer diagrams over dense text
131
- - Use simple boxes and arrows
132
- - Use consistent terminology: Agent, Skill, Tool, Knowledge Base, Policy, Agent Run
133
- - Avoid hype-heavy language
134
- - Keep each slide concise
135
- - Add speaker notes for each slide explaining the idea in simple terms
136
- :::
@@ -1,305 +0,0 @@
1
- Here’s a team-ready note you can reuse.
2
-
3
- :::writing{variant="document" id="48291"}
4
- # SolidX AI Agent Builder / Agent Registry Vision
5
-
6
- ## Concept
7
-
8
- The **AI Agent Builder** is a SolidX module that allows teams to define, configure, test, and deploy AI agents as first-class metadata-driven entities.
9
-
10
- The goal is to make agents configurable through SolidX rather than hardcoded in application code.
11
-
12
- Each agent is powered by a **Mini-SWE style runtime loop**, but the behaviour of the agent is controlled by SolidX metadata:
13
-
14
- ```text
15
- Agent Definition
16
- + Skills
17
- + Tools
18
- + Knowledge Base
19
- + Policies
20
- + Output Schema
21
- = Runnable Enterprise Agent
22
- ```
23
-
24
- ---
25
-
26
- ## Module Installation
27
-
28
- The AI Agent Builder can be installed as a standard SolidX module.
29
-
30
- Once installed, it brings its own domain model, such as:
31
-
32
- ```text
33
- Agent
34
- Agent Skill
35
- Agent Tool
36
- Agent Knowledge Base
37
- Agent Policy
38
- Agent Run
39
- Agent Interaction
40
- Tool Call Log
41
- ```
42
-
43
- However, the actual agent configuration can be saved directly into SolidX metadata JSON, instead of requiring every configuration detail to be stored as transactional database rows.
44
-
45
- The database can mainly store runtime records such as:
46
-
47
- ```text
48
- Agent Run
49
- Conversation History
50
- Tool Calls
51
- Execution Logs
52
- Errors
53
- Audit Trail
54
- ```
55
-
56
- ---
57
-
58
- ## Agent Configuration UI
59
-
60
- SolidX can provide either:
61
-
62
- 1. A native SolidX CRUD-style UI, or
63
- 2. A custom Agent Builder UI
64
-
65
- to manage agent artefacts.
66
-
67
- The user can configure:
68
-
69
- ```text
70
- Agent name
71
- Agent description
72
- System instructions
73
- Allowed skills
74
- Allowed tools
75
- Linked knowledge bases
76
- Runtime limits
77
- Approval rules
78
- Output schema
79
- ```
80
-
81
- Example:
82
-
83
- ```text
84
- Customer Support Agent
85
- - Skill: Complaint Handling
86
- - Skill: Refund Policy Interpretation
87
- - Tool: Gmail
88
- - Tool: CRM
89
- - Knowledge Base: Support SOPs
90
- - Runtime: Mini-SWE
91
- ```
92
-
93
- ---
94
-
95
- ## Skills
96
-
97
- A skill represents reusable know-how.
98
-
99
- Examples:
100
-
101
- ```text
102
- Contract Review
103
- Invoice Validation
104
- Customer Escalation Handling
105
- Code Review
106
- Document Classification
107
- ```
108
-
109
- A skill may contain:
110
-
111
- ```text
112
- Instructions
113
- Prompt templates
114
- Examples
115
- Decision criteria
116
- Expected output format
117
- ```
118
-
119
- Skill = **how to think / how to perform a task**
120
-
121
- ---
122
-
123
- ## Tools
124
-
125
- Tools are executable capabilities available to agents.
126
-
127
- Examples:
128
-
129
- ```text
130
- Send Email
131
- Search Gmail
132
- Query Database
133
- Create Ticket
134
- Read File
135
- Call API
136
- Search Knowledge Base
137
- ```
138
-
139
- Tool = **what action the agent can perform**
140
-
141
- SolidX can provide a screen where all registered/discovered tools are visible.
142
-
143
- The tool registry can include:
144
-
145
- ```text
146
- Native SolidX tools
147
- Internal APIs
148
- MCP tools
149
- Composio tools
150
- Custom enterprise tools
151
- ```
152
-
153
- Each tool can have metadata:
154
-
155
- ```text
156
- Name
157
- Description
158
- Input schema
159
- Output schema
160
- Auth mode
161
- Approval requirement
162
- Allowed roles
163
- Provider
164
- ```
165
-
166
- ---
167
-
168
- ## Knowledge Base
169
-
170
- Agents can be linked to one or more knowledge bases.
171
-
172
- Examples:
173
-
174
- ```text
175
- Company policies
176
- Product documentation
177
- Support articles
178
- Technical specifications
179
- SOPs
180
- Contract templates
181
- ```
182
-
183
- This allows each agent to operate with controlled enterprise context.
184
-
185
- ---
186
-
187
- ## Agent Runtime
188
-
189
- Each configured agent is executed as a Mini-SWE loop.
190
-
191
- When invoked, SolidX spawns an agent run and gives it:
192
-
193
- ```text
194
- Goal
195
- User input
196
- Agent metadata
197
- Relevant skills
198
- Available tools
199
- Knowledge context
200
- Policies
201
- Output schema
202
- ```
203
-
204
- The agent then runs autonomously:
205
-
206
- ```text
207
- Plan
208
- Act
209
- Use tool
210
- Observe
211
- Re-plan
212
- Complete
213
- ```
214
-
215
- The workflow engine or UI does not need to understand the internal reasoning loop.
216
-
217
- It only receives the final structured result.
218
-
219
- ---
220
-
221
- ## Test Interface
222
-
223
- Once an agent is configured, users can test it inside SolidX.
224
-
225
- Default interface:
226
-
227
- ```text
228
- Chat-based test console
229
- ```
230
-
231
- Future interfaces:
232
-
233
- ```text
234
- Voice
235
- WhatsApp
236
- Slack
237
- Email
238
- Embedded app widget
239
- ```
240
-
241
- This allows business users and developers to validate the agent before attaching it to workflows.
242
-
243
- ---
244
-
245
- ## Workflow Integration
246
-
247
- Any SolidX workflow can include an Agent Handoff step.
248
-
249
- Example:
250
-
251
- ```text
252
- Workflow Step:
253
- Delegate document review to Document Review Agent
254
- ```
255
-
256
- The workflow creates an Agent Run.
257
-
258
- The agent works asynchronously.
259
-
260
- When completed, it sends back a result.
261
-
262
- The workflow then continues.
263
-
264
- ```text
265
- Workflow
266
-
267
- Agent Handoff
268
-
269
- Mini-SWE Agent Run
270
-
271
- Agent Result
272
-
273
- Workflow Continues
274
- ```
275
-
276
- ---
277
-
278
- ## Strategic Value
279
-
280
- This makes SolidX an enterprise agent platform, not just a workflow or low-code platform.
281
-
282
- The key advantage is that agents become:
283
-
284
- ```text
285
- Configurable
286
- Reusable
287
- Governed
288
- Auditable
289
- Workflow-aware
290
- Tool-aware
291
- Knowledge-aware
292
- ```
293
-
294
- SolidX remains the control plane.
295
-
296
- Mini-SWE becomes the execution loop.
297
-
298
- Tools provide actions.
299
-
300
- Skills provide task expertise.
301
-
302
- Knowledge bases provide enterprise context.
303
-
304
- Together, this creates a metadata-driven framework for building and deploying enterprise-grade AI agents.
305
- :::
@@ -1,301 +0,0 @@
1
- # SolidX AI Agent Builder / Agent Registry Vision
2
-
3
- ## Concept
4
-
5
- The **AI Agent Builder** is a SolidX module that allows teams to define, configure, test, and deploy AI agents as first-class metadata-driven entities.
6
-
7
- The goal is to make agents configurable through SolidX rather than hardcoded in application code.
8
-
9
- Each agent is powered by a **Mini-SWE style runtime loop**, but the behaviour of the agent is controlled by SolidX metadata:
10
-
11
- ```text
12
- Agent Definition
13
- + Skills
14
- + Tools
15
- + Knowledge Base
16
- + Policies
17
- + Output Schema
18
- = Runnable Enterprise Agent
19
- ```
20
-
21
- ---
22
-
23
- ## Module Installation
24
-
25
- The AI Agent Builder can be installed as a standard SolidX module.
26
-
27
- Once installed, it brings its own domain model, such as:
28
-
29
- ```text
30
- Agent
31
- Agent Skill
32
- Agent Tool
33
- Agent Knowledge Base
34
- Agent Policy
35
- Agent Run
36
- Agent Interaction
37
- Tool Call Log
38
- ```
39
-
40
- However, the actual agent configuration can be saved directly into SolidX metadata JSON, instead of requiring every configuration detail to be stored as transactional database rows.
41
-
42
- The database can mainly store runtime records such as:
43
-
44
- ```text
45
- Agent Run
46
- Conversation History
47
- Tool Calls
48
- Execution Logs
49
- Errors
50
- Audit Trail
51
- ```
52
-
53
- ---
54
-
55
- ## Agent Configuration UI
56
-
57
- SolidX can provide either:
58
-
59
- 1. A native SolidX CRUD-style UI, or
60
- 2. A custom Agent Builder UI
61
-
62
- to manage agent artefacts.
63
-
64
- The user can configure:
65
-
66
- ```text
67
- Agent name
68
- Agent description
69
- System instructions
70
- Allowed skills
71
- Allowed tools
72
- Linked knowledge bases
73
- Runtime limits
74
- Approval rules
75
- Output schema
76
- ```
77
-
78
- Example:
79
-
80
- ```text
81
- Customer Support Agent
82
- - Skill: Complaint Handling
83
- - Skill: Refund Policy Interpretation
84
- - Tool: Gmail
85
- - Tool: CRM
86
- - Knowledge Base: Support SOPs
87
- - Runtime: Mini-SWE
88
- ```
89
-
90
- ---
91
-
92
- ## Skills
93
-
94
- A skill represents reusable know-how.
95
-
96
- Examples:
97
-
98
- ```text
99
- Contract Review
100
- Invoice Validation
101
- Customer Escalation Handling
102
- Code Review
103
- Document Classification
104
- ```
105
-
106
- A skill may contain:
107
-
108
- ```text
109
- Instructions
110
- Prompt templates
111
- Examples
112
- Decision criteria
113
- Expected output format
114
- ```
115
-
116
- Skill = **how to think / how to perform a task**
117
-
118
- ---
119
-
120
- ## Tools
121
-
122
- Tools are executable capabilities available to agents.
123
-
124
- Examples:
125
-
126
- ```text
127
- Send Email
128
- Search Gmail
129
- Query Database
130
- Create Ticket
131
- Read File
132
- Call API
133
- Search Knowledge Base
134
- ```
135
-
136
- Tool = **what action the agent can perform**
137
-
138
- SolidX can provide a screen where all registered/discovered tools are visible.
139
-
140
- The tool registry can include:
141
-
142
- ```text
143
- Native SolidX tools
144
- Internal APIs
145
- MCP tools
146
- Composio tools
147
- Custom enterprise tools
148
- ```
149
-
150
- Each tool can have metadata:
151
-
152
- ```text
153
- Name
154
- Description
155
- Input schema
156
- Output schema
157
- Auth mode
158
- Approval requirement
159
- Allowed roles
160
- Provider
161
- ```
162
-
163
- ---
164
-
165
- ## Knowledge Base
166
-
167
- Agents can be linked to one or more knowledge bases.
168
-
169
- Examples:
170
-
171
- ```text
172
- Company policies
173
- Product documentation
174
- Support articles
175
- Technical specifications
176
- SOPs
177
- Contract templates
178
- ```
179
-
180
- This allows each agent to operate with controlled enterprise context.
181
-
182
- ---
183
-
184
- ## Agent Runtime
185
-
186
- Each configured agent is executed as a Mini-SWE loop.
187
-
188
- When invoked, SolidX spawns an agent run and gives it:
189
-
190
- ```text
191
- Goal
192
- User input
193
- Agent metadata
194
- Relevant skills
195
- Available tools
196
- Knowledge context
197
- Policies
198
- Output schema
199
- ```
200
-
201
- The agent then runs autonomously:
202
-
203
- ```text
204
- Plan
205
- Act
206
- Use tool
207
- Observe
208
- Re-plan
209
- Complete
210
- ```
211
-
212
- The workflow engine or UI does not need to understand the internal reasoning loop.
213
-
214
- It only receives the final structured result.
215
-
216
- ---
217
-
218
- ## Test Interface
219
-
220
- Once an agent is configured, users can test it inside SolidX.
221
-
222
- Default interface:
223
-
224
- ```text
225
- Chat-based test console
226
- ```
227
-
228
- Future interfaces:
229
-
230
- ```text
231
- Voice
232
- WhatsApp
233
- Slack
234
- Email
235
- Embedded app widget
236
- ```
237
-
238
- This allows business users and developers to validate the agent before attaching it to workflows.
239
-
240
- ---
241
-
242
- ## Workflow Integration
243
-
244
- Any SolidX workflow can include an Agent Handoff step.
245
-
246
- Example:
247
-
248
- ```text
249
- Workflow Step:
250
- Delegate document review to Document Review Agent
251
- ```
252
-
253
- The workflow creates an Agent Run.
254
-
255
- The agent works asynchronously.
256
-
257
- When completed, it sends back a result.
258
-
259
- The workflow then continues.
260
-
261
- ```text
262
- Workflow
263
-
264
- Agent Handoff
265
-
266
- Mini-SWE Agent Run
267
-
268
- Agent Result
269
-
270
- Workflow Continues
271
- ```
272
-
273
- ---
274
-
275
- ## Strategic Value
276
-
277
- This makes SolidX an enterprise agent platform, not just a workflow or low-code platform.
278
-
279
- The key advantage is that agents become:
280
-
281
- ```text
282
- Configurable
283
- Reusable
284
- Governed
285
- Auditable
286
- Workflow-aware
287
- Tool-aware
288
- Knowledge-aware
289
- ```
290
-
291
- SolidX remains the control plane.
292
-
293
- Mini-SWE becomes the execution loop.
294
-
295
- Tools provide actions.
296
-
297
- Skills provide task expertise.
298
-
299
- Knowledge bases provide enterprise context.
300
-
301
- Together, this creates a metadata-driven framework for building and deploying enterprise-grade AI agents.