Acreadiness Assess
Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc…
Install
Quick install
npx skills add https://github.com/github/awesome-copilot/tree/HEAD/skills/acreadiness-assessnpx skills add github/awesome-copilot --skill acreadiness-assess --agent claude-codenpx skills add github/awesome-copilot --skill acreadiness-assess --agent cursornpx skills add github/awesome-copilot --skill acreadiness-assess --agent codexnpx skills add github/awesome-copilot --skill acreadiness-assess --agent opencodenpx skills add github/awesome-copilot --skill acreadiness-assess --agent github-copilotnpx skills add github/awesome-copilot --skill acreadiness-assess --agent windsurfMore install options
Shorthand — useful for multi-skill repos:
npx skills add github/awesome-copilot --skill acreadiness-assessManual — clone the repo and drop the folder into your agent's skills directory:
git clone https://github.com/github/awesome-copilot.gitcp -r awesome-copilot/skills/acreadiness-assess ~/.claude/skills/acreadiness-assess
Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps npx github:microsoft/agentrc…
acreadiness-assessby github
Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps npx github:microsoft/agentrc…npx skills add https://github.com/github/awesome-copilot --skill acreadiness-assessDownload ZIPGitHub
/acreadiness-assess — AI-readiness assessment
Use this skill whenever the user asks for an AI-readiness assessment, a readiness check, an audit, or wants to see how AI-ready their repository is.
This skill is the Measure step in AgentRC's Measure → Generate → Maintain loop. The result is a self-contained HTML dashboard the user can open with file:// or commit to the repo.
Steps
*
Confirm prerequisites. Node 20+ must be on PATH. If unsure, run node --version.
*
Decide on a policy (optional but encouraged):
- If the user provided
--policy <source>, capture it.
- Otherwise check
agentrc.config.jsonfor apoliciesarray.
- If neither, run with no policy (built-in defaults).
- For a primer on policies, suggest the
acreadiness-policyskill.
*
Run the readiness scan in the repo root with structured output:
`npx -y github:microsoft/agentrc readiness --json [--policy <source>] [--per-area]
`
The CommandResult<T> JSON envelope is your input for the next step.
*
Hand off to the ai-readiness-reporter custom agent to interpret the JSON and produce reports/index.html. The agent renders via the bundled template report-template.html (shipped alongside this skill) so every report has an identical look & feel. The agent:
- Reads the bundled
report-template.htmland substitutes placeholders with real data.
- Inlines all CSS, ships a single static file (works under
file://).
- Renders maturity level, overall score, grade, pass-rate vs threshold.
- Breaks down all 9 pillars across Repo Health (8) and AI Setup (1) with what it measures, why it matters for AI, current state, and a specific recommendation.
- Tags every pillar with an AI relevance badge (High / Medium / Low).
- Surfaces Extras separately (they never affect the score).
- Shows the Active Policy including any disabled/overridden criteria and thresholds.
- Produces a Prioritised Remediation Plan (🔴 Fix First / 🟡 Fix Next / 🔵 Plan).
- Embeds the raw AgentRC JSON for reuse.
*
Tell the user where the report lives (reports/index.html) and how to open it. Summarise in chat: maturity level, overall score, top three lowest pillars, and the single highest-leverage next action (almost always: run the acreadiness-generate-instructions skill).
Notes
- AgentRC also has a built-in HTML renderer (
--visual/--output report.html) but its output is intentionally generic. This skill produces a tailored, opinionated dashboard via the custom agent — closer to a code review than a metrics dump.
- For CI gating, recommend
agentrc readiness --fail-level <n>(1–5).
- The skill never modifies repository files other than creating
reports/index.html.
More skills from github
console-renderingby githubInstructions for using the struct tag-based console rendering system in Goacquire-codebase-knowledgeby githubUse this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…acreadiness-generate-instructionsby githubGenerate tailored AI agent instruction files via AgentRC instructions command. Produces .github/copilot-instructions.md (default, recommended for Copilot in VS…acreadiness-policyby githubHelp the user pick, write, or apply an AgentRC policy. Policies customise readiness scoring by disabling irrelevant checks, overriding impact/level, setting…add-educational-commentsby githubAdd educational comments to code files to transform them into effective learning resources. Adapts explanation depth and tone to three configurable knowledge levels: beginner, intermediate, and advanced Automatically requests a file if none is provided, with numbered list matching for quick selection Expands files by up to 125% using educational comments only (hard limit: 400 new lines; 300 for files over 1,000 lines) Preserves file encoding, indentation style, syntax correctness, and...adobe-illustrator-scriptingby githubWrite, debug, and optimize Adobe Illustrator automation scripts using ExtendScript (JavaScript/JSX). Use when creating or modifying scripts that manipulate…agent-governanceby githubDeclarative policies, intent classification, and audit trails for controlling AI agent tool access and behavior. Composable governance policies define allowed/blocked tools, content filters, rate limits, and approval requirements — stored as configuration, not code Semantic intent classification detects dangerous prompts (data exfiltration, privilege escalation, prompt injection) before tool execution using pattern-based signals Tool-level governance decorator enforces policies at function...agent-owasp-complianceby githubEvaluate AI agent systems against the OWASP Agentic Security Initiative (ASI) Top 10 — the industry standard for agent security posture.---
Source: https://github.com/github/awesome-copilot/tree/HEAD/skills/acreadiness-assess
Author: github
Discovered via: mcpservers.org
SKILL.md source
--- name: acreadiness-assess description: Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc… --- # acreadiness-assess Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc… # acreadiness-assessby github Run the AgentRC readiness assessment on the current repository and produce a static HTML dashboard at reports/index.html. Wraps `npx github:microsoft/agentrc… `npx skills add https://github.com/github/awesome-copilot --skill acreadiness-assess`Download ZIPGitHub ## /acreadiness-assess — AI-readiness assessment Use this skill whenever the user asks for an AI-readiness assessment, a readiness check, an audit, or wants to see how AI-ready their repository is. This skill is the Measure step in AgentRC's Measure → Generate → Maintain loop. The result is a self-contained HTML dashboard the user can open with `file://` or commit to the repo. ## Steps * Confirm prerequisites. Node 20+ must be on PATH. If unsure, run `node --version`. * Decide on a policy (optional but encouraged): * If the user provided `--policy <source>`, capture it. * Otherwise check `agentrc.config.json` for a `policies` array. * If neither, run with no policy (built-in defaults). * For a primer on policies, suggest the `acreadiness-policy` skill. * Run the readiness scan in the repo root with structured output: ``` `npx -y github:microsoft/agentrc readiness --json [--policy <source>] [--per-area] ` ``` The `CommandResult<T>` JSON envelope is your input for the next step. * Hand off to the `ai-readiness-reporter` custom agent to interpret the JSON and produce `reports/index.html`. The agent renders via the bundled template `report-template.html` (shipped alongside this skill) so every report has an identical look & feel. The agent: * Reads the bundled `report-template.html` and substitutes placeholders with real data. * Inlines all CSS, ships a single static file (works under `file://`). * Renders maturity level, overall score, grade, pass-rate vs threshold. * Breaks down all 9 pillars across Repo Health (8) and AI Setup (1) with what it measures, why it matters for AI, current state, and a specific recommendation. * Tags every pillar with an AI relevance badge (High / Medium / Low). * Surfaces Extras separately (they never affect the score). * Shows the Active Policy including any disabled/overridden criteria and thresholds. * Produces a Prioritised Remediation Plan (🔴 Fix First / 🟡 Fix Next / 🔵 Plan). * Embeds the raw AgentRC JSON for reuse. * Tell the user where the report lives (`reports/index.html`) and how to open it. Summarise in chat: maturity level, overall score, top three lowest pillars, and the single highest-leverage next action (almost always: run the `acreadiness-generate-instructions` skill). ## Notes * AgentRC also has a built-in HTML renderer (`--visual` / `--output report.html`) but its output is intentionally generic. This skill produces a tailored, opinionated dashboard via the custom agent — closer to a code review than a metrics dump. * For CI gating, recommend `agentrc readiness --fail-level <n>` (1–5). * The skill never modifies repository files other than creating `reports/index.html`. ## More skills from github console-renderingby githubInstructions for using the struct tag-based console rendering system in Goacquire-codebase-knowledgeby githubUse this skill when the user explicitly asks to map, document, or onboard into an existing codebase. Trigger for prompts like "map this codebase", "document…acreadiness-generate-instructionsby githubGenerate tailored AI agent instruction files via AgentRC instructions command. Produces .github/copilot-instructions.md (default, recommended for Copilot in VS…acreadiness-policyby githubHelp the user pick, write, or apply an AgentRC policy. Policies customise readiness scoring by disabling irrelevant checks, overriding impact/level, setting…add-educational-commentsby githubAdd educational comments to code files to transform them into effective learning resources. Adapts explanation depth and tone to three configurable knowledge levels: beginner, intermediate, and advanced Automatically requests a file if none is provided, with numbered list matching for quick selection Expands files by up to 125% using educational comments only (hard limit: 400 new lines; 300 for files over 1,000 lines) Preserves file encoding, indentation style, syntax correctness, and...adobe-illustrator-scriptingby githubWrite, debug, and optimize Adobe Illustrator automation scripts using ExtendScript (JavaScript/JSX). Use when creating or modifying scripts that manipulate…agent-governanceby githubDeclarative policies, intent classification, and audit trails for controlling AI agent tool access and behavior. Composable governance policies define allowed/blocked tools, content filters, rate limits, and approval requirements — stored as configuration, not code Semantic intent classification detects dangerous prompts (data exfiltration, privilege escalation, prompt injection) before tool execution using pattern-based signals Tool-level governance decorator enforces policies at function...agent-owasp-complianceby githubEvaluate AI agent systems against the OWASP Agentic Security Initiative (ASI) Top 10 — the industry standard for agent security posture. --- **Source**: https://github.com/github/awesome-copilot/tree/HEAD/skills/acreadiness-assess **Author**: github **Discovered via**: mcpservers.org
Related skills 6
caveman
Ultra-compressed communication mode. Cuts token usage ~75% by speaking like caveman while keeping full technical accuracy. Supports intensity levels: lite, full (default), ultra, wenyan-lite, wenyan-full, wenyan-ultra. Use when user says "caveman mode", "talk like caveman", "use caveman", "less tokens", "be brief", or invokes /caveman. Also auto-triggers when token efficiency is requested.
secure-linux-web-hosting
Use when setting up, hardening, or reviewing a cloud server for self-hosting, including DNS, SSH, firewalls, Nginx, static-site hosting, reverse-proxying an app, HTTPS with Let's Encrypt or ACME clients, safe HTTP-to-HTTPS redirects, or optional post-launch network tuning such as BBR.
readme-i18n
Use when the user wants to translate a repository README, make a repo multilingual, localize docs, add a language switcher, internationalize the README, or update localized README variants in a GitHub-style repository.
lark-shared
Use when first setting up lark-cli, running auth login, switching user/bot identity (--as), handling permission denied or scope errors, needing to update lark-cli, or seeing _notice in JSON output.
improve-codebase-architecture
Find deepening opportunities in a codebase, informed by the domain language in CONTEXT.md and the decisions in docs/adr/. Use when the user wants to improve architecture, find refactoring opportunities, consolidate tightly-coupled modules, or make a codebase more testable and AI-navigable.
paper-context-resolver
Optional RigorPilot helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specific paper detail such as dataset split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumption from primary paper sources while recording conflicts. Do not use for general paper summary, repo scanning, environment setup, command execution, title-only paper lookup, or replacin...