@amodalai/core 0.1.1 → 0.1.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 (2) hide show
  1. package/README.md +26 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @amodalai/core
2
+
3
+ The agent runtime engine. Handles the ReAct loop, tool execution, skill activation, knowledge retrieval, LLM provider dispatch, and security guardrails.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @amodalai/core
9
+ ```
10
+
11
+ ## What it does
12
+
13
+ - Config-driven agent loop (explore → plan → execute)
14
+ - Multi-provider LLM support (Anthropic, OpenAI, Google Gemini, AWS Bedrock, Azure OpenAI)
15
+ - Tool system (HTTP, chain, function, MCP)
16
+ - Skills and knowledge base
17
+ - Audit logging, credential scrubbing, role-based access
18
+ - Evaluation framework
19
+
20
+ ## Documentation
21
+
22
+ [docs.amodalai.com](https://docs.amodalai.com)
23
+
24
+ ## License
25
+
26
+ [MIT](../../LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@amodalai/core",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "Amodal agent runtime core",
5
5
  "license": "MIT",
6
6
  "repository": {