@skilder-ai/runtime 0.4.4
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/CHANGELOG.md +55 -0
- package/LICENSE.txt +0 -0
- package/README.md +31 -0
- package/dist/index.js +121321 -0
- package/dist/index.js.map +7 -0
- package/package.json +70 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to the `@skilder-ai/runtime` package will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
## [0.0.3] - 2025-09-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- Initial release of @skilder-ai/runtime package
|
|
14
|
+
- Backend with NATS bus and Dgraph database
|
|
15
|
+
- NodeJS runtime to connect agents (via MCP) and to execute tool calls
|
|
16
|
+
- MCP (Model Context Protocol) server integration
|
|
17
|
+
- Dependency injection using Inversify
|
|
18
|
+
- Service-based architecture with clear boundaries
|
|
19
|
+
- TypeScript support with proper type definitions
|
|
20
|
+
- Runtime executable via `npx @skilder-ai/runtime`
|
|
21
|
+
- Docker support for containerized deployment
|
|
22
|
+
|
|
23
|
+
### Technical Details
|
|
24
|
+
- Built with esbuild for fast compilation
|
|
25
|
+
- Uses PSR-12 coding standards for maintainability
|
|
26
|
+
- Implements clean architecture principles
|
|
27
|
+
- Supports environment-based configuration
|
|
28
|
+
- Includes comprehensive logging and error handling
|
|
29
|
+
|
|
30
|
+
---
|
|
31
|
+
|
|
32
|
+
## Version Legend
|
|
33
|
+
|
|
34
|
+
- **MAJOR**: Breaking changes that require migration
|
|
35
|
+
- **MINOR**: New features that are backward compatible
|
|
36
|
+
- **PATCH**: Bug fixes and minor improvements
|
|
37
|
+
|
|
38
|
+
## Contributing
|
|
39
|
+
|
|
40
|
+
When adding entries to this changelog, please follow these guidelines:
|
|
41
|
+
|
|
42
|
+
1. **Use present tense** ("Add feature" not "Added feature")
|
|
43
|
+
2. **Reference issues and pull requests** when applicable
|
|
44
|
+
3. **Group changes by type**: Added, Changed, Deprecated, Removed, Fixed, Security
|
|
45
|
+
4. **Be descriptive** but concise
|
|
46
|
+
5. **Include breaking changes** prominently at the top of the version section
|
|
47
|
+
|
|
48
|
+
### Change Types
|
|
49
|
+
|
|
50
|
+
- **Added**: New features
|
|
51
|
+
- **Changed**: Changes in existing functionality
|
|
52
|
+
- **Deprecated**: Soon-to-be removed features
|
|
53
|
+
- **Removed**: Removed features
|
|
54
|
+
- **Fixed**: Bug fixes
|
|
55
|
+
- **Security**: Vulnerability fixes
|
package/LICENSE.txt
ADDED
|
File without changes
|
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Skilder - Runtime
|
|
2
|
+
|
|
3
|
+
Runtime process for [Skilder](https://github.com/skilder-ai/skilder) instances. Typically used to consume Skilder as MCP Server from an agent or to execute tool calls on the edge.
|
|
4
|
+
|
|
5
|
+
## Run as MCP Server
|
|
6
|
+
|
|
7
|
+
Add the following configuration in your MCP Client. This will run an "agent" on Skilder where you'll be able to add any tools from your instance.
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"mcpServers": {
|
|
12
|
+
"skilder": {
|
|
13
|
+
"command": "npx",
|
|
14
|
+
"args": ["@skilder-ai/runtime"],
|
|
15
|
+
"env": {
|
|
16
|
+
"RUNTIME_NAME": "<GIVE_A_NAME_HERE>"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Run as a tool executor
|
|
24
|
+
|
|
25
|
+
Execute the following command in your terminal:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
RUNTIME_NAME=<GIVE_A_NAME_HERE> npx @skilder-ai/runtime
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
This will start a long-living node process with the ability to host MCP Servers and execute their tools from this runtime.
|