Netresearch AI skill for assessing and enhancing software projects to meet enterprise-grade standards for security, quality, and automation. This is an Agent Skill following the open standard originally developed by Anthropic and released for cross-platform use. Supported Platforms: - ✅ Claude Code (Anthropic) - ✅ GitHub Copilot - ✅ Other skills-compatible AI agents - OpenSSF Framework Alignment -
Add this skill
npx mdskills install netresearch/enterprise-readiness-skill@netresearch? Sign in with GitHub to claim this listing.Comprehensive enterprise security assessment framework with OpenSSF alignment and automation
1# Enterprise Readiness Skill23Netresearch AI skill for assessing and enhancing software projects to meet enterprise-grade standards for security, quality, and automation.45## 🔌 Compatibility67This is an **Agent Skill** following the [open standard](https://agentskills.io) originally developed by Anthropic and released for cross-platform use.89**Supported Platforms:**10- ✅ Claude Code (Anthropic)11- ✅ Cursor12- ✅ GitHub Copilot13- ✅ Other skills-compatible AI agents1415> Skills are portable packages of procedural knowledge that work across any AI agent supporting the Agent Skills specification.161718## Features1920- **OpenSSF Framework Alignment** - Complete coverage across Scorecard, Best Practices Badge (Passing/Silver/Gold), SLSA, and S2C2F21- **Dynamic Scoring** - Fair cross-stack assessment with platform/language-specific criteria22- **Supply Chain Security** - SLSA provenance, artifact signing, SBOM generation, dependency scanning23- **Quality Gates** - Testing layers, coverage thresholds, static analysis, secret scanning24- **Automation Scripts** - Ready-to-use scripts for security hardening and compliance checks25- **Badge Progression** - Guided path from Passing → Silver → Gold certification2627## Installation2829### Marketplace (Recommended)3031Add the [Netresearch marketplace](https://github.com/netresearch/claude-code-marketplace) once, then browse and install skills:3233```bash34# Claude Code35/plugin marketplace add netresearch/claude-code-marketplace36```3738### npx ([skills.sh](https://skills.sh))3940Install with any [Agent Skills](https://agentskills.io)-compatible agent:4142```bash43npx skills add https://github.com/netresearch/enterprise-readiness-skill --skill enterprise-readiness44```4546### Download Release4748Download the [latest release](https://github.com/netresearch/enterprise-readiness-skill/releases/latest) and extract to your agent's skills directory.4950### Git Clone5152```bash53git clone https://github.com/netresearch/enterprise-readiness-skill.git54```5556### Composer (PHP Projects)5758```bash59composer require netresearch/enterprise-readiness-skill60```6162Requires [netresearch/composer-agent-skill-plugin](https://github.com/netresearch/composer-agent-skill-plugin).63### npm (Node Projects)6465```bash66npm install --save-dev \67 @netresearch/agent-skill-coordinator \68 github:netresearch/enterprise-readiness-skill69```7071Requires [@netresearch/agent-skill-coordinator](https://github.com/netresearch/node-agent-skill-coordinator), which discovers the skill in `node_modules` and registers it in `AGENTS.md` via a `postinstall` hook. For pnpm, also allowlist the coordinator's postinstall:7273```json74{75 "pnpm": {76 "onlyBuiltDependencies": ["@netresearch/agent-skill-coordinator"]77 }78}79```8081## Usage8283The skill triggers on keywords like:84- "enterprise readiness", "production ready"85- "OpenSSF", "security scorecard", "best practices badge"86- "SLSA", "supply chain security", "SBOM"87- "quality gates", "CI/CD hardening"8889### Example Prompts9091```92"Assess this project for enterprise readiness"93"What's needed for OpenSSF Best Practices Silver badge?"94"Help me reach SLSA Level 2"95"Set up supply chain security for this Go project"96```9798## Structure99100```101enterprise-readiness/102├── SKILL.md # AI instructions103├── README.md # This file104├── LICENSE-MIT # Code license (MIT)105├── LICENSE-CC-BY-SA-4.0 # Content license (CC-BY-SA-4.0)106├── composer.json # PHP distribution107├── references/ # OpenSSF criteria documentation108│ ├── general.md # Universal checks (60 points)109│ ├── github.md # GitHub-specific (40 points)110│ ├── go.md # Go-specific (20 points)111│ ├── openssf-badge-silver.md112│ └── openssf-badge-gold.md113├── scripts/ # Automation scripts114│ ├── check-*.sh # Validation scripts115│ └── setup-*.sh # Configuration scripts116└── assets/ # Templates and configs117 └── templates/ # CI/CD, SBOM, policy templates118```119120## Contributing121122Contributions welcome! Please submit PRs for:123- Additional platform support (GitLab, Bitbucket)124- New language-specific checks125- Script improvements126- Documentation updates127128## License129130This project uses split licensing:131132- **Code** (scripts, workflows, configs): [MIT](LICENSE-MIT)133- **Content** (skill definitions, documentation, references): [CC-BY-SA-4.0](LICENSE-CC-BY-SA-4.0)134135See the individual license files for full terms.136## Credits137138Developed and maintained by [Netresearch DTT GmbH](https://www.netresearch.de/).139140---141142**Made with ❤️ for Open Source by [Netresearch](https://www.netresearch.de/)**143
Full transparency — inspect the skill content before installing.