[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-80775":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":9,"language":10,"languages":9,"totalLinesOfCode":9,"stars":11,"forks":12,"watchers":13,"openIssues":14,"contributorsCount":14,"subscribersCount":14,"size":14,"stars1d":14,"stars7d":15,"stars30d":15,"stars90d":14,"forks30d":14,"starsTrendScore":14,"compositeScore":16,"rankGlobal":9,"rankLanguage":9,"license":17,"archived":18,"fork":18,"defaultBranch":19,"hasWiki":20,"hasPages":18,"topics":21,"createdAt":9,"pushedAt":9,"updatedAt":22,"readmeContent":23,"aiSummary":24,"trendingCount":14,"starSnapshotCount":14,"syncStatus":25,"lastSyncTime":26,"discoverSource":27},80775,"Gerry2024-hub-python-origin-plotting-skill","Gerry2024-hub\u002FGerry2024-hub-python-origin-plotting-skill","Gerry2024-hub","Skill for Python-driven OriginPro plotting",null,"Python",44,3,40,0,4,44.21,"MIT License",false,"main",true,[],"2026-06-12 04:01:30","# Python Origin Plotting Skill\n\nThis repository packages a Codex skill for Python-driven OriginPro plotting. It helps Codex create reproducible `originpro` scripts, build Origin workbooks and graph pages, export publication figures, and save `.opju` projects from Excel or CSV data.\n\n## Repository Layout\n\n```text\npython-origin-plotting-skill\u002F\n  README.md\n  AGENTS.md\n  skills\u002F\n    python-origin-plotting\u002F\n      SKILL.md\n      .clawhubignore\n      agents\u002Fopenai.yaml\n      scripts\u002Foriginpro_plot_template.py\n      references\u002Foriginpro-workflow.md\n      references\u002Ftroubleshooting.md\n```\n\n## Install Locally\n\nCopy the skill folder into your Codex skills directory.\n\nPowerShell:\n\n```powershell\n$repo = (Get-Location).Path\n$dest = \"$env:USERPROFILE\\.codex\\skills\\python-origin-plotting\"\nNew-Item -ItemType Directory -Force -Path (Split-Path $dest)\nCopy-Item -Recurse -Force \"$repo\\skills\\python-origin-plotting\" $dest\n```\n\nmacOS\u002FLinux:\n\n```bash\nrepo=\"\u002Fpath\u002Fto\u002Fpython-origin-plotting-skill\"\ndest=\"${CODEX_HOME:-$HOME\u002F.codex}\u002Fskills\u002Fpython-origin-plotting\"\nmkdir -p \"$(dirname \"$dest\")\"\ncp -R \"$repo\u002Fskills\u002Fpython-origin-plotting\" \"$dest\"\n```\n\nRestart Codex after installing, then try:\n\n```text\nUse $python-origin-plotting to make an OriginPro grouped bar chart from this Excel file and save PNG plus OPJU outputs.\n```\n\n## Use with OpenClaw, ClawHub, or Other Agents\n\nOpenClaw\u002FClawHub also uses a `SKILL.md`-based skill folder. This repository keeps the skill at:\n\n```text\nskills\u002Fpython-origin-plotting\n```\n\nTo publish the skill bundle to ClawHub, publish that skill folder, not the whole repository:\n\n```powershell\nnpx clawhub whoami\nnpx clawhub publish .\\skills\\python-origin-plotting `\n  --slug python-origin-plotting `\n  --name \"Python Origin Plotting\" `\n  --version 0.1.0 `\n  --changelog \"Initial release\" `\n  --tags latest\n```\n\nAfter publishing, inspect it:\n\n```powershell\nnpx clawhub inspect python-origin-plotting\nnpx clawhub inspect python-origin-plotting --files\n```\n\nFor generic agents that do not understand Codex skills directly, point them to `AGENTS.md` or say:\n\n```text\nRead AGENTS.md, then use the python-origin-plotting skill to generate an OriginPro plotting script from my Excel\u002FCSV data.\n```\n\n## Use the Template Script\n\nThe bundled script is a starting point for new OriginPro automation:\n\n```powershell\npython .\\skills\\python-origin-plotting\\scripts\\originpro_plot_template.py .\\data.xlsx --sheet \"Sheet1\" --out .\\plots_origin --show\n```\n\nFor real work, adapt `prepare_data()` and `build_origin_project()` to the target columns and graph types.\n\n## Validate the Skill\n\nFrom this repository root:\n\n```powershell\npython D:\\.codex\\skills\\.system\\skill-creator\\scripts\\quick_validate.py .\\skills\\python-origin-plotting\npython -m py_compile .\\skills\\python-origin-plotting\\scripts\\originpro_plot_template.py\n```\n\nThe first command checks skill metadata and structure. The second catches Python syntax issues without needing Origin to be installed.\n\n## Publish to GitHub for the First Time\n\n1. Create a new empty repository on GitHub, for example `python-origin-plotting-skill`. Do not add a README on GitHub if this local folder already has one.\n2. Open PowerShell in this folder:\n\n```powershell\ncd \"path\\to\\python-origin-plotting-skill\"\ngit init\ngit add .\ngit commit -m \"Add python-origin-plotting Codex skill\"\ngit branch -M main\ngit remote add origin https:\u002F\u002Fgithub.com\u002F\u003Cyour-name>\u002Fpython-origin-plotting-skill.git\ngit push -u origin main\n```\n\n3. Replace `\u003Cyour-name>` with your GitHub username. If Git asks you to sign in, follow the browser prompt or use a personal access token.\n\n## Recommended Release Checklist\n\n- Keep private data files, unpublished figures, and generated `.opju` outputs out of the repo.\n- Commit only the reusable skill, template script, and documentation.\n- Add screenshots to the GitHub README only if they are safe to publish.\n- Tag a first version after the initial push:\n\n```powershell\ngit tag v0.1.0\ngit push origin v0.1.0\n```\n","该项目是一个用于Python驱动的OriginPro绘图技能包，帮助用户通过Python脚本创建可重复的OriginPro图表、构建工作簿和图形页面，并从Excel或CSV数据导出出版级图形及保存`.opju`项目文件。其核心功能包括生成OriginPro脚本模板、支持多种图表类型以及与Codex集成以实现自动化绘图流程。技术上基于Python语言开发，遵循MIT许可协议开放源代码。适用于需要利用Python进行科学计算可视化处理的研究人员、工程师或数据分析人员，在科研论文撰写、实验结果展示等场景下特别有用。",2,"2026-06-11 04:02:18","CREATED_QUERY"]