Skip to content

chore: Add agents scope#14

Closed
mike12345567 wants to merge 1 commit into
masterfrom
add-agents-scope
Closed

chore: Add agents scope#14
mike12345567 wants to merge 1 commit into
masterfrom
add-agents-scope

Conversation

@mike12345567
Copy link
Copy Markdown

@mike12345567 mike12345567 commented May 7, 2026

Scope for new agents as first class citizens feature, independent from workflows/core.


Summary by cubic

Adds the agents scope to our conventional commit scopes so Agents work can be tracked and released independently from core/workflows. Regenerates dist artifacts to reflect the change.

Written for commit 0475b1a. Summary will update on new commits.

@mike12345567 mike12345567 self-assigned this May 7, 2026
Copy link
Copy Markdown

@cubic-dev-ai cubic-dev-ai Bot left a comment

Choose a reason for hiding this comment

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

No issues found across 3 files

Architecture diagram
sequenceDiagram
    participant Dev as Developer
    participant Repo as Repository
    participant CI as CI/CD Pipeline
    participant Release as Release System

    Note over Dev,Release: Conventional Commit Scope Registration

    Dev->>Repo: Commit with scope:agents
    Repo->>CI: Trigger pipeline
    CI->>CI: Parse commit message
    CI->>CI: Check scope against allowed list
    
    alt Scope is "agents"
        CI->>CI: NEW: Route to agents build track
        CI->>CI: Run agents-specific tests
        CI->>CI: Build agents artifacts
        CI-->>Repo: Report success
    else Scope is another valid scope
        CI->>CI: Process as before
    end

    Note over CI,Release: Release Automation

    CI->>Release: NEW: Trigger agents release
    Release->>Release: Generate agents changelog
    Release->>Release: Publish agents version
    Release-->>CI: Release confirmation

    Note over Dev,Release: Configuration Boundary
    Note over Repo: src/constants.js contains scopes list
    Note over CI: Uses scopes to route builds
    Note over Release: Uses scopes to version independently
Loading

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant