deterministicgeneric

Skill Scaffold Generator

Developer experience skill that generates production-ready skill scaffolds aligned with RPASkills.ai contracts. Supports three variants: basic skill, UiPath MCP server (with mcp.json and uipath.json), and coded agent (with LangGraph config and pyproject.toml).

dxtoolingscaffoldcontributor
Version
v1.0.0

Features

  • 3 scaffold types
  • JSON Schema generation
  • Test scaffolding
  • MCP server config
  • LangGraph agent setup

Input Schema

{
  "type": "object",
  "properties": {
    "input_data": {
      "type": "object",
      "description": "Input data for skill execution"
    }
  },
  "required": [
    "input_data"
  ]
}

Output Schema

{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "success",
        "failure",
        "escalation"
      ]
    },
    "result": {
      "type": "object",
      "description": "Skill-specific output data"
    },
    "evidence": {
      "type": "object",
      "description": "Audit trail and evidence pack"
    }
  },
  "required": [
    "status",
    "result"
  ]
}

Category

tooling

Compatibility

generic