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
28 changes: 0 additions & 28 deletions .github/workflows/quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ name: Quality & Validation
# - Prettier (formatting)
# - ESLint (linting)
# - markdownlint (markdown quality)
# - Schema validation (YAML structure)
# - Agent schema tests (fixture-based validation)
# - Installation component tests (compilation)
# - Bundle validation (web bundle integrity)

"on":
pull_request:
Expand Down Expand Up @@ -68,27 +64,3 @@ jobs:

- name: markdownlint
run: npm run lint:md

validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Validate YAML schemas
run: npm run validate:schemas

- name: Run agent schema validation tests
run: npm run test:schemas

- name: Test agent compilation components
run: npm run test:install
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ pnpm-lock.yaml
bun.lock
deno.lock
pnpm-workspace.yaml
package-lock.json

test-output/*
coverage/
Expand Down
12 changes: 6 additions & 6 deletions docs/reference/agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,12 @@ Load any agent directly for conversation without triggering a workflow:

| Command | Agent |
| ------- | ----- |
| `/cis-agent-brainstorming-coach` | Carson |
| `/cis-agent-design-thinking-coach` | Maya |
| `/cis-agent-innovation-strategist` | Victor |
| `/cis-agent-creative-problem-solver` | Dr. Quinn |
| `/cis-agent-storyteller` | Sophia |
| `/cis-agent-presentation-master` | Caravaggio |
| `/bmad-cis-agent-brainstorming-coach` | Carson |
| `/bmad-cis-agent-design-thinking-coach` | Maya |
| `/bmad-cis-agent-innovation-strategist` | Victor |
| `/bmad-cis-agent-creative-problem-solver` | Dr. Quinn |
| `/bmad-cis-agent-storyteller` | Sophia |
| `/bmad-cis-agent-presentation-master` | Caravaggio |

## Communication Styles

Expand Down
10 changes: 5 additions & 5 deletions docs/reference/workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Technical reference for all CIS workflows including inputs, outputs, and invocat
workflow brainstorming --data /path/to/context.md

# Via agent
/cis-agent-brainstorming-coach
/bmad-cis-agent-brainstorming-coach
> brainstorm
```

Expand Down Expand Up @@ -81,7 +81,7 @@ Carson has access to 36 techniques across 7 categories stored in `brainstorming-
workflow design-thinking --data /path/to/user-research.md

# Via agent
/cis-agent-design-thinking-coach
/bmad-cis-agent-design-thinking-coach
> design-thinking
```

Expand Down Expand Up @@ -125,7 +125,7 @@ Maya has access to phase-specific design methods in `design-methods.csv`.
workflow innovation-strategy --data /path/to/market-analysis.md

# Via agent
/cis-agent-innovation-strategist
/bmad-cis-agent-innovation-strategist
> innovation-strategy
```

Expand Down Expand Up @@ -174,7 +174,7 @@ Victor has access to strategic frameworks in `innovation-frameworks.csv`:
workflow problem-solving --data /path/to/problem-brief.md

# Via agent
/cis-agent-creative-problem-solver
/bmad-cis-agent-creative-problem-solver
> problem-solving
```

Expand Down Expand Up @@ -224,7 +224,7 @@ Dr. Quinn has access to analytical frameworks in `solving-methods.csv`:
workflow storytelling --data /path/to/brand-info.md

# Via agent
/cis-agent-storyteller
/bmad-cis-agent-storyteller
> story
```

Expand Down
Loading
Loading