Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

golangGo 搜索

Agent Skill

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

总安装

11,384

周安装

489

GitHub Stars

公开资料未说明

下载量

3,990
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install golang

简介

使用集成开发工具构建、测试、检查和格式化 Go 项目。在编译二进制文件、运行测试、检查代码或格式化文件时使用。

SKILL.md

name
golang
version
2.0.0
author
BytesAgain
homepage
https://bytesagain.com
source
https://github.com/bytesagain/ai-skills
license
MIT-0
tags
[golang, tool, utility]
description
Build, test, lint, and format Go projects with integrated dev tooling. Use when compiling binaries, running tests, linting code, or formatting files.

Golang

Developer toolkit for checking, validating, generating, formatting, linting, converting, and managing Go development entries. All operations are logged with timestamps and stored locally for full traceability.

Commands

CommandUsageDescription
checkgolang check <input>Record a check entry or view recent checks
validategolang validate <input>Record a validation entry or view recent validations
generategolang generate <input>Record a generate entry or view recent generations
formatgolang format <input>Record a format entry or view recent formatting operations
lintgolang lint <input>Record a lint entry or view recent lint results
explaingolang explain <input>Record an explain entry or view recent explanations
convertgolang convert <input>Record a convert entry or view recent conversions
templategolang template <input>Record a template entry or view recent templates
diffgolang diff <input>Record a diff entry or view recent diffs
previewgolang preview <input>Record a preview entry or view recent previews
fixgolang fix <input>Record a fix entry or view recent fixes
reportgolang report <input>Record a report entry or view recent reports
statsgolang statsShow summary statistics across all entry types
export <fmt>`golang export json\csv\txt`Export all entries to JSON, CSV, or plain text
search <term>golang search <term>Search across all log files for a keyword
recentgolang recentShow the 20 most recent history entries
statusgolang statusHealth check — version, entry count, disk usage, last activity
helpgolang helpShow help with all available commands
versiongolang versionPrint version string

Each command (check, validate, generate, format, lint, explain, convert, template, diff, preview, fix, report) works the same way:

  • With arguments: Saves the input with a timestamp to <command>.log and logs to history.log.
  • Without arguments: Displays the 20 most recent entries from <command>.log.

Data Storage

All data is stored locally at ~/.local/share/golang/:

  • <command>.log — Timestamped entries for each command (e.g., check.log, lint.log, format.log)
  • history.log — Unified activity log across all commands
  • export.json, export.csv, export.txt — Generated export files

No cloud, no network calls, no API keys required. Fully offline.

Requirements

  • Bash 4+ (uses set -euo pipefail)
  • Standard Unix utilities (date, wc, du, grep, head, tail, sed)
  • No external dependencies

When to Use

  1. Logging Go build and test results — Use golang check "go build ./... passed" or golang validate "all tests green on v1.4.2" to record build/test outcomes with timestamps for CI audit trails.
  2. Tracking lint and format operations — Use golang lint "golangci-lint found 3 issues in pkg/handler" and golang format "gofmt applied to cmd/" to maintain a history of code quality actions.
  3. Recording code generation and templates — Use golang generate "protobuf stubs for api/v2" and golang template "new service boilerplate created" to log what was generated and when.
  4. Searching past development notes — Use golang search "handler" to find all entries across every log file mentioning a specific package, file, or concept.
  5. Exporting development logs for review — Use golang export json to extract all logged entries as structured JSON for team reviews, retrospectives, or integration with project management tools.

Examples

# Record a check entry
golang check "go vet ./... clean on main branch"

# Record a lint finding
golang lint "unused variable in internal/cache/store.go:88"

# Log a format operation
golang format "goimports applied to all .go files"

# Record code generation
golang generate "mockgen interfaces for service layer"

# Log a fix
golang fix "resolved nil pointer in middleware/auth.go"

# View recent lint entries (no args = list mode)
golang lint

# Search all logs for a keyword
golang search "middleware"

# Export everything to JSON
golang export json

# Export to CSV for spreadsheet analysis
golang export csv

# View summary statistics
golang stats

# Health check
golang status

# View recent activity across all commands
golang recent

How It Works

Golang stores all data locally in ~/.local/share/golang/. Each command logs activity with timestamps in the format YYYY-MM-DD HH:MM|<input>, enabling full traceability. The unified history.log records every operation with MM-DD HH:MM <command>: <input> format for cross-command auditing.


Powered by BytesAgain | bytesagain.com | hello@bytesagain.com

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.62%
按下载量换算3,935

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills