mind-cli 0.6.1

A manager for agent tooling (skills, agents, rules, tools) that melds arbitrary git repos and links items into your agent directories.
name: ci

on:
  push:
    branches: [main]
  pull_request:

jobs:
  check:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v7
      - uses: dtolnay/rust-toolchain@stable
        with:
          components: clippy, rustfmt
      - uses: Swatinem/rust-cache@v2
      # `make ci` = fmt-check + clippy (-D warnings) + tests, including the
      # spec-coverage gate (tests/spec_coverage.rs), which fails if a spec ID is
      # neither cited by a test nor allowlisted. (`make check` is the local gate:
      # same lints and tests, but formats in place instead of just checking.)
      - run: make ci