Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

saturndaysaturnday 搜索

Agent Skill

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

总安装

6,797

周安装

289

GitHub Stars

公开资料未说明

下载量

2,381
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install saturnday

简介

受监管的 AI 软件执行平台,提供 48+ 项确定性合规检查。

  • 覆盖 Python、TypeScript 与 DevOps 元数据审计。
  • 适用于金融、医疗等强监管行业软件开发流程管控。
  • 安装命令:openclaw skills install saturnday。
  • 需上传项目代码与依赖清单以启动自动化扫描。saturnday 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
saturnday
version
1.8.0
description
Governed AI software execution — 48+ deterministic governance checks for Python with additional checks for TypeScript, DevOps, and project metadata. LLM-powered security triage to filter false positives. Build projects from a brief with per-commit governance, produce governed documents, inspect release artefacts, or auto-fix findings. Six backends — Claude Code, Codex, OpenClaude, Cursor, OpenAI API, Anthropic API. Requires pip install saturnday.
homepage
https://www.saturnday.dev
source
https://github.com/honouralexwill/saturnday
license
MIT
metadata
openclaw
requires
bins
optional_bins
optional_env
install
notes
>

Saturnday

Govern AI-built software from scan to build to repair — all from the terminal. Saturnday runs 48+ deterministic governance checks on Python projects (with additional checks for TypeScript, DevOps files, and project metadata), builds projects from a brief with ticketed execution and per-commit governance, produces governed documents, inspects release artefacts, and auto-fixes findings with evidence.

Requires: pip install saturnday (Python 3.10+)

Verify installation:

saturnday version

If saturnday is not installed, run:

pip install saturnday

Three Modes

Saturnday has three core modes plus document and release modes. Choose based on the task:

ModeWhen to useCommand
ScanCheck a skill or repo for issuespython scripts/scan.py <path>
GuardFull governance on a git repopython scripts/guard.py <path>
RunBuild a project from a briefpython scripts/run.py <path> --brief "..."
DocumentProduce a governed documentsaturnday start --document --doc-spec spec.yaml
ReleaseInspect artefacts before publishingsaturnday release-preflight --repo <path>

Mode 1: Scan

Use when: checking an OpenClaw skill for security risks, hallucinated imports, fake tests, or quality issues before installing or publishing.

python scripts/scan.py <skill-directory-path>

Or directly:

saturnday scan --skill <skill-directory-path> --output /tmp/scan-results --format both

What it checks

  • 19 Python security checks (SQL injection, auth bypass, CSRF, XSS, hardcoded secrets)
  • 19 TypeScript security checks
  • Hallucinated import detection (packages that don't exist)
  • No-assert and fake test detection
  • Dead code (cross-file analysis)
  • Dependency declaration verification
  • Project hygiene (README, LICENSE)
  • Dockerfile checks (unpinned images, root user, secrets in build, missing dockerignore)
  • GitHub Actions (SHA pinning, broad permissions, pull_request_target, plaintext secrets)
  • GitLab CI (secrets in YAML, docker-in-docker patterns)
  • Jenkins (hardcoded credentials)
  • Terraform (hardcoded credentials, public CIDR)
  • Kubernetes (privileged containers, unpinned images, secrets in manifests)
  • Optional Trivy integration for deep IaC analysis

Output

Disposition: PASS or FAIL
Findings: list with check name, severity, file, line, description
Evidence: timestamped directory with full results

Mode 2: Guard

Use when: running full governance on any git repository — before merging, before deploying, or for audit.

python scripts/guard.py <repo-path>

For staged changes only (pre-commit):

python scripts/guard.py <repo-path> --staged

Or directly:

saturnday governance --repo <path> --full

What it checks

48+ deterministic checks for Python projects: security (SQL injection, XSS, CSRF, auth bypass, hardcoded secrets, WebSocket security, OAuth, token handling, rate limiting, IDOR, user enumeration, cookie security), AI-specific (hallucinated imports, fake tests, dead code, placeholders), quality (syntax, dependencies, Python version compat, code quality, blast radius, project hygiene, typosquat detection). Additional checks activate for DevOps files (Dockerfile, GitHub Actions, GitLab CI, Jenkins, Terraform, Kubernetes, config security) and TypeScript/JavaScript code.

Ratchet baselines

Prevent regressions:

saturnday baseline generate --repo <path>

Policy exemptions

Create .saturnday-policy.yaml:

expected_findings:
  - declared_not_installed
  - package_not_importable

Mode 3: Run

Use when: building a project from a description. This is the full governed execution pipeline.

python scripts/run.py <project-directory> --brief "build a REST API with auth and tests" --backend anthropic

Or interactively:

cd <project-directory>
saturnday start

Backends

BackendValueAuth
Claude Code CLIclaude-cliClaude Pro subscription
Codex CLIcodex-cliOpenAI subscription
OpenClaudeopenclaudeOpenClaude CLI
Cursor CLIcursor-cliCursor
OpenAI APIopenaiOPENAI_API_KEY
Anthropic APIanthropicANTHROPIC_API_KEY

What happens during a run

  1. Security triage — LLM-powered data flow analysis filters false positives from security findings so you only review what matters
  2. Brief enrichment — vague briefs are auto-enriched with technical detail before planning
  3. Planning — 3-stage planner generates tickets with acceptance criteria and scope constraints
  4. Execution — each ticket executed sequentially, governance checks after every commit
  5. Auto-install — dependencies are automatically installed between tickets when pyproject.toml or package.json changes
  6. Retry — if governance fails, revert, feed findings back, retry (up to 3 attempts)
  7. Ungoverned commit — if a ticket still fails after retries and auto-repair, the code is committed with a [GOVERNANCE: review required] tag so the project stays complete
  8. Auto-repair — after all tickets, ungoverned and failed tickets go through the repair pipeline again
  9. Definition of done — evaluates whether plan goals are met
  10. Review report — for ungoverned tickets: review-required.md with findings, remediation tips, and copy-paste fix prompts for each ticket
  11. Progress log — live saturnday-progress.log with ticket outcomes, governance results, and counterfactual messages showing what ungoverned AI coders would have done wrong
  12. Evidence — timestamped directory with per-ticket results, governance evidence, analytics

Resume interrupted runs

Saturnday auto-detects prior runs. If you restart saturnday run on a project that already has a ledger, tickets that already passed are skipped automatically. You can also resume explicitly:

saturnday resume --repo <path> --backend anthropic

Document Mode

Use when: producing governed documents (specs, reports, audits) with section-level checks and cross-section consistency validation.

saturnday start --document --doc-spec doc-spec.yaml --backend claude-cli

The pipeline: parse spec, plan sections, generate each section, run section-level checks (structure, placeholders, citations, evidence coverage), retry failures, run cross-section consistency checks, and produce a signed-off evidence pack.


Release Preflight

Use when: inspecting built artefacts (wheels, sdists, npm tarballs, OCI images) before publishing.

saturnday release-preflight --repo <path> --type python
saturnday release-preflight --wheel dist/mypackage-1.0-py3-none-any.whl

Runs 5 release-security checks: source map blocking, secrets in artefact, internal file blocking, allowlist manifest validation, and release diff comparison. Separate from code governance.


When to Use Each Mode

  • "Scan this skill before I install it" → Scan
  • "Check this repo for security issues" → Guard
  • "Build me a project from this description" → Run
  • "Audit this codebase" → Guard
  • "Produce a governed document" → Document mode
  • "Check this wheel before publishing" → Release preflight
  • "Fix the findings" → use saturnday repair --repo <path> directly

Prerequisites

  • pip install saturnday (Python 3.10+)
  • Node.js 18+ (for TypeScript checks)
  • Git (for Guard and Run modes)
  • At least one AI coder backend for Run mode

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

82.84%
按下载量换算1,972

安全审计

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills