Skip to content
Merged
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
16 changes: 16 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "makingchatbots-genesys-cloud-architect",
"owner": {
"name": "Lucas Woodward",
"url": "https://makingchatbots.com/"
},
"description": "Plugins for the full life-cycle of creating Genesys Cloud Architect flows with Claude Code",
"plugins": [
{
"name": "genesys-cloud-architect",
"source": "./",
"description": "Create, test, and debug Genesys Cloud Architect flows",
"version": "1.0.0"
}
]
}
32 changes: 22 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,31 @@
# Genesys Cloud Architect Claude Code Plugin

## Development

Test the plugin locally:
Create, debug and test Genesys Cloud Architect Flows using Claude Code.

```shell
CLAUDE_PLUGIN_ROOT=$(pwd) claude --plugin-dir .
```
**This is under heavy development. Feedback is welcome!**

To aid in the development of the MCP server install the MCP Server Skill:
## Installation

```
npx skills add https://github.com/anthropics/claude-plugins-official/tree/main/plugins/mcp-server-dev/skills/build-mcp-server
# Add the marketplace
/plugin marketplace add MakingChatbots/genesys-cloud-architect

# Install the plugin
/plugin install genesys-cloud-architect@makingchatbots
```

Claude Code plugin for developing plugins
## Getting Started

Once you've installed the plugin you can start working with Claude Code to create your Architect flows.

Try some of the following examples:

> Create a Digital Chatbot that asks the customer for their name, then welcomes them by their name.


## Development

Docs to help understand how this works, or contribute:

https://github.com/anthropics/claude-code/tree/main/plugins/plugin-dev
* [docs/development.md](docs/development.md)
* [docs/architecture.md](docs/architecture.md)
1 change: 1 addition & 0 deletions docs/architecture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Architecture
23 changes: 23 additions & 0 deletions docs/development.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Development

Test the plugin locally:

```shell
CLAUDE_PLUGIN_ROOT=$(pwd) claude --plugin-dir .
```

Debug the plugin:

```shell
CLAUDE_PLUGIN_ROOT=$(pwd) claude --plugin-dir . --debug
```

To aid in the development of the MCP server install the MCP Server Skill:

```
npx skills add https://github.com/anthropics/claude-plugins-official/tree/main/plugins/mcp-server-dev/skills/build-mcp-server
```

Claude Code plugin for developing plugins

https://github.com/anthropics/claude-code/tree/main/plugins/plugin-dev
Loading