惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
云风的 BLOG
云风的 BLOG
Blog — PlanetScale
Blog — PlanetScale
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Vercel News
Vercel News
MyScale Blog
MyScale Blog
大猫的无限游戏
大猫的无限游戏
罗磊的独立博客
H
Help Net Security
月光博客
月光博客
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
GbyAI
GbyAI
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
chore: reduce root cleanup files · openclaw/openclaw@1f1686b
steipete · 2026-05-03 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -217,9 +217,8 @@

217217

- "Dockerfile"

218218

- "Dockerfile.*"

219219

- "docker-compose.yml"

220-

- "docker-setup.sh"

221-

- "setup-podman.sh"

222220

- ".dockerignore"

221+

- "deploy/fly.private.toml"

223222

- "scripts/docker/setup.sh"

224223

- "scripts/docker/sandbox/Dockerfile*"

225224

- "scripts/podman/setup.sh"

Original file line numberDiff line numberDiff line change

@@ -1769,10 +1769,10 @@ jobs:

17691769

python -m pip install pytest ruff pyyaml

17701770
17711771

- name: Lint Python skill scripts

1772-

run: python -m ruff check skills

1772+

run: python -m ruff check --config skills/pyproject.toml skills

17731773
17741774

- name: Test skill Python scripts

1775-

run: python -m pytest -q skills

1775+

run: python -m pytest -q -c skills/pyproject.toml skills

17761776
17771777

checks-windows:

17781778

permissions:

File renamed without changes.

Original file line numberDiff line numberDiff line change

@@ -40,7 +40,14 @@ repos:

4040

rev: v1.22.0

4141

hooks:

4242

- id: zizmor

43-

args: [--persona=regular, --min-severity=medium, --min-confidence=medium]

43+

args:

44+

[

45+

--config,

46+

.github/zizmor.yml,

47+

--persona=regular,

48+

--min-severity=medium,

49+

--min-confidence=medium,

50+

]

4451

exclude: "^(vendor/|apps/swabble/)"

4552
4653

# Python checks for skills scripts

@@ -49,13 +56,13 @@ repos:

4956

hooks:

5057

- id: ruff

5158

files: "^skills/.*\\.py$"

52-

args: [--config, pyproject.toml]

59+

args: [--config, skills/pyproject.toml]

5360
5461

- repo: local

5562

hooks:

5663

- id: skills-python-tests

5764

name: skills python tests

58-

entry: pytest -q skills

65+

entry: pytest -q -c skills/pyproject.toml skills

5966

language: python

6067

additional_dependencies: [pytest>=8, <9]

6168

pass_filenames: false

File renamed without changes.

Original file line numberDiff line numberDiff line change

@@ -45,7 +45,7 @@ read_when:

4545

<Step title="Configure fly.toml">

4646

Edit `fly.toml` to match your app name and requirements.

4747
48-

**Security note:** The default config exposes a public URL. For a hardened deployment with no public IP, see [Private Deployment](#private-deployment-hardened) or use `fly.private.toml`.

48+

**Security note:** The default config exposes a public URL. For a hardened deployment with no public IP, see [Private Deployment](#private-deployment-hardened) or use `deploy/fly.private.toml`.

4949
5050

```toml

5151

app = "my-openclaw" # Your app name

@@ -392,11 +392,11 @@ For a hardened deployment with **no public exposure**, use the private template.

392392
393393

### Setup

394394
395-

Use `fly.private.toml` instead of the standard config:

395+

Use `deploy/fly.private.toml` instead of the standard config:

396396
397397

```bash

398398

# Deploy with private config

399-

fly deploy -c fly.private.toml

399+

fly deploy -c deploy/fly.private.toml

400400

```

401401
402402

Or convert an existing deployment:

@@ -411,7 +411,7 @@ fly ips release <public-ipv6> -a my-openclaw

411411
412412

# Switch to private config so future deploys don't re-allocate public IPs

413413

# (remove [http_service] or deploy with the private template)

414-

fly deploy -c fly.private.toml

414+

fly deploy -c deploy/fly.private.toml

415415
416416

# Allocate private-only IPv6

417417

fly ips allocate-v6 --private -a my-openclaw

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,7 @@ const APP_PATH_RE = /^(?:apps\/|Swabble\/|appcast\.xml$)/u;

99

const EXTENSION_PATH_RE = /^extensions\/[^/]+(?:\/|$)/u;

1010

const CORE_PATH_RE = /^(?:src\/|ui\/|packages\/)/u;

1111

const TOOLING_PATH_RE =

12-

/^(?:scripts\/|test\/vitest\/|\.github\/|\.vscode\/|git-hooks\/|Dockerfile\.sandbox(?:-(?:browser|common))?$|Makefile$|openclaw\.podman\.env$|vitest(?:\..+)?\.config\.ts$|tsconfig.*\.json$|\.dockerignore$|\.gitignore$|\.jscpd\.json$|\.npmignore$|\.pre-commit-config\.yaml$|\.swiftformat$|\.oxlint.*|\.oxfmt.*)/u;

12+

/^(?:scripts\/|test\/vitest\/|\.github\/|\.vscode\/|deploy\/|git-hooks\/|Dockerfile\.sandbox(?:-(?:browser|common))?$|Makefile$|docker-setup\.sh$|setup-podman\.sh$|openclaw\.podman\.env$|skills\/pyproject\.toml$|vitest(?:\..+)?\.config\.ts$|tsconfig.*\.json$|\.dockerignore$|\.gitignore$|\.jscpd\.json$|\.npmignore$|\.pre-commit-config\.yaml$|\.swiftformat$|\.oxlint.*|\.oxfmt.*)/u;

1313

const ROOT_GLOBAL_PATH_RE =

1414

/^(?:package\.json$|pnpm-lock\.yaml$|pnpm-workspace\.yaml$|tsdown\.config\.ts$|vitest\.config\.ts$)/u;

1515

const LEGACY_ROOT_ASSET_PATH_RE = /^assets\//u;

Original file line numberDiff line numberDiff line change

@@ -26,7 +26,7 @@ const EMPTY_SCOPE = {

2626

};

2727
2828

const DOCS_PATH_RE = /^(docs\/|.*\.mdx?$)/;

29-

const SKILLS_PYTHON_SCOPE_RE = /^(skills\/|pyproject\.toml$)/;

29+

const SKILLS_PYTHON_SCOPE_RE = /^(skills\/|skills\/pyproject\.toml$)/;

3030

const INSTALL_SMOKE_WORKFLOW_SCOPE_RE = /^\.github\/workflows\/install-smoke\.yml$/;

3131

const MACOS_PROTOCOL_GEN_RE =

3232

/^(apps\/macos\/Sources\/OpenClawProtocol\/|apps\/shared\/OpenClawKit\/Sources\/OpenClawProtocol\/)/;

Original file line numberDiff line numberDiff line change

@@ -145,7 +145,7 @@ The Docker setup uses three config files on the host. The container never stores

145145

| -------------------------- | -------------------------------------------------------------------------- |

146146

| `Dockerfile` | Builds the `openclaw:local` image (Node 22, pnpm, non-root `node` user) |

147147

| `docker-compose.yml` | Defines `openclaw-gateway` and `openclaw-cli` services, bind-mounts, ports |

148-

| `docker-setup.sh` | First-time setup — builds image, creates `.env` from `.env.example` |

148+

| `scripts/docker/setup.sh` | First-time setup — builds image, creates `.env` from `.env.example` |

149149

| `.env.example` | Template for `<project>/.env` with all supported vars and docs |

150150

| `docker-compose.extra.yml` | Optional overrides — auto-loaded by ClawDock helpers if present |

151151

@@ -161,14 +161,14 @@ The Docker setup uses three config files on the host. The container never stores

161161
162162

### Initial Setup

163163
164-

`./docker-setup.sh` (in the project root) handles first-time Docker configuration:

164+

`./scripts/docker/setup.sh` handles first-time Docker configuration:

165165
166166

- Builds the `openclaw:local` image from `Dockerfile`

167167

- Creates `<project>/.env` from `.env.example` with a generated gateway token

168168

- Sets up `~/.openclaw` directories if they don't exist

169169
170170

```bash

171-

./docker-setup.sh

171+

./scripts/docker/setup.sh

172172

```

173173
174174

After setup, add your API keys: