
Creation Feasibility Gate
Run a feasibility check on a proposed new skill or artifact before expensive creator or scaffolder workflows start in Agent Studio.
Install
npx skills add https://github.com/oimiragieo/agent-studio --skill creation-feasibility-gateWhat is this skill?
- Blocks creator workflows until stack feasibility for a new artifact is assessed
- Pairs with enterprise-bundle-scaffolder pre/post execute hooks for validation and metrics
- Manual-invocation oriented (disable-model-invocation) for explicit gating
- Documents purpose: validate proposed artifacts before creator pipelines run
- Research-requirements scaffold for skill-updater maintenance
Adoption & trust: 1 installs on skills.sh; 31 GitHub stars; 3/3 security scanners passed (skills.sh audits); trending (+100% hot-view momentum).
Recommended Skills
Find Skillsvercel-labs/skills
Skill Creatoranthropics/skills
Lark Skill Makerlarksuite/cli
Skills Clixixu-me/skills
Write A Skillmattpocock/skills
Using Superpowersobra/superpowers
Journey fit
Primary fit
The gate sits where you decide whether an idea is worth building in your stack—canonical Validate shelf before Build creator runs. Scope subphase matches narrowing what you will create and whether the current environment can support it.
Common Questions / FAQ
Is Creation Feasibility Gate safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Creation Feasibility Gate
Invoke the creation-feasibility-gate skill and follow it exactly as presented to you 'use strict'; /** * Post-execute hook for creation-feasibility-gate * Auto-generated by enterprise-bundle-scaffolder * * Records metrics after skill execution. */ function postExecute(_context) { // Record execution metrics return { ok: true, skill: 'creation-feasibility-gate' }; } module.exports = { postExecute }; 'use strict'; /** * Pre-execute hook for creation-feasibility-gate * Auto-generated by enterprise-bundle-scaffolder * * Validates inputs before skill execution. */ function preExecute(context) { // Validate skill invocation context if (!context || typeof context !== 'object') { return { allow: true, message: 'creation-feasibility-gate: no context to validate' }; } return { allow: true }; } module.exports = { preExecute }; # creation-feasibility-gate Research Requirements Generated: 2026-02-28 ## Skill Description Validate whether a proposed new artifact is feasible in the current stack before creator workflows run. ## Research Areas - Current best practices for creation-feasibility-gate - Industry standards and tooling - Integration patterns ## Source References - To be populated by skill-updater research phase # creation-feasibility-gate Rules ## Purpose Validate whether a proposed new artifact is feasible in the current stack before creator workflows run. ## Best Practices - Follow established patterns - Validate inputs at boundaries ## Integration Points See SKILL.md for complete documentation. { "$schema": "http://json-schema.org/draft-07/schema#", "title": "creation-feasibility-gateInput", "description": "Input schema for Validate whether a proposed new artifact is feasible in the current stack before creator workflows run.", "type": "object", "additionalProperties": true, "properties": { "target": { "type": "string", "description": "Target file or path for the skill to operate on" }, "options": { "type": "object", "description": "Additional options for skill execution", "additionalProperties": true } } } { "$schema": "http://json-schema.org/draft-07/schema#", "title": "creation-feasibility-gateOutput", "type": "object", "additionalProperties": true, "properties": { "ok": { "type": "boolean" }, "summary": { "type": "string" } } } #!/usr/bin/env node 'use strict'; /** * creation-feasibility-gate - Enterprise Skill Script * Auto-generated by enterprise-bundle-scaffolder */ const fs = require('fs'); const path = require('path'); // Parse arguments const args = process.argv.slice(2); const options = {}; for (let i = 0; i < args.length; i++) { if (args[i].startsWith('--')) { const key = args[i].slice(2); const value = args[i + 1] && !args[i + 1].startsWith('--') ? args[++i] : true; options[key] = value; } } if (options.help) { console.log(` creation-feasibility-gate - Enterprise Skill Usage: node main.cjs --check <file> Check a file against guidelines node main.cjs --list List all guidelines node main.cjs --help Show this help Description: Validate whether a proposed new artifact is feasible in the current stack before creator workflows run. `); process.exit(0); } if (options.list) { console.log('Guidelines for creation-feasibility-gate:'); console.log('See SKILL.md for full guidelines'); process.exit(0); } console.log('creation-feasibility-gate skill loaded. Use with Claude for code review.'); --- name: creation-feasibility-gate description: Validate whether a proposed new artifact is feasible in the current stack before creator workflows run. version: 1.1.0 model: sonnet invoked_by: both user_invocable: true tools: [Read, Glob, Grep, Skill] agents: [planner, technical-program-manager, reflection-agent, evolution-orchestrator] error_handling: graceful streaming: suppor