Getting it into your agent
It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.
git clone --depth 1 https://github.com/parisgroup-ai/imersao-ia-setupnpx agentmods add skills/parisgroup-ai/imersao-ia-setup/github-designWrote 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.
[](https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/github-design)<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/github-design"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/github-design/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/parisgroup-ai/imersao-ia-setup/github-design"><img src="https://agentmods.dev/badge/skills/parisgroup-ai/imersao-ia-setup/github-design.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00076 | $0.03236 |
| Opus 5 | $0.00038 | $0.01618 |
| Sonnet 5 | $0.00015 | $0.00647 |
| Haiku 4.5 | $0.00008 | $0.00324 |
Grade A, and why
github-design 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 544 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GitHub Design Skill
Overview
Design GitHub repositories and workflows following best practices for organization, automation, and collaboration.
When to Use
- Setting up a new repository
- Creating or modifying GitHub Actions workflows
- Designing issue/PR templates
- Organizing labels and milestones
- Configuring branch protection
- Setting up GitHub Projects
.github Folder Structure
.github/
├── workflows/
│ ├── ci.yml # Main CI pipeline
│ ├── release.yml # Release automation
│ └── reusable/
│ ├── build.yml # Reusable build workflow
│ └── test.yml # Reusable test workflow
├── ISSUE_TEMPLATE/
│ ├── config.yml # Template chooser config
│ ├── bug_report.yml # Bug report form
│ ├── feature_request.yml # Feature request form
│ └── question.yml # Question form
├── PULL_REQUEST_TEMPLATE.md # PR template
├── CODEOWNERS # Code ownership
├── FUNDING.yml # Sponsorship links
├── dependabot.yml # Dependency updates
├── labels.yml # Label definitions (for label sync)
└── SECURITY.md # Security policy
GitHub Actions Best Practices
Reusable Workflows
# .github/workflows/reusable/test.yml
name: Reusable Test
on:
workflow_call:
inputs:
node-version:
description: 'Node.js version'
required: false
type: string
default: '20'
secrets:
NPM_TOKEN:
required: false
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
cache: 'npm'
- run: npm ci
- run: npm test
Calling Reusable Workflows
# .github/workflows/ci.yml
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
uses: ./.github/workflows/reusable/test.yml
with:
node-version: '20'
secrets: inherit
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.
- 9d ago First seen · 544 lines · 76 tokens per session scan A aecfa823cdf6
github-design is a skill published in the GitHub repository parisgroup-ai/imersao-ia-setup (1 stars, last pushed 26d ago), licensed MIT. It adds 76 tokens to every session and 3,236 once invoked, about $0.0004 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-31.
Other skills, from other repositories
openclaw-github-repo-commander
7-stage super workflow for GitHub repo audit, cleanup, PR review, and competitor analysis.
openclaw-github-repo-commander
7-stage super workflow for GitHub repo audit, cleanup, PR review, and competitor analysis.
codeflow-maintainer
OpenClaw-only maintainer PR workflow modes and skills. For OpenCoven/coven PR creation, redirect to skills/pr-agent, the Coven PR Readiness Agent.
openclaw-dev
OpenClaw Dev Agent — OpenClaw-only docs-aware development assistant. For OpenCoven/coven PR creation, redirect to skills/pr-agent, the Coven PR Readiness Agent.
auto-git-commiter
Use when automatically commit and push OpenClaw changes to GitHub. Enable continuous improvement with automatic versioning, changelogs, and deployment-ready commits. Use when working with auto git commiter.
lakefs-versioning
Use when lakeFS data versioning — Git-like branching for data lakes, atomic commits, time travel, CI/CD. Use when working with lakefs versioning.