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
18 changes: 18 additions & 0 deletions .claude-plugin/marketplace.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://anthropic.com/claude-code/marketplace.schema.json",
"name": "awos",
"version": "1.0.0",
"description": "Bundled plugins for Claude Code",
"owner": {
"name": "Provectus IT, Inc.",
"email": "opensource@provectus.com"
},
"plugins": [
{
"name": "prototype-prompt",
"description": "Generates AI-optimized prompt for UI prototyping tools (Figma Make, v0, Bolt.new, Lovable)",
"source": "./plugins/prototype-prompt",
"category": "development"
}
]
}
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ npx @provectusinc/awos

That's it! By following these steps, you can systematically turn your vision into a well-defined and fully implemented product.

**💡 Pro tip:** Check out the [plugins directory](plugins/) for optional extensions like the UI prototyping prompt generator - they can add extra superpowers to your workflow!

## The `awos` Philosophy

The **`awos`** framework is built on a simple but powerful idea: AI agents, like human developers, need clear context to do great work. Without a structured plan, even the most advanced LLM can act like a confused intern. **`awos`** provides a step-by-step workflow that transforms your vision into a detailed blueprint that AI agents can understand and execute flawlessly. This process ensures the AI's incredible speed is channeled into building the right software, correctly, on the first try.
Expand All @@ -100,6 +102,8 @@ The **`awos`** workflow is built on a clear document structure that creates a tr

- 🔌 **Extensibility Hooks**: An advanced system for customization. Hooks and other configuration points allow you to modify and extend the framework to fit your team's specific workflow and needs (more decisions on this is coming soon).

- 🧩 **Plugin Ecosystem**: Optional plugins that extend **`awos`** with additional capabilities beyond the core workflow. ➡️ [View available plugins](plugins/)

## Customizing `awos`

The **`awos`** framework is designed to be both powerful out-of-the-box and highly customizable. Understanding how to safely customize the framework is key to making it work perfectly for your team.
Expand Down
40 changes: 40 additions & 0 deletions plugins/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Claude Code Plugins

This directory contains some Claude Code plugins that extend functionality through custom commands, agents, and workflows.
Copy link

Copilot AI Dec 10, 2025

Choose a reason for hiding this comment

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

[nitpick] The phrase "extend functionality" is vague. Consider being more specific about what gets extended, such as "extend Claude Code functionality" or "extend the AWOS framework" to clarify whether this refers to Claude Code or AWOS itself.

Suggested change
This directory contains some Claude Code plugins that extend functionality through custom commands, agents, and workflows.
This directory contains some Claude Code plugins that extend Claude Code functionality through custom commands, agents, and workflows.

Copilot uses AI. Check for mistakes.

## What are Claude Code Plugins?

Claude Code plugins are extensions that enhance Claude Code with custom slash commands, specialized agents, hooks, and MCP servers. Plugins can be shared across projects and teams, providing consistent tooling and workflows.

Learn more in the [official plugins documentation](https://docs.claude.com/en/docs/claude-code/plugins).

## Installation

1. **Add the marketplace:**

```
/plugin marketplace add provectus/awos
```

2. **Install a specific plugin:**
```
/plugin install plugin-name@awos
```

## Plugins in This Directory

### [prototype-prompt](./prototype-prompt/)

**UI Prototyping Prompt Generator**

#### Overview

- **What it does**: Generates a comprehensive, AI-optimized prompt for UI prototyping tools by synthesizing architecture documents and feature specifications.
- **When to use**: After `/awos:architecture` for basic prototype, or after a series of `/awos:spec` commands for detailed prototype
- **Audience**: UI/UX Designer (Non-Technical)

#### How to use

- **Installation**: `/plugin install prototype-prompt@awos`
- **Command**: `/awos:prototype-prompt:run` - Interactive workflow that creates a prototype prompt
- **Output**: `context/product/prototype-prompt.md` - Ready-to-use prompt for Figma Make, v0, Lovable, Bolt.new
5 changes: 5 additions & 0 deletions plugins/prototype-prompt/.claude-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"name": "awos:prototype-prompt",
"description": "Generates AI-optimized prompt for UI prototyping tools (Figma Make, v0, Bolt.new, Lovable)",
"version": "1.0.0"
}
Loading
Loading