Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ This plugin includes [Cloudflare's remote MCP servers](https://developers.cloudf

| Server | Purpose |
|--------|---------|
| cloudflare-api | Token-efficient access to the Cloudflare API |
| cloudflare-docs | Up-to-date Cloudflare documentation and reference |
| cloudflare-bindings | Build Workers applications with storage, AI, and compute primitives |
| cloudflare-builds | Manage and get insights into Workers builds |
Expand Down
16 changes: 8 additions & 8 deletions commands/build-agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ The user invoked this command with: $ARGUMENTS

When this command is invoked:

1. Read the skill file at `building-ai-agent-on-cloudflare/SKILL.md` for core guidance
2. Reference `building-ai-agent-on-cloudflare/references/examples.md` for templates
3. Use `building-ai-agent-on-cloudflare/references/agent-patterns.md` for tool calling and patterns
4. Use `building-ai-agent-on-cloudflare/references/state-patterns.md` for state management
5. Consult `building-ai-agent-on-cloudflare/references/troubleshooting.md` for common issues
1. Read the skill file at `skills/building-ai-agent-on-cloudflare/SKILL.md` for core guidance
2. Reference `skills/building-ai-agent-on-cloudflare/references/examples.md` for templates
3. Use `skills/building-ai-agent-on-cloudflare/references/agent-patterns.md` for tool calling and patterns
4. Use `skills/building-ai-agent-on-cloudflare/references/state-patterns.md` for state management
5. Consult `skills/building-ai-agent-on-cloudflare/references/troubleshooting.md` for common issues

## Capabilities

Expand All @@ -34,7 +34,7 @@ When this command is invoked:
## Example Usage

```
/build-agent a customer support chatbot
/build-agent real-time coding assistant with WebSocket
/build-agent multi-agent workflow orchestrator
/cloudflare:build-agent a customer support chatbot
/cloudflare:build-agent real-time coding assistant with WebSocket
/cloudflare:build-agent multi-agent workflow orchestrator

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

testing this out to make sure right

```
14 changes: 7 additions & 7 deletions commands/build-mcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ The user invoked this command with: $ARGUMENTS

When this command is invoked:

1. Read the skill file at `building-mcp-server-on-cloudflare/SKILL.md` for core guidance
2. Reference `building-mcp-server-on-cloudflare/references/examples.md` for official templates
3. Use `building-mcp-server-on-cloudflare/references/oauth-setup.md` for security and OAuth
4. Consult `building-mcp-server-on-cloudflare/references/troubleshooting.md` for common issues
1. Read the skill file at `skills/building-mcp-server-on-cloudflare/SKILL.md` for core guidance
2. Reference `skills/building-mcp-server-on-cloudflare/references/examples.md` for official templates
3. Use `skills/building-mcp-server-on-cloudflare/references/oauth-setup.md` for security and OAuth
4. Consult `skills/building-mcp-server-on-cloudflare/references/troubleshooting.md` for common issues

## Capabilities

Expand All @@ -32,7 +32,7 @@ When this command is invoked:
## Example Usage

```
/build-mcp a GitHub integration server
/build-mcp database query tool with OAuth
/build-mcp file management MCP server
/cloudflare:build-mcp a GitHub integration server
/cloudflare:build-mcp database query tool with OAuth
/cloudflare:build-mcp file management MCP server
```
1 change: 0 additions & 1 deletion skills/building-mcp-server-on-cloudflare/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,5 +270,4 @@ id = "xxx"

- [references/examples.md](references/examples.md) — Official templates and production examples
- [references/oauth-setup.md](references/oauth-setup.md) — OAuth provider configuration
- [references/tool-patterns.md](references/tool-patterns.md) — Advanced tool examples
- [references/troubleshooting.md](references/troubleshooting.md) — Error codes and fixes
5 changes: 2 additions & 3 deletions skills/cloudflare/references/durable-objects/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,8 @@ npx wrangler deploy # Deploy + auto-apply migrations

## Resources

**Docs**: https://developers.cloudflare.com/durable-objects/
**API Reference**: https://developers.cloudflare.com/durable-objects/api/
**Docs**: https://developers.cloudflare.com/durable-objects/
**API Reference**: https://developers.cloudflare.com/durable-objects/api/
**Examples**: https://developers.cloudflare.com/durable-objects/examples/

## In This Reference
Expand All @@ -182,4 +182,3 @@ npx wrangler deploy # Deploy + auto-apply migrations

- **[DO Storage](../do-storage/README.md)** - SQLite, KV, transactions (detailed storage guide)
- **[Workers](../workers/README.md)** - Core Workers runtime features
- **[WebSockets](../websockets/README.md)** - WebSocket APIs and patterns
4 changes: 1 addition & 3 deletions skills/cloudflare/references/tunnel/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,4 @@ ingress:

## See Also

- [workers](../workers/) - Workers with Tunnel integration
- [access](../access/) - Zero Trust access policies
- [warp](../warp/) - WARP client for private networks
- [workers](../workers/README.md) - Workers with Tunnel integration
8 changes: 7 additions & 1 deletion skills/cloudflare/references/wrangler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ wrangler tail --status error # Filter by status

## In This Reference

- Authentication troubleshooting (`wrangler login`, `wrangler whoami`) is covered in [gotchas.md](./gotchas.md)
- [configuration.md](./configuration.md) - wrangler.jsonc setup, environments, bindings
- [api.md](./api.md) - Programmatic API (`startWorker`, `getPlatformProxy`, events)
- [patterns.md](./patterns.md) - Common workflows and development patterns
Expand All @@ -125,7 +126,12 @@ Need to configure something?
Development not working?
├─ Local differs from production → Use `wrangler dev --remote`
├─ Bindings not available → gotchas.md §Binding Not Available
└─ Auth issues → wrangler login
└─ Auth issues → gotchas.md §Authentication Issues

Authentication issues?
├─ "Not logged in" / "Unauthorized" → gotchas.md §Authentication Issues
├─ First time deploying → `wrangler login`
└─ Confirm active account → `wrangler whoami`
```

## See Also
Expand Down