From agentic-ai-skills
Generates LaTeX PDFs for enterprise LLM technical proposals mapping capabilities to customer systems, integration architectures, scenario KPIs, deployment/security/ops tables. For bids, POCs, standardized client docs.
npx claudepluginhub agenticaiplan/agenticaiskills --plugin agentic-ai-skillsThis skill uses the workspace's default tool permissions.
用 LaTeX 生成典型「技术方案 / 交付文档」结构,显式建立 **大模型可交付能力** 与 **客户现有产品/系统** 之间的映射关系;不绑定特定厂商或模型品牌,具体平台与指标以合同与官方材料为准。
Analyzes startup business plans (BPs) from PDF/MD/TXT to diagnose tech architecture scalability/AI-readiness and generate Wenxin ERNIE-based enhancement schemes with roadmaps/costs.
Generates professional PDFs like whitepapers, term sheets, NDAs, SAFEs from Markdown or AI prompts using Pandoc/LaTeX and Anthropic API. CLI supports enhance/summarize.
Converts Markdown documents to professional LaTeX with TikZ visualizations and compiles to PDF. Use for presentation-quality PDFs, reports with diagrams, or print-ready documentation.
Share bugs, ideas, or general feedback.
用 LaTeX 生成典型「技术方案 / 交付文档」结构,显式建立 大模型可交付能力 与 客户现有产品/系统 之间的映射关系;不绑定特定厂商或模型品牌,具体平台与指标以合同与官方材料为准。
customer_name、industry、current_products[]scenarios[](痛点 → 能力 → 集成 → KPI)llm_capabilities[](仅写已开通/已采购项;否则标「待确认」)data_sources[]、deployment_mode、security_compliance[]sla、monitoring、cost_model(允许占位)assets/sample-input.json(或自建 JSON,字段名与样例一致)。python3 scripts/generate_techdoc.py --input assets/sample-input.json --outdir output --compile --engine tools/tectonic/tectonic--preview 生成可审阅的纯文本(并尝试用系统 cupsfilter 生成简易 PDF):... --previewoutput/llm-solution-techdoc.texoutput/llm-solution-techdoc.pdf(编译成功时)output/llm-solution-techdoc.preview.pdf(使用 --preview 且 cupsfilter 可用时)若 tools/tectonic/tectonic 不存在,可在 Unix/macOS 下安装:
curl -L --fail --silent --show-error -o install-tectonic.sh https://drop-sh.fullyjustified.nettools/tectonic/ 目录执行:sh install-tectonic.sh(tectonic 是独立的 TeX/LaTeX 引擎,负责解析 .tex 并输出 PDF;curl 用于下载官方分发脚本。)
assets/techdoc-template.tex:LaTeX 模板(ctexart + 企业文档结构)assets/sample-input.json:可跑通的示例数据scripts/generate_techdoc.py:JSON → .tex 渲染,并可选用 tectonic / xelatex / pdflatex 编译output/:可选示例生成物(.tex / .preview.txt);PDF 需本地编译或 --preview 生成,默认不纳入版本库(见 .gitignore)references/:补充资料占位,可按项目追加说明argparse:命令行参数(--input / --outdir / --compile 等)。json:读取结构化输入。pathlib.Path:路径拼接与读写文件。subprocess:调用外部 LaTeX 引擎或 cupsfilter。shutil.which:在 PATH 中查找可执行文件。