@axonpush/wizard 0.0.4 → 0.0.6

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @axonpush/wizard
2
2
 
3
- AI-powered wizard that integrates the [AxonPush](https://github.com/axonpush/python-sdk) Python SDK into your AI agent project using Claude Code.
3
+ AI-powered wizard that integrates the [AxonPush](https://axonpush.xyz) SDK into your AI agent project using Claude Code. Supports both Python and TypeScript projects.
4
4
 
5
5
  ## Usage
6
6
 
@@ -9,17 +9,19 @@ npx @axonpush/wizard
9
9
  ```
10
10
 
11
11
  The wizard will:
12
- 1. Detect your project's AI framework (LangChain, OpenAI Agents, Anthropic, CrewAI)
13
- 2. Ask for your AxonPush credentials
14
- 3. Use Claude Code to install the SDK and add integration code to your project
12
+
13
+ 1. Detect your project language (Python or TypeScript) and AI framework
14
+ 2. Ask for your AxonPush credentials (browser login or manual API key)
15
+ 3. Use Claude Code to install the SDK, create apps/channels, and add integration code
15
16
 
16
17
  ## Options
17
18
 
18
19
  ```
19
- --integration, -i Framework (langchain, openai-agents, anthropic, crewai, core)
20
+ --language, -l Project language (python, typescript). Auto-detected if omitted.
21
+ --integration, -i Framework integration(s), comma-separated. See tables below.
20
22
  --api-key AxonPush API key
21
23
  --tenant-id AxonPush tenant/organization ID
22
- --base-url AxonPush server URL (default: http://localhost:3000)
24
+ --base-url AxonPush server URL (default: https://api.axonpush.xyz)
23
25
  --install-dir Project directory (default: current directory)
24
26
  ```
25
27
 
@@ -27,23 +29,40 @@ The wizard will:
27
29
 
28
30
  ```bash
29
31
  npx @axonpush/wizard \
30
- --integration langchain \
32
+ --language typescript \
33
+ --integration vercel-ai \
31
34
  --api-key ak_your_key \
32
35
  --tenant-id 1
33
36
  ```
34
37
 
35
38
  ## Supported Frameworks
36
39
 
37
- | Framework | Extra | Integration |
38
- |-----------|-------|-------------|
40
+ ### Python
41
+
42
+ | Framework | Install | Integration |
43
+ |-----------|---------|-------------|
39
44
  | LangChain / LangGraph | `axonpush[langchain]` | Callback handler for chains and agents |
40
45
  | OpenAI Agents SDK | `axonpush[openai-agents]` | Run hooks for agent lifecycle |
41
46
  | Anthropic / Claude | `axonpush[anthropic]` | Tracer wrapping messages.create() |
42
47
  | CrewAI | `axonpush[crewai]` | Step and task callbacks |
43
- | Core SDK | `axonpush` | Direct event publishing |
48
+ | Deep Agents | `axonpush[deepagents]` | Callback handler with deep agent awareness |
49
+ | Custom | `axonpush` | Direct event publishing |
50
+
51
+ ### TypeScript
52
+
53
+ | Framework | Install | Integration |
54
+ |-----------|---------|-------------|
55
+ | LangChain | `@axonpush/sdk` | `AxonPushCallbackHandler` for chains and agents |
56
+ | LangGraph | `@axonpush/sdk` | `AxonPushLangGraphHandler` with graph node tracing |
57
+ | OpenAI Agents SDK | `@axonpush/sdk` | `AxonPushRunHooks` for agent lifecycle |
58
+ | Anthropic / Claude | `@axonpush/sdk` | `AxonPushAnthropicTracer` wrapping messages.create() |
59
+ | Vercel AI SDK | `@axonpush/sdk` | `axonPushMiddleware` for generateText/streamText |
60
+ | Mastra | `@axonpush/sdk` | `AxonPushMastraHooks` for workflows and tools |
61
+ | Google ADK | `@axonpush/sdk` | `axonPushADKCallbacks` for agent/model/tool lifecycle |
62
+ | LlamaIndex | `@axonpush/sdk` | `AxonPushLlamaIndexHandler` for queries and retrieval |
63
+ | Custom | `@axonpush/sdk` | Direct event publishing via `client.events.publish()` |
44
64
 
45
65
  ## Requirements
46
66
 
47
67
  - Node.js 20+
48
68
  - Claude Code CLI installed and authenticated
49
- - A Python project to integrate into