European-Parliament-MCP-Server: Skill for Claude Code

.github/skills/github-actions-workflows/SKILL.md

github-actions-workflows is a skill for Claude Code, Codex from Hack23/European-Parliament-MCP-Server. It costs 48 tokens per session (1,569 once invoked), scanned A, original, Apache-2.0.

A guide to GitHub Actions, GitHub's system for running automated jobs when code changes, for a TypeScript and Node.js project.

In plain words
What is it for?
Use it to maintain workflows for linting, tests, coverage reports, CodeQL scans, dependency reviews, SBOMs, release publishing, attestations, and integration tests.
Why use it?
It helps organize testing, building, security checks, publishing, and software supply-chain records into repeatable pipelines.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is Hack23/European-Parliament-MCP-Server's own configuration. It tells Claude Code and Codex how to work on European-Parliament-MCP-Server itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything European-Parliament-MCP-Server configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is files: ./coverage/lcov.info.

Reuse

Borrowing it

Nothing to install: this file belongs to Hack23/European-Parliament-MCP-Server. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Hack23/European-Parliament-MCP-Server/main/.github/skills/github-actions-workflows/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Hack23/European-Parliament-MCP-Server

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for github-actions-workflows

README.md
[![agentmods](https://agentmods.dev/badge/skills/hack23/european-parliament-mcp-server/github-actions-workflows.svg)](https://agentmods.dev/skills/hack23/european-parliament-mcp-server/github-actions-workflows)
Your own site
<a href="https://agentmods.dev/skills/hack23/european-parliament-mcp-server/github-actions-workflows"><img src="https://agentmods.dev/badge/skills/hack23/european-parliament-mcp-server/github-actions-workflows.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,569 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium MCP Rug Pull · line 114
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00048 $0.01569
Opus 5 $0.00024 $0.00785
Sonnet 5 $0.00010 $0.00314
Haiku 4.5 $0.00005 $0.00157

Measured 8d ago against content hash 580b49b93251, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

github-actions-workflows scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.github/skills/github-actions-workflows/SKILL.md · 131 lines

How it starts

The opening of the file, as written. The whole thing — 131 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GitHub Actions Workflows Skill

Purpose

Create and maintain secure, efficient CI/CD pipelines using GitHub Actions for this TypeScript 6.0.2 / Node.js 25 MCP server project with 12 automated workflows.

When to Use

  • ✅ Setting up or modifying CI/CD pipelines for TypeScript MCP projects
  • ✅ Automating security scans (CodeQL, dependency review, SLSA, SBOM)
  • ✅ Implementing npm package publishing with attestation
  • ✅ Configuring test/coverage reporting and quality gates
  • ✅ Understanding the 8-stage pipeline architecture

Current Pipeline Architecture (12 Workflows)

Stage Workflow Trigger Purpose
1. Code Validation dependency-review.yml, labeler.yml PR Dependency audit, auto-labeling
2. Build & Test test-and-report.yml Push, PR Lint, build, test, coverage (80%+)
3. Security Analysis codeql.yml Push, PR, Weekly CodeQL SAST scanning
4. Integration Testing integration-tests.yml Push, PR, Daily E2E tests against EP API
5. Release & Publish release.yml Tag v*, Manual npm publish with attestation
6. Supply Chain sbom-generation.yml, slsa-provenance.yml Push (main), Tag v*, Release publish, Manual CycloneDX/SPDX SBOM, SLSA Level 3
7. Continuous Monitoring scorecard.yml Push, Weekly OpenSSF Scorecard
8. Repository Management setup-labels.yml, copilot-setup-steps.yml, refresh-stats.yml Manual, Push, Schedule Labels, Copilot environment, Stats refresh

CI/CD Pattern (Node.js 25 + TypeScript 6.0.2)

name: Test and Report
on:
  push:
    branches: [main]
  pull_request:
    branches: [main]

permissions:
  contents: read
  checks: write

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: step-security/harden-runner@fe104658747b27e96e4f7e80cd0a94068e53901d # v2.16.1
        with:
          egress-policy: audit
      - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
      - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
        with:
          node-version: '25'
          cache: 'npm'
      - run: npm ci
      - run: npm run lint
      - run: npm run build
      - run: npm run test:coverage

Read the full file on GitHub · 131 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 131 lines · 48 tokens per session scan A 580b49b93251

Subscribe to this mod's changes

github-actions-workflows is a skill published in the GitHub repository Hack23/European-Parliament-MCP-Server (28 stars, last pushed today), licensed Apache-2.0. It adds 48 tokens to every session and 1,569 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

servicenow-cicd-devops

ServiceNow release-engineering surface — CI/CD app install/scan/rollback, DevOps change-control & artifact registration, update-set create/preview/commit/back-out, source-control apply/import, plugin activate/rollback, and ATF test-suite runs via the servicenow-api MCP server. Use when the agent must deploy or roll…

Knuckles-Team/servicenow-api · 185 tokens

orchardcore-docker

Skill for containerizing Orchard Core with Docker. Covers Dockerfile creation with multi-stage builds, dockerignore configuration, docker-compose setup for multiple database providers, HTTPS deployment in containers, environment-specific targeting, image optimization, and CI/CD considerations. Use this skill when…

CrestApps/CrestApps.AgentSkills · 168 tokens

gitlab-pipelines

CI/CD pipeline review on GitLab via the gitlab-api MCP server — review pipeline results for a project, a group, or the whole instance, drill into the CI jobs of a pipeline, and read a job's log; also trigger a pipeline on a ref. Use when the agent must review CI results across a project/group/organization, check…

Knuckles-Team/gitlab-api · 130 tokens

blazemeter-integrations

Comprehensive guide for BlazeMeter Integrations, including APM tools, CI/CD pipelines, and development tools. Use when working with integrations for (1) Integrating APM tools (AppDynamics, Datadog, New Relic, CloudWatch, DX APM, Dynatrace, Delphix), (2) Integrating CI/CD tools (Jenkins, GitHub Actions, GitLab CI/CD…

Blazemeter/bzm-mcp · 131 tokens

servicenow-api-operations

Operate servicenow-api through its governed MCP and GraphOS capabilities, including servicenow app engine, servicenow change management, servicenow cicd devops, servicenow cmdb, servicenow hr ppm, servicenow import attachment batch, servicenow incident management, servicenow irm grc, and related workflows. Use when a…

Knuckles-Team/servicenow-api · 100 tokens

ci-cd-pipeline

A setup guide for GitHub Actions, GitHub's built-in automation service, that runs code-quality checks when changes are proposed or merged.

fideguch/my_pm_tools · 0 tokens