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
6 changes: 3 additions & 3 deletions .aiox-core/core/docs/component-creation-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,16 +397,16 @@ This shows:

### Getting Help

1. **Check component examples**: `aiox-core/agents/examples/`
2. **Review templates**: `aiox-core/templates/`
1. **Check component examples**: `.aiox-core/development/agents/examples/`
2. **Review templates**: `.aiox-core/product/templates/`
3. **Run validation**: `*validate-component`
4. **Ask meta-agent**: `*help create-agent`

## Advanced Features

### Custom Templates

Create custom templates in `aiox-core/templates/custom/`:
Create custom templates in `.aiox-core/product/templates/custom/`:

```yaml
# custom-agent-template.yaml
Expand Down
16 changes: 8 additions & 8 deletions .aiox-core/data/aiox-kb.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,31 +349,31 @@ The AIOX-Method is built around a modular architecture centered on the `aiox-cor

### Key Architectural Components

#### 1. Agents (`aiox-core/agents/`)
#### 1. Agents (`.aiox-core/development/agents/`)

- **Purpose**: Each markdown file defines a specialized AI agent for a specific Agile role (PM, Dev, Architect, etc.)
- **Structure**: Contains YAML headers specifying the agent's persona, capabilities, and dependencies
- **Dependencies**: Lists of tasks, templates, checklists, and data files the agent can use
- **Startup Instructions**: Can load project-specific documentation for immediate context

#### 2. Agent Teams (`aiox-core/agent-teams/`)
#### 2. Agent Teams (`.aiox-core/development/agent-teams/`)

- **Purpose**: Define collections of agents bundled together for specific purposes
- **Examples**: `team-all.yaml` (comprehensive bundle), `team-fullstack.yaml` (full-stack development)
- **Usage**: Creates pre-packaged contexts for web UI environments

#### 3. Workflows (`aiox-core/workflows/`)
#### 3. Workflows (`.aiox-core/development/workflows/`)

- **Purpose**: YAML files defining prescribed sequences of steps for specific project types
- **Types**: Greenfield (new projects) and Brownfield (existing projects) for UI, service, and fullstack development
- **Structure**: Defines agent interactions, artifacts created, and transition conditions

#### 4. Reusable Resources

- **Templates** (`aiox-core/templates/`): Markdown templates for PRDs, architecture specs, user stories
- **Tasks** (`aiox-core/tasks/`): Instructions for specific repeatable actions like "shard-doc" or "create-next-story"
- **Checklists** (`aiox-core/checklists/`): Quality assurance checklists for validation and review
- **Data** (`aiox-core/data/`): Core knowledge base and technical preferences
- **Templates** (`.aiox-core/product/templates/`): Markdown templates for PRDs, architecture specs, user stories
- **Tasks** (`.aiox-core/development/tasks/`): Instructions for specific repeatable actions like "shard-doc" or "create-next-story"
- **Checklists** (`.aiox-core/product/checklists/`): Quality assurance checklists for validation and review
- **Data** (`.aiox-core/data/`): Core knowledge base and technical preferences

### Dual Environment Architecture

Expand Down Expand Up @@ -756,7 +756,7 @@ custom_fields:

**Where to find examples:**
- Complete workflow: `aiox-core/tools/mcp/clickup.yaml` (story_creation_workflow section)
- Task instructions: `aiox-core/tasks/create-next-story.md` (sections 5.1 and 5.3)
- Task instructions: `.aiox-core/development/tasks/create-next-story.md` (sections 5.1 and 5.3)
- Validators: `aiox-core/tools/mcp/clickup.yaml` (executable_knowledge section)

**Response Handling:**
Expand Down
Loading