用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/colonelpanic8/dotfiles --skill hackage-release命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Answer questions about the Paseo product and app, including setup, configuration, connectivity, providers, workspaces, updates, logs, and troubleshooting. Use when a user inside Paseo asks how Paseo works, how to configure it, or why something is broken; use the paseo skill instead to operate agents and workspaces through MCP or the CLI.
Build and manage trusted local Paseo plugins. Use when the user asks to create, edit, install, reload, enable, disable, remove, or troubleshoot a Paseo plugin; add a native surface or sidebar item; use Paseo from plugin code; add plugin RPCs; or contribute composer attachments.
Shape output for a reader with ADHD: lead with the next action, number multi-step work, restate state across turns, suppress tangents, give specific time estimates, make wins visible. Invoke with /i-have-adhd; stays on until "stop adhd mode".
基于 SOC 职业分类
正在显示 SKILL.md
| name | hackage-release |
| description | Use when user asks to release, publish, or bump version of a Haskell package to Hackage |
Bump version, build, validate, tag, push, and publish a Haskell package to Hackage.
package.yaml (if using hpack) or .cabal filehpackcabal buildcabal check (must report zero warnings)cabal sdistgit tag vX.Y.Z.Wgit push && git push --tagspass show hackage.haskell.org.gpg
user: line has usernamecabal upload --publish <sdist-tarball> --username=<user> --password='<pass>'cabal haddock --haddock-for-hackage then cabal upload --documentation --publish <docs-tarball> --username=<user> --password='<pass>'Haskell uses the Package Versioning Policy with format A.B.C.D:
| Component | When to Bump |
|---|---|
| A.B (major) | Breaking API changes |
| C (minor) | Backwards-compatible new features |
| D (patch) | Bug fixes, non-API changes |
If the project uses a Nix flake, wrap cabal commands with nix develop:
nix develop --command cabal build
nix develop --command cabal check
nix develop --command hpack package.yaml
Prefer nix develop (flake) over nix-shell (legacy) to avoid ABI mismatches.
Hackage warns about:
text >= 1.2 && < 2.2)< 2 not < 2.0.0; use < 0.4 not < 0.4.0.0Run cabal check to verify zero warnings before releasing.
cabal build succeedscabal check reports no errors or warnings