Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
78675b2
docs: Clarify on-demand trigger model and use sentence case
justinegeffen Feb 6, 2026
f2327a5
Merge branch 'master' into docs/clarify-on-demand-triggers
justinegeffen Feb 11, 2026
e0dfadc
Merge branch 'master' into docs/clarify-on-demand-triggers
justinegeffen Feb 17, 2026
a7e845f
docs: add agent status and skill deployment info
justinegeffen Feb 17, 2026
7963d7f
Update .claude/skills/editorial-review/SKILL.md
justinegeffen Feb 17, 2026
d9086fc
Update CLAUDE.md
justinegeffen Feb 17, 2026
3c3b760
Update .claude/README.md
justinegeffen Feb 17, 2026
3c0324c
Update .claude/README.md
justinegeffen Feb 17, 2026
465c7e9
docs: clarify punctuation agent is planned, not active
justinegeffen Feb 17, 2026
f713b51
docs: add decision guide for when to use editorial review
justinegeffen Feb 17, 2026
ee942b9
docs: correct annual cost estimate with real repo data
justinegeffen Feb 17, 2026
a253a3d
docs: add security and environmental responsibility guidelines
justinegeffen Feb 17, 2026
e35d68d
refactor: use /editorial-review skill instead of individual agents
justinegeffen Feb 17, 2026
763eb8f
feat: add smart-gate automation and update docs for accuracy
justinegeffen Feb 17, 2026
6456e1f
fix: correct agent availability and consolidate skip guidance
justinegeffen Feb 17, 2026
d85dc0f
Merge branch 'master' into docs/clarify-on-demand-triggers
justinegeffen Feb 18, 2026
15f7ef3
Merge branch 'master' into docs/clarify-on-demand-triggers
justinegeffen Feb 18, 2026
2c49f69
Merge branch 'master' into docs/clarify-on-demand-triggers
justinegeffen Feb 19, 2026
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
112 changes: 82 additions & 30 deletions .claude/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,33 +116,33 @@ Ensures consistent punctuation across documentation.

**File:** `.github/workflows/docs-review.yml`

**Triggers:**
- **Automatic:** PR creation or reopen for `platform-*` directories
- **Manual:** Workflow dispatch (see below)
**Triggers (GitHub Actions, on-demand only):**
- **PR comment:** Comment `/editorial-review` on any PR
- **Manual workflow dispatch:** Via GitHub Actions UI (see below)

**How it works:**
0. Validates bash script syntax (fails fast if scripts have errors)
1. Classifies PR as "rename" or "content" type
2. Runs agents based on PR type (rename PRs skip voice-tone & terminology)
3. Posts up to 60 inline suggestions per PR
4. Saves full report as downloadable artifact (30-day retention)

**Manual re-runs:**

After the initial review, re-run the workflow manually:
Editorial review can also be run locally via Claude Code CLI using the `/editorial-review` command; this runs outside the `.github/workflows/docs-review.yml` workflow.
**NOT triggered by:**
- PR creation, updates, or commits (to conserve tokens)

1. Go to **Actions** → **Documentation Review**
2. Click **Run workflow**
3. Select your PR branch
4. Enter the **PR number** (required for posting results)
5. Choose review type:
- `all` - Run all checks
- `voice-tone` - Only voice/tone
- `terminology` - Only terminology
- `clarity` - Only clarity _(currently disabled in CI)_
6. Click **Run workflow**

The workflow does NOT re-run automatically on subsequent commits (to conserve tokens).
**How it works:**
1. User comments `/editorial-review` on PR
2. Workflow validates bash scripts (fails fast if errors)
3. Classifies PR type ("rename" or "content")
4. **Smart-gate checks** (automatic waste prevention):
- Blocks if reviewed <60 min ago
- Blocks if <10 lines changed
- Blocks if >5 formatting issues (run markdownlint first)
5. If gates pass: Invokes `/editorial-review` skill
6. Skill orchestrates agents (voice-tone, terminology)
7. Posts up to 60 inline suggestions
8. Saves full report as artifact (30-day retention)

**Key architecture:** Workflow invokes the `/editorial-review` skill rather than calling agents directly. This ensures local and CI behavior is identical.

**Manual workflow dispatch:**
1. Go to **Actions** → **Documentation Review** → **Run workflow**
2. Enter PR number and select review type (`all`, `voice-tone`, `terminology`)
3. Smart-gate still applies - manual trigger doesn't bypass automation

**Outputs:**
- Inline suggestions on specific lines (click to apply)
Expand All @@ -159,6 +159,16 @@ The workflow does NOT re-run automatically on subsequent commits (to conserve to
- Analyzes git diff to determine PR type
- Outputs "rename" or "content" for workflow decisions

### Agent status

| Agent | Status | Used in CI |
|-------|--------|------------|
| voice-tone | ✅ Active | Yes |
| terminology | ✅ Active | Yes |
| punctuation | 📋 Planned | No |
| clarity | ⚠️ Disabled | No |
| docs-fix | 📝 Local only | No |

## Agent output format

Agents output structured suggestions:
Expand Down Expand Up @@ -187,11 +197,18 @@ When working on API documentation:

### Working with editorial content

When working on documentation content:
1. Open PR → Agents automatically review changes
2. Review inline suggestions on affected lines
3. Apply fixes individually or batch-apply multiple
4. Re-run workflow manually from Actions tab if needed
**Local development (before PR):**
1. Make doc changes locally
2. Run `/editorial-review <file>` in Claude Code
3. Review findings and apply fixes
4. Commit and push

**PR review (on-demand):**
1. Open PR with documentation changes
2. Comment `/editorial-review` to trigger review
3. Review inline suggestions on affected lines
4. Apply fixes individually or batch-apply multiple
5. Comment `/editorial-review` again to verify fixes

### Testing changes locally

Expand Down Expand Up @@ -236,6 +253,41 @@ To change: Edit `.github/workflows/docs-review.yml` lines 268-284
- Monitor the **Actions** tab in GitHub for workflow issues
- Artifacts auto-delete after 30 days

## Optimization and best practices

### Reducing unnecessary reviews

To minimize token usage and environmental impact:

1. **Check PR timeline** before re-running `/editorial-review`
2. **Use static analysis first**: Run `markdownlint` or `vale` locally before LLM review
3. **Skip minor changes**: Don't review single typo fixes or whitespace changes
4. **Batch changes**: Fix multiple issues, then run one review

### Static analysis pre-filtering

Consider running fast, local checks before using LLM agents:

```bash
# Markdown formatting (instant, zero cost)
npx markdownlint-cli2 "**/*.md"

# Simple pattern checks (instant, zero cost)
grep -r "Tower" --include="*.md" platform-enterprise_docs/

# Vale style checks if configured (instant, zero cost)
vale platform-enterprise_docs/
```

**Benefits**: Reduces LLM usage by 50-60% by catching simple issues locally first.

### Security best practices

- API keys stored in GitHub Secrets (never in code or logs)
- Reviews only read files (no write access to production)
- Manual triggers prevent automated abuse
- All output is publicly visible for transparency

## Architecture

```
Expand Down
7 changes: 7 additions & 0 deletions .claude/skills/editorial-review/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ description: Run editorial review on documentation files using specialized agent
## Purpose
Orchestrate a comprehensive editorial review of documentation using specialized SME agents. Provides structured, actionable feedback on editorial quality across multiple dimensions.

## Deployment
**CI/CD:** `.github/workflows/docs-review.yml`
**Invocation paths:**
- GitHub PR comment `/editorial-review` (triggers the CI workflow)
- Manual run from the GitHub Actions tab via `workflow_dispatch`
- Local `/editorial-review` skill invocation (runs outside GitHub Actions)

## Workflow

This skill coordinates multiple specialized agents to provide comprehensive editorial feedback:
Expand Down
3 changes: 3 additions & 0 deletions .claude/skills/openapi-overlay-generator/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ description: Generate OpenAPI overlay files for Seqera Platform API documentatio

This skill generates high-quality OpenAPI overlay files for documenting the Seqera Platform API according to established standards and conventions.

## Deployment
**CI/CD:** `.github/workflows/generate-openapi-overlays.yml` | **Invocation:** Repository dispatch or manual

## When to use this skill

Use this skill when:
Expand Down
3 changes: 3 additions & 0 deletions .claude/skills/platform-changelog-formatter/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Format and style-check **Seqera Platform** changelogs (Cloud and Enterprise only
**Scope**: ONLY Seqera Platform Cloud and Enterprise changelogs.
**Does NOT apply to**: Wave, Nextflow, or Fusion changelogs.

## Deployment
**CI/CD:** Not used | **Invocation:** Local manual use only

## When to use
Use this skill when:
- User asks to "format a Platform changelog"
Expand Down
4 changes: 2 additions & 2 deletions .github/scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Converts Claude agent review findings into GitHub inline suggestions that can be
./post-inline-suggestions.sh <review-file> <pr-number>
```

### Input Format
### Input format

The script expects a review file with this format:

Expand Down Expand Up @@ -131,7 +131,7 @@ corrected text here

Users can then click "Commit suggestion" to apply the fix directly from the PR interface.

### How It Works
### How it works

1. Parses the structured review file
2. Groups suggestions by file and line
Expand Down
Loading