ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Development Result XSD Schema
  
  Allows <code> elements within text content for escaping special characters
  like <, >, and & (e.g., comparisons, generics, logical operators).
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  
  <!-- Text with optional inline code elements -->
  <xs:complexType name="TextWithCodeType" mixed="true">
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="code" type="xs:string"/>
    </xs:choice>
  </xs:complexType>

  <!-- Skills and MCP recommendations container -->
  <xs:complexType name="SkillsMcpType" mixed="true">
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="skill">
        <xs:complexType mixed="true">
          <xs:attribute name="reason" type="xs:string"/>
        </xs:complexType>
      </xs:element>
      <xs:element name="mcp">
        <xs:complexType mixed="true">
          <xs:attribute name="reason" type="xs:string"/>
        </xs:complexType>
      </xs:element>
    </xs:choice>
  </xs:complexType>
  
  <xs:element name="ralph-development-result">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="ralph-status">
          <xs:simpleType>
            <xs:restriction base="xs:string">
              <xs:enumeration value="completed"/>
              <xs:enumeration value="partial"/>
              <xs:enumeration value="failed"/>
            </xs:restriction>
          </xs:simpleType>
        </xs:element>
        <xs:element name="ralph-summary" type="TextWithCodeType"/>
        <xs:element name="skills-mcp" type="SkillsMcpType" minOccurs="0"/>
        <xs:element name="ralph-files-changed" type="TextWithCodeType" minOccurs="0"/>
        <xs:element name="ralph-next-steps" type="TextWithCodeType" minOccurs="0"/>
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>