Skip to content

Commit b524545

Browse files
authored
New package: ZeroClawLabs.ZeroClaw version 0.1.7 (microsoft#344179)
1 parent 92bf4db commit b524545

4 files changed

Lines changed: 156 additions & 0 deletions

File tree

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-5-4.Win32NT
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
3+
4+
PackageIdentifier: ZeroClawLabs.ZeroClaw
5+
PackageVersion: 0.1.7
6+
InstallerType: zip
7+
NestedInstallerType: portable
8+
NestedInstallerFiles:
9+
- RelativeFilePath: zeroclaw.exe
10+
Commands:
11+
- zeroclaw
12+
Dependencies:
13+
PackageDependencies:
14+
- PackageIdentifier: Microsoft.VCRedist.2015+.x64
15+
ReleaseDate: 2026-02-24
16+
Installers:
17+
- Architecture: x64
18+
InstallerUrl: https://github.com/zeroclaw-labs/zeroclaw/releases/download/v0.1.7/zeroclaw-x86_64-pc-windows-msvc.zip
19+
InstallerSha256: 74879CC238B7DF58A0D1E74D7208462B00FF4FF10BD3F1083F5652E15F89338D
20+
ManifestType: installer
21+
ManifestVersion: 1.12.0
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-5-4.Win32NT
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
3+
4+
PackageIdentifier: ZeroClawLabs.ZeroClaw
5+
PackageVersion: 0.1.7
6+
PackageLocale: en-US
7+
Publisher: ZeroClaw Labs
8+
PublisherUrl: https://www.zeroclawlabs.ai/
9+
PublisherSupportUrl: https://github.com/zeroclaw-labs/zeroclaw/issues
10+
# PrivacyUrl:
11+
# Author:
12+
PackageName: ZeroClaw
13+
PackageUrl: https://www.zeroclawlabs.ai/
14+
License: MIT or Apache-2.0
15+
LicenseUrl: https://github.com/zeroclaw-labs/zeroclaw#license
16+
Copyright: © 2026 ZeroClaw Labs. All rights reserved.
17+
# CopyrightUrl:
18+
ShortDescription: Fast, small, and fully autonomous AI assistant framework — deploy anywhere, swap anything 🦀
19+
Description: |-
20+
ZeroClaw is the runtime framework for agentic workflows — infrastructure that abstracts models, tools, memory, and execution so agents can be built once and run anywhere.
21+
✨ Features
22+
- 🏎️ Lean Runtime by Default: Common CLI and status workflows run in a few-megabyte memory envelope on release builds.
23+
- 💰 Cost-Efficient Deployment: Designed for low-cost boards and small cloud instances without heavyweight runtime dependencies.
24+
- ⚡ Fast Cold Starts: Single-binary Rust runtime keeps command and daemon startup near-instant for daily operations.
25+
- 🌍 Portable Architecture: One binary-first workflow across ARM, x86, and RISC-V with swappable providers/channels/tools.
26+
- 🔍 Research Phase: Proactive information gathering through tools before response generation — reduces hallucinations by fact-checking first.
27+
Why teams pick ZeroClaw
28+
- Lean by default: small Rust binary, fast startup, low memory footprint.
29+
- Secure by design: pairing, strict sandboxing, explicit allowlists, workspace scoping.
30+
- Fully swappable: core systems are traits (providers, channels, tools, memory, tunnels).
31+
- No lock-in: OpenAI-compatible provider support + pluggable custom endpoints.
32+
# Moniker:
33+
Tags:
34+
- agent
35+
- agentic
36+
- ai
37+
- chatbot
38+
- claw
39+
- large-language-model
40+
- llm
41+
ReleaseNotes: |-
42+
What's Changed
43+
- chore(license): make apache primary while preserving dual-license by @willsarg in #1307
44+
- fix(license): adopt rust-style dual-license layout for github detection by @willsarg in #1308
45+
- fix(license): restore canonical apache-2.0 text for detection by @willsarg in #1309
46+
- ci(policy): restrict main PR authors and target bot PRs to dev by @willsarg in #1310
47+
- ci(intake): warn and retarget non-promotion PRs from main to dev by @willsarg in #1319
48+
- ci(release): add bot-owned Homebrew publish workflow by @willsarg in #1323
49+
- chore(release): prepare v0.1.5 baseline by @willsarg in #1324
50+
- ci(homebrew): fix bot fork auth clone path by @willsarg in #1329
51+
- chore(release): bump version to v0.1.6 by @willsarg in #1330
52+
- chore(sync): merge main into dev for v0.1.6 promotion by @willsarg in #1332
53+
- chore(sync): merge main into dev (merge commit) by @willsarg in #1333
54+
- feat(channel): split lark and feishu providers by @chumyin in #1358
55+
- ci(homebrew): harden bot auth and preflight access checks by @willsarg in #1372
56+
- fix(telegram): prevent non-image files from getting [IMAGE:] markers by @agorevski in #1294
57+
- chore(sync): resolve dev/main Homebrew workflow conflict by @willsarg in #1377
58+
- fix(provider): preserve reasoning_content in tool-call conversation history by @vernonstinebaker in #1347
59+
- chore(ci): promote dev to main for Homebrew auth hardening by @willsarg in #1375
60+
- ci(homebrew): prefer HOMEBREW_UPSTREAM_PR_TOKEN with fallback by @willsarg in #1384
61+
- ci(homebrew): handle existing upstream remote and main base by @willsarg in #1385
62+
- feat(security): Add prompt injection defense and leak detection by @rexlunae in #1433
63+
- feat(providers): add Novita AI as OpenAI-compatible provider by @Alex-wuhu in #1496
64+
- feat: add WATI WhatsApp Business API channel by @kenyeung128 in #1472
65+
- feat(release): add Android target support (armv7 + aarch64) by @Preventnetworkhacking in #1456
66+
- release: v0.1.7 by @theonlyhennygod in #1582
67+
New Contributors
68+
- @rexlunae made their first contribution in #1433
69+
- @Alex-wuhu made their first contribution in #1496
70+
- @kenyeung128 made their first contribution in #1472
71+
Full Changelog: https://github.com/zeroclaw-labs/zeroclaw/compare/v0.1.6...v0.1.7
72+
ReleaseNotesUrl: https://github.com/zeroclaw-labs/zeroclaw/releases/tag/v0.1.7
73+
# PurchaseUrl:
74+
# InstallationNotes:
75+
Documentations:
76+
- DocumentLabel: Documentation
77+
DocumentUrl: https://www.zeroclawlabs.ai/docs
78+
ManifestType: defaultLocale
79+
ManifestVersion: 1.12.0
Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-5-4.Win32NT
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
3+
4+
PackageIdentifier: ZeroClawLabs.ZeroClaw
5+
PackageVersion: 0.1.7
6+
PackageLocale: zh-CN
7+
# Publisher:
8+
# PublisherUrl:
9+
# PublisherSupportUrl:
10+
# PrivacyUrl:
11+
# Author:
12+
# PackageName:
13+
# PackageUrl:
14+
# License:
15+
# LicenseUrl:
16+
# Copyright:
17+
# CopyrightUrl:
18+
ShortDescription: 快速、小巧且完全自主的 AI 助手框架——可部署于任意位置,随意替换任何组件 🦀
19+
Description: |-
20+
ZeroClaw 是用于智能体工作流的运行时框架——一种抽象了模型、工具、记忆和执行的基础设施,使智能体能够一次构建,随处运行。
21+
✨ 特性
22+
- 🏎️ 默认轻量运行时:常见的 CLI 和状态工作流在发布版本中仅占用几兆内存。
23+
- 💰 成本高效的部署:专为低成本开发板和小型云实例设计,无需沉重的运行时依赖。
24+
- ⚡ 极快的冷启动:单一二进制的 Rust 运行时,使命令和守护进程的启动接近瞬间完成,适合日常操作。
25+
- 🌍 可移植架构:支持 ARM、x86 和 RISC-V 的单一二进制优先工作流,支持可替换的供应商/通道/工具。
26+
- 🔍 研究阶段:在生成响应之前,通过工具主动收集信息——通过先行事实核查减少幻觉。
27+
团队选择 ZeroClaw 的原因
28+
- 默认轻量:小巧的 Rust 二进制文件,快速启动,低内存占用。
29+
- 设计安全:配对机制、严格沙箱、明确的允许列表、工作区范围限制。
30+
- 完全可替换:核心系统均为 trait(供应商、通道、工具、记忆、隧道)。
31+
- 无厂商锁定:支持兼容 OpenAI 的供应商,以及可插拔的自定义端点。
32+
# Moniker:
33+
Tags:
34+
- 人工智能
35+
- 大语言模型
36+
- 智能体
37+
- 聊天机器人
38+
- 自主智能
39+
- 龙虾
40+
# ReleaseNotes:
41+
# ReleaseNotesUrl:
42+
# PurchaseUrl:
43+
# InstallationNotes:
44+
Documentations:
45+
- DocumentLabel: 文档
46+
DocumentUrl: https://www.zeroclawlabs.ai/docs
47+
ManifestType: locale
48+
ManifestVersion: 1.12.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-5-4.Win32NT
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
3+
4+
PackageIdentifier: ZeroClawLabs.ZeroClaw
5+
PackageVersion: 0.1.7
6+
DefaultLocale: en-US
7+
ManifestType: version
8+
ManifestVersion: 1.12.0

0 commit comments

Comments
 (0)