@@ -27,7 +27,7 @@ This guide walks you through installing **apcore-toolkit** and using its core mo
2727=== "TypeScript"
2828
2929 ```bash
30- npm install @anthropic/ apcore-toolkit
30+ npm install apcore-toolkit
3131 ```
3232
3333---
@@ -65,7 +65,7 @@ The `BaseScanner` provides the foundation for extracting metadata from any frame
6565=== "TypeScript"
6666
6767 ```typescript
68- import { BaseScanner, ScannedModule } from "@anthropic/ apcore-toolkit";
68+ import { BaseScanner, ScannedModule } from "apcore-toolkit";
6969
7070 class MyScanner extends BaseScanner {
7171 scan(): ScannedModule[] {
@@ -139,7 +139,7 @@ Generates `.binding.yaml` files for `apcore.BindingLoader`.
139139=== "TypeScript"
140140
141141 ```typescript
142- import { YAMLWriter } from "@anthropic/ apcore-toolkit";
142+ import { YAMLWriter } from "apcore-toolkit";
143143
144144 const writer = new YAMLWriter();
145145 writer.write(modules, { outputDir: "./bindings" });
@@ -161,7 +161,7 @@ Generates decorator-based wrapper files for your language.
161161=== "TypeScript"
162162
163163 ```typescript
164- import { TypeScriptWriter } from "@anthropic/ apcore-toolkit";
164+ import { TypeScriptWriter } from "apcore-toolkit";
165165
166166 const writer = new TypeScriptWriter();
167167 writer.write(modules, { outputDir: "./generated" });
@@ -186,7 +186,7 @@ Registers modules directly into an active `apcore.Registry`.
186186
187187 ```typescript
188188 import { Registry } from "@anthropic/apcore";
189- import { RegistryWriter } from "@anthropic/ apcore-toolkit";
189+ import { RegistryWriter } from "apcore-toolkit";
190190
191191 const registry = new Registry();
192192 const writer = new RegistryWriter();
@@ -218,7 +218,7 @@ Flatten complex models into scalar keyword arguments, perfect for MCP (Model Con
218218=== "TypeScript"
219219
220220 ```typescript
221- import { flattenParams, resolveTarget } from "@anthropic/ apcore-toolkit";
221+ import { flattenParams, resolveTarget } from "apcore-toolkit";
222222
223223 // Resolve a target string to a callable
224224 const func = resolveTarget("myapp/views:createTask");
@@ -243,7 +243,7 @@ Extract JSON Schemas directly from OpenAPI operation objects.
243243=== "TypeScript"
244244
245245 ```typescript
246- import { extractInputSchema, extractOutputSchema } from "@anthropic/ apcore-toolkit/openapi";
246+ import { extractInputSchema, extractOutputSchema } from "apcore-toolkit/openapi";
247247
248248 const inputSchema = extractInputSchema(operation, openapiDoc);
249249 const outputSchema = extractOutputSchema(operation, openapiDoc);
0 commit comments