{"id":50503286,"url":"https://github.com/wenkil/ppt-parse-analyzer-skill","last_synced_at":"2026-06-02T13:30:41.201Z","repository":{"id":356002946,"uuid":"1230595826","full_name":"wenkil/ppt-parse-analyzer-skill","owner":"wenkil","description":"Parse PPTX files into a lossless OpenXML workspace and analyze reusable template design systems (themes, layouts, typography, assets, and structure).","archived":false,"fork":false,"pushed_at":"2026-05-06T06:45:16.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-06T08:42:11.410Z","etag":null,"topics":["pptx-parser","pptx-to-openxml","slide-analysis"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wenkil.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-05-06T06:30:27.000Z","updated_at":"2026-05-06T06:45:21.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wenkil/ppt-parse-analyzer-skill","commit_stats":null,"previous_names":["wenkil/ppt-parse-analyzer-skill"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/wenkil/ppt-parse-analyzer-skill","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenkil%2Fppt-parse-analyzer-skill","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenkil%2Fppt-parse-analyzer-skill/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenkil%2Fppt-parse-analyzer-skill/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenkil%2Fppt-parse-analyzer-skill/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wenkil","download_url":"https://codeload.github.com/wenkil/ppt-parse-analyzer-skill/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wenkil%2Fppt-parse-analyzer-skill/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33824897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-02T02:00:07.132Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["pptx-parser","pptx-to-openxml","slide-analysis"],"created_at":"2026-06-02T13:30:38.599Z","updated_at":"2026-06-02T13:30:41.196Z","avatar_url":"https://github.com/wenkil.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# PPT Parse Analyzer Skill\n\nA two-stage PowerPoint toolkit: lossless PPTX extraction first, template intelligence second.\n\n## Overview\n\nThis repository provides an open-source workflow for PowerPoint template analysis.\nIt first unpacks a `.pptx` file into a lossless OpenXML-oriented workspace with\nstructured indexes, then analyzes that parsed result to generate reusable design\ninsights such as theme colors, typography, layout systems, placeholders, media\nusage, and slide patterns.\n\n## Repository Structure\n\n- `ppt-parser/`: Parses PPTX archives into a deterministic analysis workspace.\n- `ppt-template-analyzer/`: Analyzes parsed output and generates template reports.\n\n## Workflow\n\n1. Run `ppt-parser` on a `.pptx` file.\n2. Review parser outputs (`manifest`, `summary`, `raw/` extraction).\n3. Run `ppt-template-analyzer` on the parsed output directory.\n4. Review generated Markdown and JSON reports.\n\n## Quick Start\n\nRun commands from each skill directory.\n\n### 1) Parse PPTX\n\n```bash\nnode scripts/parse_pptx.js \u003cpath-to-pptx-file\u003e\n```\n\nParser output directory naming convention:\n\n```text\n\u003cPPT_NAME\u003e_\u003cYYYYMMDD\u003e/\n```\n\n### 2) Analyze Template\n\n```bash\nnode scripts/analyze_template.js \u003cparsed-pptx-folder\u003e [report-output.md|analysis-output.json]\n```\n\nIf output names are omitted, analyzer defaults to:\n\n```text\n\u003cPPT_NAME\u003e_\u003cYYYYMMDD\u003e_template_report.md\n\u003cPPT_NAME\u003e_\u003cYYYYMMDD\u003e_template_report.json\n```\n\n## Output Contract\n\nThe parsed directory should include:\n\n```text\n\u003cPPT_NAME\u003e_\u003cYYYYMMDD\u003e/\n  \u003cPPT_NAME\u003e_\u003cYYYYMMDD\u003e_manifest.json\n  \u003cPPT_NAME\u003e_\u003cYYYYMMDD\u003e_summary.json\n  \u003cPPT_NAME\u003e_\u003cYYYYMMDD\u003e_summary.txt\n  raw/\n    [Content_Types].xml\n    _rels/.rels\n    ppt/\n      presentation.xml\n      _rels/presentation.xml.rels\n      slides/\n      slides/_rels/\n      slideLayouts/\n      slideLayouts/_rels/\n      slideMasters/\n      slideMasters/_rels/\n      theme/\n      charts/\n      diagrams/\n      notesSlides/\n      media/\n  images/\n  media/\n```\n\nKey guarantees:\n\n- `raw/` preserves archive internal paths exactly, including `_rels`.\n- `manifest.json` is machine-focused indexing metadata.\n- `summary.json` is lightweight analysis handoff data.\n- `images/` and `media/` are convenience copies; `raw/ppt/media/` is source of truth.\n\n## Scope and Boundaries\n\n- The parser focuses on extraction and indexing, not design interpretation.\n- The analyzer provides structured template heuristics, not final visual judgment.\n- XML relationships (`.rels`) should be treated as authoritative linkage data.\n\n## License\n\nAdd your preferred open-source license (for example, MIT) before publishing.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwenkil%2Fppt-parse-analyzer-skill","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwenkil%2Fppt-parse-analyzer-skill","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwenkil%2Fppt-parse-analyzer-skill/lists"}