Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

gogetajobgogetajob 搜索

Agent Skill

gogetajob 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,202

周安装

132

GitHub Stars

公开资料未说明

下载量

1,045
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:gogetajob(gogetajob 搜索)
来源仓库:https://github.com/kagura-agent/gogetajob
安装命令:
openclaw skills install gogetajob
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install gogetajob

简介

gogetajob 提供开源贡献工作流程支持,涵盖查找问题、实施修复、提交 PR 和跟踪结果。

  • 适合在 OpenClaw 中开始工作循环或参与开源项目时使用。
  • 协助处理 GitHub Issue、Pull Request 和代码协作相关任务。
  • 安装命令:openclaw skills install gogetajob。
  • 建议确认权限范围、维护状态及是否涉及网络请求或文件读写。

SKILL.md

name
gogetajob
description
Open-source contribution workflow — find GitHub issues, implement fixes, submit PRs, track results. Use when: (1) starting a work loop or contribution cycle (打工, contribute, work on issues), (2) scanning repos for available work, (3) submitting or following up on PRs, (4) syncing PR statuses and handling review feedback, (5) checking work stats or history. Triggers on: 打工, 干活, find work, contribute, open source, scan issues, submit PR, work loop, gogetajob. NOT for: simple one-off code edits, reading code, or tasks unrelated to open-source contribution.

GoGetAJob — Open Source Contribution Workflow

Find GitHub issues, implement fixes, submit PRs, and track everything.

Prerequisites

Required

  • FlowForge skill (workflow engine): clawhub install agent-flowforge
  • gh CLI (authenticated): gh auth status
  • git configured with your identity
  • claude CLI (Claude Code): claude --version

Optional

  • GoGetAJob CLI for stats/sync: npm install -g @kagura-agent/gogetajob

- Verify: gogetajob --help - Not required for the core work loop — FlowForge handles that

Architecture

  • Main session = dispatch + bookkeeping (scan, pick, submit, sync, stats)
  • Sub-agents = actual code work (implement, fix CI, address reviews)
  • Code changes = always via Claude Code (acpx --approve-all claude exec)

Never do implementation work in the main session. Always delegate to sub-agents.

Quick Commands

CommandWhat it does
gogetajob scan <owner/repo>Discover open issues from a repo
gogetajob scan --allScan all tracked repos
gogetajob feedBrowse available jobs
gogetajob check <ref>Deep-inspect an issue before taking it
gogetajob start <ref>Take a job — fork/clone/branch
gogetajob submit <ref> --tokens NPush + create PR + record
gogetajob followup <ref> --tokens NRecord additional effort on existing work
gogetajob syncCheck all PR statuses, flag problems
gogetajob watchSet up automatic sync via cron
gogetajob statsView overall performance and ROI
gogetajob historyView work log
gogetajob import <repo>Backfill work_log from GitHub PR history

The Work Loop

The full contribution cycle runs as a FlowForge workflow (workloop). See references/workloop-overview.md for the complete node-by-node breakdown.

Summary:

followup → find_work → study → implement → submit → verify → reflect
    │           │         │                                      │
    │           └─────────┘ (no good issue? loop back)           │
    └────────── (has review feedback? handle it first) ──────────┘

To start: flowforge start workloop

Core Rules

1. Code via Claude Code, not hand-written

Sub-agents delegate all code changes to Claude Code:

cd <repo> && acpx --approve-all claude exec "<task description with full context>"

Task descriptions must include: issue context, reviewer feedback, architecture notes, maintainer preferences from knowledge-base, and a verification suffix:

"Before committing: 1) grep for all test files that import/mock the interfaces you changed, update their mocks. 2) Run the project's test/lint commands. 3) git diff --stat to confirm no files were missed."

Exception: one-line trivial fixes can be done manually.

2. Dogfood everything

After each work session, check: did gogetajob, flowforge, or any tool have bugs or friction? If yes:

  • File an issue on the tool's repo
  • Or fix it yourself and submit a PR
  • Every round should be smoother than the last — this is compounding returns

3. Max 3 open PRs per repo

Before submitting a new PR, check: gh pr list --repo <owner/repo> --author @me --state open

If ≥ 3 open PRs exist, stop. Wait for existing PRs to be reviewed/merged before adding more. Flooding maintainers kills goodwill.

4. Accurate token tracking

Always pass real token counts from sub-agent session_status:

gogetajob submit <ref> --tokens <actual_count>
gogetajob followup <ref> --tokens <actual_count>

Never estimate. Never guess. No number → don't fill it in.

5. Pre-PR checklist (all must pass)

Before creating any PR:

  1. Does this PR solve exactly one problem?
  2. No existing fix or competing PR upstream?
  3. Read CONTRIBUTING.md and recent merge patterns?
  4. Can verify the fix locally (tests pass)?
  5. Open PRs for this repo ≤ 3?

6. Knowledge accumulation

  • Before working on a repo: read knowledge-base/projects/<repo>.md (field notes)
  • After finishing: update field notes with lessons, maintainer preferences, CI quirks
  • Cross-project insights → memex cards
  • Behavioral patterns → beliefs-candidates.md

Sync & Follow-up

Run gogetajob sync regularly (or use gogetajob watch for automatic cron).

When sync flags issues:

SignalPriorityAction
Human review commentHighSpawn sub-agent to address, then followup
CI failureMediumSpawn sub-agent to fix, then followup
Bot review (CodeRabbit etc.)LowAddress if substantive, ignore nitpicks
PR closedRead why. If someone else's fix was better, study it

Issue Selection Strategy

When picking issues from gogetajob feed:

  • Priority: real bugs > test coverage > docs > features
  • Prefer repos with existing field notes (knowledge compounds)
  • High-star repos: check for competing PRs first
  • Security/infra issues: look for related issues to batch-fix
  • Always verify: git log --oneline -20 -- <relevant files> to check if already fixed
  • Check maintainer activity: repos that only merge internal PRs are low-ROI for external contributors

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

72.21%
按下载量换算755

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install gogetajob 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills