https://github.com/xerrors/agent-skills
Private agent skills repository
https://github.com/xerrors/agent-skills
Last synced: 3 days ago
JSON representation
Private agent skills repository
- Host: GitHub
- URL: https://github.com/xerrors/agent-skills
- Owner: xerrors
- Created: 2026-05-10T15:51:02.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-06-24T02:10:13.000Z (11 days ago)
- Last Synced: 2026-06-24T04:11:08.341Z (11 days ago)
- Language: HTML
- Size: 59.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Agent Skills
Private skill repository for reusable agent workflows.
Skills live under `skills//` and each skill must include a
`SKILL.md` file.
## Repository Layout
```text
agent-skills/
├── skills/
│ └── process-arxiv-paper/
│ ├── SKILL.md
│ └── agents/
│ └── openai.yaml
├── CONTRIBUTING.md
└── README.md
```
Only `SKILL.md` is required for a skill. The other folders are optional and
should be added only when they help the skill stay concise and reusable.
## Install Skills
List available skills:
```bash
npx --yes skills add xerrors/agent-skills --list
```
Install all skills for Codex globally:
```bash
npx --yes skills add xerrors/agent-skills -a codex --all -g
```
Install one skill:
```bash
npx --yes skills add xerrors/agent-skills -a codex --skill -g -y
```
Update installed skills:
```bash
npx --yes skills update -g
```
## Local Development
From a local checkout, list available skills:
```bash
npx --yes skills add . --list
```
Install a local skill while developing:
```bash
npx --yes skills add . -a codex --skill -g -y
```
Restart Codex after installing or updating skills.
## Current Skills
- `process-arxiv-paper`: find, download, translate, and analyze arXiv papers,
including paper assets, source-code discovery, Chinese Markdown translation,
and UV/demo notes.
- `product-launch-card-kit`: create a publish-ready social launch workbench
for apps, open-source projects, agent skills, plugins, and developer tools,
including screenshot-ready cards, PNG export/download, titles, body copy, and
tags.
- `yuxi-manage`: manage the `xerrors/Yuxi` GitHub project, including star
growth reports, trend charts, current PR status, open PR overviews, review
state, CI/check signals, and latest PR dynamics.