Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

local-action-verification本地动作验证

Agent Skill

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

总安装

6,209

周安装

264

GitHub Stars

50

下载量

2,175
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:local-action-verification(本地动作验证)
来源仓库:https://github.com/google-labs-code/jules-skills
仓库路径:skills/local-action-verification
安装命令:
npx skills add https://github.com/google-labs-code/jules-skills --skill local-action-verification
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/google-labs-code/jules-skills --skill local-action-verification

简介

用于查找、检索和筛选相关信息。local-action-verification 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装方式:通过 npx skills add 命令从 GitHub 仓库添加。
  • 使用前应确认权限范围、是否会触发联网或文件读写。

SKILL.md

Local Action Verification with act

You are setting up a repository so that Jules (or any agent) can run GitHub Actions workflows locally using act to verify code changes pass CI before pushing.

What You're Setting Up

Two scripts and an agents.md section that enable local CI verification:

  1. install-act.sh — Installs act if missing (platform-aware, sudo fallback)
  2. run-act.sh — Runs act in the background with log polling to avoid agent timeouts
  3. AGENTS.md section — Instructions Jules reads to know how to use these scripts

Setup Steps

Step 1: Copy scripts to the repository

Copy the scripts/ directory from this skill into the target repository at scripts/act/:

Target structure:
scripts/act/
├── install-act.sh
└── run-act.sh

Make sure the scripts are executable:

chmod +x scripts/act/install-act.sh scripts/act/run-act.sh

Step 2: Add instructions to AGENTS.md

Append the following section to the repository's AGENTS.md file (create it if it doesn't exist). This is how Jules discovers the local verification capability:

## Local CI Verification

Before pushing code or opening a PR, verify changes pass CI locally using `act`.

### Prerequisites
- Docker must be running
- If `act` is not installed, run: `bash scripts/act/install-act.sh`

### How to Verify

1. Read `.github/workflows/` to find the CI workflow and identify the job ID
2. Run the verification script:

bash scripts/act/run-act.sh "push -j <JOB_ID>"


With matrix: `bash scripts/act/run-act.sh "push -j <JOB_ID> --matrix <KEY>:<VALUE>"` 3. If the run fails, read the log output, fix the code, and re-run 4. After verification, clean up:

rm -f act_output.log git checkout <any unintended file changes>


### Configuration

- Timeout: `ACT_TIMEOUT=900 bash scripts/act/run-act.sh "..."` (default: 600s)
- Poll interval: `ACT_POLL=15 bash scripts/act/run-act.sh "..."` (default: 10s)
- Custom image: pass `-P ubuntu-latest=node:20-bookworm` in the arguments for faster pulls

Step 3: Update .gitignore

Append these entries to .gitignore if they don't already exist:


# act artifacts

act_output.log.secrets

Step 4: Print next steps for the user

Tell the user:

  1. Docker must be installed and running on any machine (or Jules VM) where verification runs
  2. act will be auto-installed on first use via scripts/act/install-act.sh
  3. If workflows require secrets, create a .secrets file (KEY=VALUE format) — never commit it
  4. Commit all generated files

Troubleshooting

  • Docker not running: act requires Docker. Ensure the Docker daemon is started.
  • Image pull slow: First run downloads ~2GB+. Use -P ubuntu-latest=node:20-bookworm for faster pulls.
  • ARM64 issues: On Apple Silicon, add --container-architecture linux/amd64 to act arguments.
  • Secrets required: Create a .secrets file and pass --secret-file .secrets in the act arguments.
  • Timeout: Increase with ACT_TIMEOUT=1200 bash scripts/act/run-act.sh "...".

Resource References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.32%
按下载量换算768

Claude

32.88%
按下载量换算715

Cursor

18.03%
按下载量换算392

Gemini CLI

9.09%
按下载量换算198

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills