Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

gspdev-housekeepinggspdev 内务管理

Agent Skill

gspdev-housekeeping 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

291

周安装

12

GitHub Stars

29

下载量

95
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gspdev-housekeeping(gspdev 内务管理)
来源仓库:https://github.com/jubscodes/get-shit-pretty
仓库路径:skills/gspdev-housekeeping
安装命令:
npx skills add https://github.com/jubscodes/get-shit-pretty --skill gspdev-housekeeping
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jubscodes/get-shit-pretty --skill gspdev-housekeeping

简介

gspdev-housekeeping 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理项目状态和变更事项。

  • 适用于围绕仓库状态、代码变更或协作事项进行信息组织和分析。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用。
  • 安装前需确认权限范围和维护状态,注意可能触发联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Run this often — after adding/removing skills or agents, after architecture changes, after version bumps. Think of it as a linter, not a test suite.

Source layout reference:

  • gsp/skills/ — skills (SKILL.md files)
  • gsp/agents/ — agents (gsp-*.md files)
  • gsp/templates/ — config, state, brief, roadmap templates
  • bin/install.js — multi-runtime installer
  • VERSION, package.json — version sources
  • CLAUDE.md — project instructions (references counts)

Step 0: Parse mode

$ARGUMENTS:

  • check or empty — dry run, report only
  • fix — report and fix each issue (confirm before editing)

Step 1: Gather counts

Run in parallel:

# Actual counts from filesystem
SKILL_COUNT=$(ls -d gsp/skills/*/SKILL.md 2>/dev/null | wc -l | tr -d ' ')
AGENT_COUNT=$(ls gsp/agents/gsp-*.md 2>/dev/null | wc -l | tr -d ' ')
echo "skills=$SKILL_COUNT agents=$AGENT_COUNT"
# Versions from all sources
cat VERSION
node -e "process.stdout.write(require('./package.json').version)"
echo
node -e "process.stdout.write(require('./gsp/templates/projects/config.json').version)"
echo
node -e "process.stdout.write(require('./gsp/templates/branding/config.json').version)"

Step 2: Version sync

Check that all 4 version sources agree: VERSION, package.json, projects/config.json, branding/config.json.

Any mismatch → drift issue. The VERSION file is the source of truth.

Fix: update the mismatched files to match VERSION.

Step 2.5: Changelog health

Check CHANGELOG.md for common issues:

  1. Unreleased section exists## [Unreleased] must be present at the top. If missing, flag it.
  2. Unreleased is not empty — if there are commits since the last versioned entry but Unreleased has no content, flag: "Unreleased section is empty but there are new commits. Run /gspdev-changelog update to populate."
  3. Current version coverage — if VERSION matches the latest versioned section in CHANGELOG.md, that's fine (post-release state). If VERSION is *ahead* of the changelog (no versioned section for it), Unreleased should have content.

This check is informational — don't auto-fix. Suggest /gspdev-changelog update or /gspdev-changelog release as appropriate.

Fix: not auto-fixable. Report only.

Step 3: Count drift in CLAUDE.md

Grep CLAUDE.md for counts like "38 skills", "15 agents". Compare against actual filesystem counts from Step 1.

Any mismatch → drift issue.

Fix: update the numbers in CLAUDE.md. Also check the installer table row counts if they reference specific numbers.

Step 4: Stale terminology

Grep across gsp/skills/, gsp/agents/, gsp/templates/, and bin/install.js comments for:

# Stale "commands" references (should be "skills")
pattern: "commands/" or "command " (in context of GSP structure, not generic English)
files: gsp/**/*.md, bin/install.js (comments only)

# Old phase count (5 phases → 4 phases for branding)
pattern: "5 phases" or "five phases" near "brand" context
files: gsp/**/*.md

# Old invocation syntax in source
pattern: /gsp: (colon) is the OLD syntax — should be converted to /gsp- (hyphen)
files: gsp/**/*.md (source now uses /gsp- directly, matching Claude Code registration)

Be careful with false positives:

  • "commands" in generic English context is fine
  • /gsp- is correct in OpenCode/Gemini context (runtime conversion)
  • "5" near branding that isn't about phase count is fine

Fix: replace stale terms with current equivalents.

Step 5: Installer comment drift

Check bin/install.js for comments that reference outdated structure:

  • References to "commands/" directory
  • Outdated count comments
  • Stale function descriptions

Only check comments (lines starting with // or inside /* */), not code logic — code correctness is /gspdev-audit's job.

Fix: update the comments.

Step 6: Working tree hygiene

git status --short
# Recent commits for context on what's already been committed
git log --oneline -10

Flag:

  • Modified files that look like they belong to a previous chore session
  • Untracked files in dev/ that should be committed or gitignored
  • Modified files outside the expected working area

If there are uncommitted changes (staged or unstaged), propose commits:

  1. Group related changed files into logical commits (e.g. "version bumps", "new skill", "installer fixes")
  2. For each proposed commit, show the files and a draft commit message
  3. In fix mode, ask the user to confirm each proposed commit before creating it
  4. In check mode, list the proposed commits in the report under a "Proposed commits" subsection

Step 7: Report

Output a compact report:

  /gspdev-housekeeping check
  ═══════════════════════════════════════

  Versions
    ✓ VERSION, package.json                 0.5.0
    ✗ projects/config.json                  0.4.2 → 0.5.0
    ✗ branding/config.json                  0.4.3 → 0.5.0

  Counts
    ✓ skills                                38 (CLAUDE.md says 38)
    ✗ agents                                16 (CLAUDE.md says 15)

  Stale references
    ✗ gsp-start/SKILL.md:18                "5 phases" → "4 phases"
    ✗ update/SKILL.md:63                    "commands/gsp/*" → "skills/*"
    ✗ bin/install.js:1017                   comment references "commands/"

  Working tree
    M bin/install.js                        (modified, unstaged)
    ?? dev/skills/gspdev-dev/                  (untracked)

  Proposed commits
    1. "fix: update version refs in config templates"
       → gsp/templates/projects/config.json
       → gsp/templates/branding/config.json
    2. "chore: add gspdev-dev skill"
       → dev/skills/gspdev-dev/

  ─────────────────────────────────────
  5 issues found, 2 commits proposed. Run /gspdev-housekeeping fix to apply.

In fix mode, after the report, walk through each fixable issue:

  1. Show the exact change (old → new, with file and line)
  2. Apply the edit
  3. Confirm it was applied

After all fixes, re-run the checks to confirm clean state.

Important notes

  • Fast — no network calls, no issue fetching, no deep analysis. Pure filesystem checks.
  • Safe — in check mode, reads only. In fix mode, edits only the specific drift patterns.
  • Complementary to audit — this catches the 80% of drift that happens day-to-day. Run /gspdev-audit for the full picture before releases.
  • Don't fix code logic — only fix metadata, comments, counts, and references. Code correctness is out of scope.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.98%
按下载量换算35

Claude

30.54%
按下载量换算29

Cursor

20.08%
按下载量换算19

Gemini CLI

8.66%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills