mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-27 01:11:40 +00:00
- Introduced new skills for editing and creating PPTX presentations, including a detailed guide on template-based workflows and script usage. - Added scripts for slide management, cleaning, and packing PPTX files, enhancing the overall functionality for users. - Included a LICENSE file to clarify usage rights and restrictions. - Created a SKILL.md file to provide an overview and quick reference for PPTX-related tasks. - Documented various formatting rules, common pitfalls, and design ideas to improve presentation quality.
28 lines
1.2 KiB
XML
28 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns="http://schemas.openxmlformats.org/officeDocument/2006/characteristics"
|
|
targetNamespace="http://schemas.openxmlformats.org/officeDocument/2006/characteristics"
|
|
elementFormDefault="qualified">
|
|
<xsd:complexType name="CT_AdditionalCharacteristics">
|
|
<xsd:sequence>
|
|
<xsd:element name="characteristic" type="CT_Characteristic" minOccurs="0"
|
|
maxOccurs="unbounded"/>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
<xsd:complexType name="CT_Characteristic">
|
|
<xsd:attribute name="name" type="xsd:string" use="required"/>
|
|
<xsd:attribute name="relation" type="ST_Relation" use="required"/>
|
|
<xsd:attribute name="val" type="xsd:string" use="required"/>
|
|
<xsd:attribute name="vocabulary" type="xsd:anyURI" use="optional"/>
|
|
</xsd:complexType>
|
|
<xsd:simpleType name="ST_Relation">
|
|
<xsd:restriction base="xsd:string">
|
|
<xsd:enumeration value="ge"/>
|
|
<xsd:enumeration value="le"/>
|
|
<xsd:enumeration value="gt"/>
|
|
<xsd:enumeration value="lt"/>
|
|
<xsd:enumeration value="eq"/>
|
|
</xsd:restriction>
|
|
</xsd:simpleType>
|
|
<xsd:element name="additionalCharacteristics" type="CT_AdditionalCharacteristics"/>
|
|
</xsd:schema>
|