Agent skill
happier-github-ops
Run GitHub CLI commands as the Happier bot account via `yarn ghops` (forced PAT auth + non-interactive).
Install this agent skill to your Project
npx add-skill https://github.com/happier-dev/happier/tree/dev/skills/happier-github-ops
SKILL.md
Happier GitHub Ops (bot gh wrapper)
This repo provides yarn ghops as a thin wrapper around the GitHub CLI (gh) that forces authentication via the bot Personal Access Token.
Prerequisites
ghis installed on the host and reachable onPATH.- Environment variable
HAPPIER_GITHUB_BOT_TOKENis set to the bot's fine-grained PAT.
Contract / Safety
yarn ghops ...refuses to run ifHAPPIER_GITHUB_BOT_TOKENis missing.- Runs non-interactively (
GH_PROMPT_DISABLED=1). - Uses an isolated repo-local
GH_CONFIG_DIRby default.
What to write (LLM guidelines)
When creating/updating public issues, keep it useful but minimal:
- Prefer user impact, repro steps, expected vs actual, and acceptance criteria.
- Link to PRs/commits by URL when available.
- Avoid internal-only detail: no private logs, no secrets, no tokens, and no stack dumps from private environments.
- If you need to share sensitive debugging context, summarize it and keep the raw detail local.
Suggested comment format for progress updates:
- What changed (1–3 bullets)
- Why (brief)
- Next step / what’s blocked (one line)
- Links (PR/commit/issues)
Common commands
Verify identity (must be the bot user):
yarn ghops api user
Project conventions (Happier roadmap)
Canonical public roadmap project:
- Owner:
happier-dev - Project number:
1 - URL:
https://github.com/orgs/happier-dev/projects/1
Labels (conventions)
These labels are intended to keep the public roadmap curated and consistent:
roadmap(triage-owned): include this item on the public roadmap projectpriority:p0,priority:p1,priority:p2,priority:p3(triage-owned)stage:not-shipped,stage:experimental,stage:beta,stage:ga(optional; rollout state)type: bug,type: feature,type: task(recommended)source: bug-report(applied automatically by the bug-report service)
When asked to “create an issue and put it on the roadmap with P0”, do:
- Create the issue
- Apply
roadmapandpriority:p0(and atype:*label) - Ensure it lands on the roadmap project (automation should add it; if not, add explicitly)
When you create or meaningfully update an issue/PR, ensure it’s visible on the roadmap:
- Prefer GitHub Project automation (auto-add when
roadmaplabel is present). - If you’re not sure it will be auto-added, explicitly add it:
yarn ghops project item-add 1 --owner happier-dev --url https://github.com/happier-dev/happier/issues/123
Create an issue (repo explicit is recommended):
yarn ghops issue create -R happier-dev/happier --title "..." --body "..." --label "type: bug"
For CLI-created issues, format the body like the templates:
- Bug: summary + what happened + expected behavior + (optional) repro + (optional) frequency/severity + (optional) environment
- Feature: problem + proposal + acceptance criteria
For scripting / machine-readable output, prefer gh api:
yarn ghops api repos/happier-dev/happier/issues \
-f title="..." \
-f body="..." \
--jq '{number: .number, url: .html_url}'
Comment on an issue:
yarn ghops api repos/happier-dev/happier/issues/123/comments -f body="Update: ..."
Apply labels (example):
yarn ghops api repos/happier-dev/happier/issues/123/labels -f labels[]="roadmap" -f labels[]="priority:p0"
Titles (guidelines)
Prefer short, descriptive titles without noisy prefixes:
- Good:
Sessions flicker online/inactive - Good:
CLI: doctor fails when daemon is stopped - Avoid:
P0: ...(priority belongs in the project/labels, not the title) - Avoid: long bracket stacks like
[Bug][iOS][P0] ...
Add an issue/PR to the org project (Project v2):
yarn ghops project item-add 1 --owner happier-dev --url https://github.com/happier-dev/happier/issues/123
List project fields/items (JSON):
yarn ghops project field-list 1 --owner happier-dev --format json
yarn ghops project item-list 1 --owner happier-dev --format json
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
happier-session-control
Manage Happier sessions (list/status/send/wait/history/stop + execution runs) via the happier CLI JSON contract.
happier-testing
Repo-specific TDD and test-validation workflow for Happier changes, with lane selection, fixture policy, and anti-flake guardrails.
happier-session-control
Manage Happier sessions (list/status/send/wait/history/stop + execution runs) via the happier CLI JSON contract.
verl-rl-training
Provides guidance for training LLMs with reinforcement learning using verl (Volcano Engine RL). Use when implementing RLHF, GRPO, PPO, or other RL algorithms for LLM post-training at scale with flexible infrastructure backends.
openrlhf-training
High-performance RLHF framework with Ray+vLLM acceleration. Use for PPO, GRPO, RLOO, DPO training of large models (7B-70B+). Built on Ray, vLLM, ZeRO-3. 2× faster than DeepSpeedChat with distributed architecture and GPU resource sharing.
gguf-quantization
GGUF format and llama.cpp quantization for efficient CPU/GPU inference. Use when deploying models on consumer hardware, Apple Silicon, or when needing flexible quantization from 2-8 bit without GPU requirements.
Didn't find tool you were looking for?