An open API service indexing awesome lists of open source software.

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

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.