@stratix/ai-anthropic 0.5.0 → 0.6.1

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 +9 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,10 +3,11 @@
3
3
 
4
4
  # @stratix/ai-anthropic
5
5
 
6
- **Anthropic Claude LLM provider for Stratix AI agents**
6
+ **🔧 Provider** | Anthropic Claude LLM provider for Stratix AI agents
7
7
 
8
8
  [![npm version](https://img.shields.io/npm/v/@stratix/ai-anthropic.svg)](https://www.npmjs.com/package/@stratix/ai-anthropic)
9
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
10
+ [![Type: Provider](https://img.shields.io/badge/Type-Provider-blue.svg)](https://stratix-dev.github.io/stratix/docs/providers/providers-overview)
10
11
 
11
12
  [Documentation](https://stratix-dev.github.io/stratix/) | [Getting Started](https://stratix-dev.github.io/stratix/docs/getting-started/quick-start)
12
13
 
@@ -20,9 +21,11 @@
20
21
 
21
22
  ## About This Package
22
23
 
23
- `@stratix/ai-anthropic` is a AI provider plugin for the Stratix framework.
24
+ `@stratix/ai-anthropic` is an **AI provider** (not a plugin) that implements the `LLMProvider` interface from `@stratix/core`.
24
25
 
25
- Anthropic Claude LLM provider for Stratix AI agents
26
+ > **Provider vs Plugin:** Providers implement core interfaces and are instantiated directly. Plugins manage external resources and have a lifecycle. [Learn more](https://stratix-dev.github.io/stratix/docs/providers/providers-overview)
27
+
28
+ This provider enables Stratix AI agents to use Anthropic's Claude models (Opus, Sonnet, Haiku) for chat completion, streaming, and tool calling.
26
29
 
27
30
  ## About Stratix
28
31
 
@@ -57,13 +60,14 @@ npm install @stratix/ai-anthropic
57
60
  - [`@stratix/runtime`](https://www.npmjs.com/package/@stratix/runtime) - Application runtime and plugin system
58
61
  - [`@stratix/cli`](https://www.npmjs.com/package/@stratix/cli) - Code generation and scaffolding
59
62
 
60
- [View all plugins](https://stratix-dev.github.io/stratix/docs/plugins/official-plugins)
63
+ [View all providers](https://stratix-dev.github.io/stratix/docs/providers/ai-providers)
61
64
 
62
65
  ## Documentation
63
66
 
64
67
  - [Getting Started](https://stratix-dev.github.io/stratix/docs/getting-started/quick-start)
65
68
  - [Core Concepts](https://stratix-dev.github.io/stratix/docs/core-concepts/architecture-overview)
66
- - [Plugin Architecture](https://stratix-dev.github.io/stratix/docs/plugins/plugin-architecture)
69
+ - [AI Providers](https://stratix-dev.github.io/stratix/docs/providers/ai-providers)
70
+ - [Providers Overview](https://stratix-dev.github.io/stratix/docs/providers/providers-overview)
67
71
  - [Complete Documentation](https://stratix-dev.github.io/stratix/)
68
72
 
69
73
  ## Support
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stratix/ai-anthropic",
3
- "version": "0.5.0",
3
+ "version": "0.6.1",
4
4
  "description": "Stratix AI Agents - Anthropic Provider",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",