@axonpush/wizard 0.0.5 → 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 +30 -11
- package/dist/bin.js +21632 -12151
- package/package.json +44 -5
- package/skills/anthropic/SKILL.md +4 -0
- package/skills/crewai/SKILL.md +4 -0
- package/skills/{core → custom}/SKILL.md +8 -4
- package/skills/deepagents/SKILL.md +61 -0
- package/skills/langchain/SKILL.md +4 -0
- package/skills/openai-agents/SKILL.md +4 -0
- package/skills/otel-python/SKILL.md +96 -0
- package/skills/otel-ts/SKILL.md +89 -0
- package/skills/ts-anthropic/SKILL.md +51 -0
- package/skills/ts-custom/SKILL.md +46 -0
- package/skills/ts-google-adk/SKILL.md +52 -0
- package/skills/ts-langchain/SKILL.md +50 -0
- package/skills/ts-langgraph/SKILL.md +46 -0
- package/skills/ts-llamaindex/SKILL.md +52 -0
- package/skills/ts-mastra/SKILL.md +51 -0
- package/skills/ts-openai-agents/SKILL.md +45 -0
- package/skills/ts-vercel-ai/SKILL.md +52 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @axonpush/wizard
|
|
2
2
|
|
|
3
|
-
AI-powered wizard that integrates the [AxonPush](https://
|
|
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
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
--
|
|
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:
|
|
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
|
-
--
|
|
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
|
-
|
|
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
|
-
|
|
|
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
|