You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(skill): teach the skill to generate documents, not just parse them
The generators shipped; every discovery surface here still described a
parser. An agent asked to "turn these notes into a PowerPoint" matched
nothing in the frontmatter description, and mcpConvert was the only tool
without a fallback script.
- description now triggers on create/generate/write/author/build/make
- new "Generating Documents" section: Markdown is the authoring format,
what survives the trip, and what cannot — headers, footers, comments
and tracked changes have no Markdown syntax, so the skill says so
rather than letting an agent promise a running header
- new scripts/convert.sh, the missing fallback
- /api/v1/convert documented in Core Endpoints, api-reference.md (four
input modes, response shape, metering) and integration-guide.md
(Python/TS/curl)
- prompt-based AI generation recorded as CLI-only, absent from the
hosted API, so agents do not offer it
Also fixes a live bug found on the way: all six scripts and all ten
resource-file examples defaulted to the dev Cloud Run URL while SKILL.md
stated "Default: production".
- block types 9 -> the real 11 (Link and Comment were missing)
- `encoding` documented as load-bearing everywhere it appears: base64
for the six ZIP targets, utf8 for html/md/qmd, branch on the field
and never on the target
- deployment/GCP section removed from the public skill; preserved in
sunholo/docparse internal-docs/deploy-pipeline.md
- every sunholo.com link verified 200. Docs pages move to
/ailang-parse/ (the /docparse/ ones are live 404s); the dashboard
correctly stays on /docparse/
convert.sh usage, error and both decode paths verified; the error path
against production. The success path is NOT yet verified — the local
key is expired.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: plugins/ailang-parse/.claude-plugin/plugin.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
{
2
2
"name": "ailang-parse",
3
-
"description": "AILANG Parse — Universal document parsing and generation. Parse 17 formats into structured blocks via MCP. Includes auth, billing, cost estimation, and account management tools for AI agents.",
4
-
"version": "0.10.0",
3
+
"description": "AILANG Parse — Universal document parsing and generation. Parse documents into structured blocks and generate DOCX, PPTX, XLSX, ODT, ODP, ODS, HTML, Markdown and Quarto via MCP. Includes auth, billing, cost estimation, and account tools.",
0 commit comments