文件最后提交记录最后更新时间
feat(optional-skills): declare platforms frontmatter for all 63 undeclared skills Extends the Windows-gating work to the optional-skills/ tree. Every SKILL.md that previously omitted the platforms: field now carries an explicit declaration, which Hermes's loader (agent.skill_utils. skill_matches_platform) honors to skip-load on incompatible OSes. 58 skills declared cross-platform (platforms: [linux, macos, windows]): autonomous-ai-agents/blackbox, autonomous-ai-agents/honcho blockchain/base, blockchain/solana communication/one-three-one-rule creative/blender-mcp, creative/concept-diagrams, creative/hyperframes, creative/kanban-video-orchestrator, creative/meme-generation devops/cli (inference-sh-cli), devops/docker-management dogfood/adversarial-ux-test email/agentmail finance/3-statement-model, finance/comps-analysis, finance/dcf-model, finance/excel-author, finance/lbo-model, finance/merger-model, finance/pptx-author health/fitness-nutrition, health/neuroskill-bci mcp/fastmcp, mcp/mcporter migration/openclaw-migration mlops/accelerate, mlops/chroma, mlops/clip, mlops/guidance, mlops/hermes-atropos-environments, mlops/huggingface-tokenizers, mlops/instructor, mlops/lambda-labs, mlops/llava, mlops/modal, mlops/peft, mlops/pinecone, mlops/pytorch-lightning, mlops/qdrant, mlops/saelens, mlops/simpo, mlops/stable-diffusion productivity/canvas, productivity/shop-app, productivity/shopify, productivity/siyuan, productivity/telephony research/domain-intel, research/drug-discovery, research/duckduckgo-search, research/gitnexus-explorer, research/parallel-cli, research/scrapling security/1password, security/oss-forensics, security/sherlock web-development/page-agent 5 skills gated from Windows (platforms: [linux, macos]): mlops/flash-attention - Flash Attention wheels are Linux-first; Windows install requires building from source with CUDA mlops/faiss - faiss-gpu has no Windows wheel; gate rather than leak partial (faiss-cpu) support mlops/nemo-curator - NVIDIA NeMo ecosystem has no first-class Windows path mlops/slime - Megatron+SGLang RL stack is Linux-only in practice mlops/whisper - openai-whisper + ffmpeg setup on Windows is non-trivial; gate until Windows install stanza lands Methodology: scanned every SKILL.md for Windows-hostile signals (apt-get, brew, systemd, osascript, ptrace, X11 binaries, POSIX-only Python APIs, Docker POSIX $(pwd) bind-mounts, explicit 'linux-only' / 'macos-only' text). 3 skills flagged as having hard signals on review: docker-management and qdrant only had POSIX $(pwd) docker examples and the tools themselves (Docker Desktop, Qdrant) run fine on Windows — declared ALL. whisper had an apt/brew ffmpeg install path and nothing else but the openai-whisper Windows install story is rough enough to warrant gating. Strict-over-lenient policy: when in doubt, gate. Easier to un-gate after verified Windows support lands than to leak partial support that manifests as mid-task failures for Windows users. 26 天前
chore(skills/evm): tighten SKILL.md to modern format - description ≤60 chars (was 346) - platforms: [linux, macos, windows] — script is pure stdlib (urllib, json, argparse), no POSIX-only primitives - author: credit @Mibayy + @youssefea + @ethernet8023 + Hermes Agent (was just Mibayy) - regenerated auto-gen docs page 21 天前
fix(skills): move platforms key out of folded description: > scalars The platforms-frontmatter sweep inserted 'platforms: [linux, macos, windows]' immediately after 'description: >' on 5 optional-skills, landing inside the folded scalar and breaking YAML parsing. docs-site-checks tripped on one-three-one-rule/SKILL.md and would have failed on the other 4 in turn. Fixed files: - optional-skills/communication/one-three-one-rule/SKILL.md - optional-skills/health/fitness-nutrition/SKILL.md - optional-skills/health/neuroskill-bci/SKILL.md - optional-skills/research/drug-discovery/SKILL.md - optional-skills/security/oss-forensics/SKILL.md Moved each platforms line below the closing of the description block. All 161 SKILL.md files across the repo now parse as valid YAML. 26 天前
chore: ruff auto-fix PLR6201 resweep — tuple → set in membership tests (#27355) Six days after #23937 (608 fixes) the codebase had accumulated 241 new PLR6201 violations. Same mechanical x in (...)x in {...} fix, same zero-risk profile: set lookup is O(1) vs O(n) for tuple and the two are semantically equivalent for hashable scalar membership tests. All 241 instances fixed via `ruff check --select PLR6201 --fix --unsafe-fixes`, zero remaining. Every changed value is a hashable scalar (str/int/None/enum/signal); no risk of unhashable runtime errors. No behavior change. Test plan: - 119 files changed, +244/-244 (net zero) — exactly one-line edits - ruff check clean afterward - Compile checks pass on the largest touched files (cli.py, run_agent.py, gateway/run.py, gateway/platforms/discord.py, model_tools.py) - Subset broad test run on tests/gateway/ tests/hermes_cli/ tests/agent/ tests/tools/: 18187 passed, 59 pre-existing failures (verified against origin/main with the same shape — identical failure count, identical category — all xdist test-order flakes unrelated to this change) Follows the same template as PR #23937 ([tracker: #23972](https://github.com/NousResearch/hermes-agent/issues/23972)).18 天前
chore: ruff auto-fix PLR6201 resweep — tuple → set in membership tests (#27355) Six days after #23937 (608 fixes) the codebase had accumulated 241 new PLR6201 violations. Same mechanical x in (...)x in {...} fix, same zero-risk profile: set lookup is O(1) vs O(n) for tuple and the two are semantically equivalent for hashable scalar membership tests. All 241 instances fixed via `ruff check --select PLR6201 --fix --unsafe-fixes`, zero remaining. Every changed value is a hashable scalar (str/int/None/enum/signal); no risk of unhashable runtime errors. No behavior change. Test plan: - 119 files changed, +244/-244 (net zero) — exactly one-line edits - ruff check clean afterward - Compile checks pass on the largest touched files (cli.py, run_agent.py, gateway/run.py, gateway/platforms/discord.py, model_tools.py) - Subset broad test run on tests/gateway/ tests/hermes_cli/ tests/agent/ tests/tools/: 18187 passed, 59 pre-existing failures (verified against origin/main with the same shape — identical failure count, identical category — all xdist test-order flakes unrelated to this change) Follows the same template as PR #23937 ([tracker: #23972](https://github.com/NousResearch/hermes-agent/issues/23972)).18 天前
feat(optional-skills): declare platforms frontmatter for all 63 undeclared skills Extends the Windows-gating work to the optional-skills/ tree. Every SKILL.md that previously omitted the platforms: field now carries an explicit declaration, which Hermes's loader (agent.skill_utils. skill_matches_platform) honors to skip-load on incompatible OSes. 58 skills declared cross-platform (platforms: [linux, macos, windows]): autonomous-ai-agents/blackbox, autonomous-ai-agents/honcho blockchain/base, blockchain/solana communication/one-three-one-rule creative/blender-mcp, creative/concept-diagrams, creative/hyperframes, creative/kanban-video-orchestrator, creative/meme-generation devops/cli (inference-sh-cli), devops/docker-management dogfood/adversarial-ux-test email/agentmail finance/3-statement-model, finance/comps-analysis, finance/dcf-model, finance/excel-author, finance/lbo-model, finance/merger-model, finance/pptx-author health/fitness-nutrition, health/neuroskill-bci mcp/fastmcp, mcp/mcporter migration/openclaw-migration mlops/accelerate, mlops/chroma, mlops/clip, mlops/guidance, mlops/hermes-atropos-environments, mlops/huggingface-tokenizers, mlops/instructor, mlops/lambda-labs, mlops/llava, mlops/modal, mlops/peft, mlops/pinecone, mlops/pytorch-lightning, mlops/qdrant, mlops/saelens, mlops/simpo, mlops/stable-diffusion productivity/canvas, productivity/shop-app, productivity/shopify, productivity/siyuan, productivity/telephony research/domain-intel, research/drug-discovery, research/duckduckgo-search, research/gitnexus-explorer, research/parallel-cli, research/scrapling security/1password, security/oss-forensics, security/sherlock web-development/page-agent 5 skills gated from Windows (platforms: [linux, macos]): mlops/flash-attention - Flash Attention wheels are Linux-first; Windows install requires building from source with CUDA mlops/faiss - faiss-gpu has no Windows wheel; gate rather than leak partial (faiss-cpu) support mlops/nemo-curator - NVIDIA NeMo ecosystem has no first-class Windows path mlops/slime - Megatron+SGLang RL stack is Linux-only in practice mlops/whisper - openai-whisper + ffmpeg setup on Windows is non-trivial; gate until Windows install stanza lands Methodology: scanned every SKILL.md for Windows-hostile signals (apt-get, brew, systemd, osascript, ptrace, X11 binaries, POSIX-only Python APIs, Docker POSIX $(pwd) bind-mounts, explicit 'linux-only' / 'macos-only' text). 3 skills flagged as having hard signals on review: docker-management and qdrant only had POSIX $(pwd) docker examples and the tools themselves (Docker Desktop, Qdrant) run fine on Windows — declared ALL. whisper had an apt/brew ffmpeg install path and nothing else but the openai-whisper Windows install story is rough enough to warrant gating. Strict-over-lenient policy: when in doubt, gate. Easier to un-gate after verified Windows support lands than to leak partial support that manifests as mid-task failures for Windows users. 26 天前
feat(optional-skills): declare platforms frontmatter for all 63 undeclared skills Extends the Windows-gating work to the optional-skills/ tree. Every SKILL.md that previously omitted the platforms: field now carries an explicit declaration, which Hermes's loader (agent.skill_utils. skill_matches_platform) honors to skip-load on incompatible OSes. 58 skills declared cross-platform (platforms: [linux, macos, windows]): autonomous-ai-agents/blackbox, autonomous-ai-agents/honcho blockchain/base, blockchain/solana communication/one-three-one-rule creative/blender-mcp, creative/concept-diagrams, creative/hyperframes, creative/kanban-video-orchestrator, creative/meme-generation devops/cli (inference-sh-cli), devops/docker-management dogfood/adversarial-ux-test email/agentmail finance/3-statement-model, finance/comps-analysis, finance/dcf-model, finance/excel-author, finance/lbo-model, finance/merger-model, finance/pptx-author health/fitness-nutrition, health/neuroskill-bci mcp/fastmcp, mcp/mcporter migration/openclaw-migration mlops/accelerate, mlops/chroma, mlops/clip, mlops/guidance, mlops/hermes-atropos-environments, mlops/huggingface-tokenizers, mlops/instructor, mlops/lambda-labs, mlops/llava, mlops/modal, mlops/peft, mlops/pinecone, mlops/pytorch-lightning, mlops/qdrant, mlops/saelens, mlops/simpo, mlops/stable-diffusion productivity/canvas, productivity/shop-app, productivity/shopify, productivity/siyuan, productivity/telephony research/domain-intel, research/drug-discovery, research/duckduckgo-search, research/gitnexus-explorer, research/parallel-cli, research/scrapling security/1password, security/oss-forensics, security/sherlock web-development/page-agent 5 skills gated from Windows (platforms: [linux, macos]): mlops/flash-attention - Flash Attention wheels are Linux-first; Windows install requires building from source with CUDA mlops/faiss - faiss-gpu has no Windows wheel; gate rather than leak partial (faiss-cpu) support mlops/nemo-curator - NVIDIA NeMo ecosystem has no first-class Windows path mlops/slime - Megatron+SGLang RL stack is Linux-only in practice mlops/whisper - openai-whisper + ffmpeg setup on Windows is non-trivial; gate until Windows install stanza lands Methodology: scanned every SKILL.md for Windows-hostile signals (apt-get, brew, systemd, osascript, ptrace, X11 binaries, POSIX-only Python APIs, Docker POSIX $(pwd) bind-mounts, explicit 'linux-only' / 'macos-only' text). 3 skills flagged as having hard signals on review: docker-management and qdrant only had POSIX $(pwd) docker examples and the tools themselves (Docker Desktop, Qdrant) run fine on Windows — declared ALL. whisper had an apt/brew ffmpeg install path and nothing else but the openai-whisper Windows install story is rough enough to warrant gating. Strict-over-lenient policy: when in doubt, gate. Easier to un-gate after verified Windows support lands than to leak partial support that manifests as mid-task failures for Windows users. 26 天前
chore: ruff auto-fix PLR6201 resweep — tuple → set in membership tests (#27355) Six days after #23937 (608 fixes) the codebase had accumulated 241 new PLR6201 violations. Same mechanical x in (...)x in {...} fix, same zero-risk profile: set lookup is O(1) vs O(n) for tuple and the two are semantically equivalent for hashable scalar membership tests. All 241 instances fixed via `ruff check --select PLR6201 --fix --unsafe-fixes`, zero remaining. Every changed value is a hashable scalar (str/int/None/enum/signal); no risk of unhashable runtime errors. No behavior change. Test plan: - 119 files changed, +244/-244 (net zero) — exactly one-line edits - ruff check clean afterward - Compile checks pass on the largest touched files (cli.py, run_agent.py, gateway/run.py, gateway/platforms/discord.py, model_tools.py) - Subset broad test run on tests/gateway/ tests/hermes_cli/ tests/agent/ tests/tools/: 18187 passed, 59 pre-existing failures (verified against origin/main with the same shape — identical failure count, identical category — all xdist test-order flakes unrelated to this change) Follows the same template as PR #23937 ([tracker: #23972](https://github.com/NousResearch/hermes-agent/issues/23972)).18 天前
chore: ruff auto-fix PLR6201 resweep — tuple → set in membership tests (#27355) Six days after #23937 (608 fixes) the codebase had accumulated 241 new PLR6201 violations. Same mechanical x in (...)x in {...} fix, same zero-risk profile: set lookup is O(1) vs O(n) for tuple and the two are semantically equivalent for hashable scalar membership tests. All 241 instances fixed via `ruff check --select PLR6201 --fix --unsafe-fixes`, zero remaining. Every changed value is a hashable scalar (str/int/None/enum/signal); no risk of unhashable runtime errors. No behavior change. Test plan: - 119 files changed, +244/-244 (net zero) — exactly one-line edits - ruff check clean afterward - Compile checks pass on the largest touched files (cli.py, run_agent.py, gateway/run.py, gateway/platforms/discord.py, model_tools.py) - Subset broad test run on tests/gateway/ tests/hermes_cli/ tests/agent/ tests/tools/: 18187 passed, 59 pre-existing failures (verified against origin/main with the same shape — identical failure count, identical category — all xdist test-order flakes unrelated to this change) Follows the same template as PR #23937 ([tracker: #23972](https://github.com/NousResearch/hermes-agent/issues/23972)).18 天前
feat(optional-skills): declare platforms frontmatter for all 63 undeclared skills Extends the Windows-gating work to the optional-skills/ tree. Every SKILL.md that previously omitted the platforms: field now carries an explicit declaration, which Hermes's loader (agent.skill_utils. skill_matches_platform) honors to skip-load on incompatible OSes. 58 skills declared cross-platform (platforms: [linux, macos, windows]): autonomous-ai-agents/blackbox, autonomous-ai-agents/honcho blockchain/base, blockchain/solana communication/one-three-one-rule creative/blender-mcp, creative/concept-diagrams, creative/hyperframes, creative/kanban-video-orchestrator, creative/meme-generation devops/cli (inference-sh-cli), devops/docker-management dogfood/adversarial-ux-test email/agentmail finance/3-statement-model, finance/comps-analysis, finance/dcf-model, finance/excel-author, finance/lbo-model, finance/merger-model, finance/pptx-author health/fitness-nutrition, health/neuroskill-bci mcp/fastmcp, mcp/mcporter migration/openclaw-migration mlops/accelerate, mlops/chroma, mlops/clip, mlops/guidance, mlops/hermes-atropos-environments, mlops/huggingface-tokenizers, mlops/instructor, mlops/lambda-labs, mlops/llava, mlops/modal, mlops/peft, mlops/pinecone, mlops/pytorch-lightning, mlops/qdrant, mlops/saelens, mlops/simpo, mlops/stable-diffusion productivity/canvas, productivity/shop-app, productivity/shopify, productivity/siyuan, productivity/telephony research/domain-intel, research/drug-discovery, research/duckduckgo-search, research/gitnexus-explorer, research/parallel-cli, research/scrapling security/1password, security/oss-forensics, security/sherlock web-development/page-agent 5 skills gated from Windows (platforms: [linux, macos]): mlops/flash-attention - Flash Attention wheels are Linux-first; Windows install requires building from source with CUDA mlops/faiss - faiss-gpu has no Windows wheel; gate rather than leak partial (faiss-cpu) support mlops/nemo-curator - NVIDIA NeMo ecosystem has no first-class Windows path mlops/slime - Megatron+SGLang RL stack is Linux-only in practice mlops/whisper - openai-whisper + ffmpeg setup on Windows is non-trivial; gate until Windows install stanza lands Methodology: scanned every SKILL.md for Windows-hostile signals (apt-get, brew, systemd, osascript, ptrace, X11 binaries, POSIX-only Python APIs, Docker POSIX $(pwd) bind-mounts, explicit 'linux-only' / 'macos-only' text). 3 skills flagged as having hard signals on review: docker-management and qdrant only had POSIX $(pwd) docker examples and the tools themselves (Docker Desktop, Qdrant) run fine on Windows — declared ALL. whisper had an apt/brew ffmpeg install path and nothing else but the openai-whisper Windows install story is rough enough to warrant gating. Strict-over-lenient policy: when in doubt, gate. Easier to un-gate after verified Windows support lands than to leak partial support that manifests as mid-task failures for Windows users. 26 天前
chore: ruff auto-fix PLR6201 resweep — tuple → set in membership tests (#27355) Six days after #23937 (608 fixes) the codebase had accumulated 241 new PLR6201 violations. Same mechanical x in (...)x in {...} fix, same zero-risk profile: set lookup is O(1) vs O(n) for tuple and the two are semantically equivalent for hashable scalar membership tests. All 241 instances fixed via `ruff check --select PLR6201 --fix --unsafe-fixes`, zero remaining. Every changed value is a hashable scalar (str/int/None/enum/signal); no risk of unhashable runtime errors. No behavior change. Test plan: - 119 files changed, +244/-244 (net zero) — exactly one-line edits - ruff check clean afterward - Compile checks pass on the largest touched files (cli.py, run_agent.py, gateway/run.py, gateway/platforms/discord.py, model_tools.py) - Subset broad test run on tests/gateway/ tests/hermes_cli/ tests/agent/ tests/tools/: 18187 passed, 59 pre-existing failures (verified against origin/main with the same shape — identical failure count, identical category — all xdist test-order flakes unrelated to this change) Follows the same template as PR #23937 ([tracker: #23972](https://github.com/NousResearch/hermes-agent/issues/23972)).18 天前
chore: remove Atropos RL environments and tinker-atropos integration (#26106) * chore: remove Atropos RL environments, tools, tests, skill, and tinker-atropos submodule Delete: - environments/ (43 files — base env, agent loop, tool call parsers, benchmarks) - rl_cli.py (standalone RL training CLI) - tools/rl_training_tool.py (all 10 rl_* tools) - tests: test_rl_training_tool, test_tool_call_parsers, test_managed_server_tool_support, test_agent_loop, test_agent_loop_vllm, test_agent_loop_tool_calling, test_terminalbench2_env_security - optional-skills/mlops/hermes-atropos-environments/ - tinker-atropos git submodule + .gitmodules * chore: remove RL/Atropos references from Python source - toolsets.py: remove rl toolset block + update comment - model_tools.py: remove rl_tools group + update async bridging comment - hermes_cli/tools_config.py: remove RL display entry, _DEFAULT_OFF_TOOLSETS, setup block, and rl_training post-setup handler - tools/budget_config.py: remove RL environment reference in docstring - tests/test_model_tools.py: remove rl_tools from expected groups - tests/run_agent/test_streaming_tool_call_repair.py: fix stale cross-reference * chore: remove rl/yc-bench extras and tinker-atropos refs from pyproject.toml - Remove rl extra (atroposlib, tinker, fastapi, uvicorn, wandb) - Remove yc-bench extra - Remove rl_cli from py-modules - Remove [tool.ty.src] exclude for tinker-atropos - Remove [tool.ruff] exclude for tinker-atropos - Regenerate uv.lock * chore: remove tinker-atropos from install/setup scripts - setup-hermes.sh: remove entire tinker-atropos submodule install block - scripts/install.sh: remove both tinker-atropos blocks (Termux + standard) - scripts/install.ps1: remove tinker-atropos block - nix/hermes-agent.nix: remove tinker-atropos pip install line * chore: remove RL references from cli-config.yaml.example * docs: remove Atropos/RL references from README, CONTRIBUTING, AGENTS.md * docs: remove RL/Atropos references from website - Delete: environments.md, rl-training.md, mlops-hermes-atropos-environments.md - sidebars.ts: remove rl-training and environments sidebar entries - optional-skills-catalog.md: remove hermes-atropos-environments row - tools-reference.md: remove entire rl toolset section - toolsets-reference.md: remove rl row + update example - integrations/index.md: remove RL Training bullet - architecture.md: remove environments/ from tree + RL section - contributing.md: remove tinker-atropos setup - updating.md: remove tinker-atropos install + stale submodule update * chore: remove remaining RL/Atropos stragglers - hermes_cli/config.py: remove TINKER_API_KEY + WANDB_API_KEY env var defs - hermes_cli/doctor.py: remove Submodules check section (tinker-atropos) - hermes_cli/setup.py: remove RL Training status check - hermes_cli/status.py: remove Tinker + WandB from API key status display - agent/display.py: remove both rl_* tool preview/activity blocks - website/docs: remove RL references from providers.md + env-variables.md - tests: remove TINKER_API_KEY from conftest, set_config_value, setup_script * chore: remove RL training section from .env.example20 天前
chore: ruff auto-fix PLR6201 resweep — tuple → set in membership tests (#27355) Six days after #23937 (608 fixes) the codebase had accumulated 241 new PLR6201 violations. Same mechanical x in (...)x in {...} fix, same zero-risk profile: set lookup is O(1) vs O(n) for tuple and the two are semantically equivalent for hashable scalar membership tests. All 241 instances fixed via `ruff check --select PLR6201 --fix --unsafe-fixes`, zero remaining. Every changed value is a hashable scalar (str/int/None/enum/signal); no risk of unhashable runtime errors. No behavior change. Test plan: - 119 files changed, +244/-244 (net zero) — exactly one-line edits - ruff check clean afterward - Compile checks pass on the largest touched files (cli.py, run_agent.py, gateway/run.py, gateway/platforms/discord.py, model_tools.py) - Subset broad test run on tests/gateway/ tests/hermes_cli/ tests/agent/ tests/tools/: 18187 passed, 59 pre-existing failures (verified against origin/main with the same shape — identical failure count, identical category — all xdist test-order flakes unrelated to this change) Follows the same template as PR #23937 ([tracker: #23972](https://github.com/NousResearch/hermes-agent/issues/23972)).18 天前
chore: ruff auto-fix PLR6201 resweep — tuple → set in membership tests (#27355) Six days after #23937 (608 fixes) the codebase had accumulated 241 new PLR6201 violations. Same mechanical x in (...)x in {...} fix, same zero-risk profile: set lookup is O(1) vs O(n) for tuple and the two are semantically equivalent for hashable scalar membership tests. All 241 instances fixed via `ruff check --select PLR6201 --fix --unsafe-fixes`, zero remaining. Every changed value is a hashable scalar (str/int/None/enum/signal); no risk of unhashable runtime errors. No behavior change. Test plan: - 119 files changed, +244/-244 (net zero) — exactly one-line edits - ruff check clean afterward - Compile checks pass on the largest touched files (cli.py, run_agent.py, gateway/run.py, gateway/platforms/discord.py, model_tools.py) - Subset broad test run on tests/gateway/ tests/hermes_cli/ tests/agent/ tests/tools/: 18187 passed, 59 pre-existing failures (verified against origin/main with the same shape — identical failure count, identical category — all xdist test-order flakes unrelated to this change) Follows the same template as PR #23937 ([tracker: #23972](https://github.com/NousResearch/hermes-agent/issues/23972)).18 天前
fix(skills): move platforms key out of folded description: > scalars The platforms-frontmatter sweep inserted 'platforms: [linux, macos, windows]' immediately after 'description: >' on 5 optional-skills, landing inside the folded scalar and breaking YAML parsing. docs-site-checks tripped on one-three-one-rule/SKILL.md and would have failed on the other 4 in turn. Fixed files: - optional-skills/communication/one-three-one-rule/SKILL.md - optional-skills/health/fitness-nutrition/SKILL.md - optional-skills/health/neuroskill-bci/SKILL.md - optional-skills/research/drug-discovery/SKILL.md - optional-skills/security/oss-forensics/SKILL.md Moved each platforms line below the closing of the description block. All 161 SKILL.md files across the repo now parse as valid YAML. 26 天前
rename(skills): api-testing -> rest-graphql-debug (#23589) More specific name. The skill is REST + GraphQL debugging end-to-end, not generic 'api testing' (a smoke-test pytest scaffold is one short section out of ~500 lines). Renames directory + frontmatter name + self-reference in the delegate_task example body.24 天前
feat(optional-skills): declare platforms frontmatter for all 63 undeclared skills Extends the Windows-gating work to the optional-skills/ tree. Every SKILL.md that previously omitted the platforms: field now carries an explicit declaration, which Hermes's loader (agent.skill_utils. skill_matches_platform) honors to skip-load on incompatible OSes. 58 skills declared cross-platform (platforms: [linux, macos, windows]): autonomous-ai-agents/blackbox, autonomous-ai-agents/honcho blockchain/base, blockchain/solana communication/one-three-one-rule creative/blender-mcp, creative/concept-diagrams, creative/hyperframes, creative/kanban-video-orchestrator, creative/meme-generation devops/cli (inference-sh-cli), devops/docker-management dogfood/adversarial-ux-test email/agentmail finance/3-statement-model, finance/comps-analysis, finance/dcf-model, finance/excel-author, finance/lbo-model, finance/merger-model, finance/pptx-author health/fitness-nutrition, health/neuroskill-bci mcp/fastmcp, mcp/mcporter migration/openclaw-migration mlops/accelerate, mlops/chroma, mlops/clip, mlops/guidance, mlops/hermes-atropos-environments, mlops/huggingface-tokenizers, mlops/instructor, mlops/lambda-labs, mlops/llava, mlops/modal, mlops/peft, mlops/pinecone, mlops/pytorch-lightning, mlops/qdrant, mlops/saelens, mlops/simpo, mlops/stable-diffusion productivity/canvas, productivity/shop-app, productivity/shopify, productivity/siyuan, productivity/telephony research/domain-intel, research/drug-discovery, research/duckduckgo-search, research/gitnexus-explorer, research/parallel-cli, research/scrapling security/1password, security/oss-forensics, security/sherlock web-development/page-agent 5 skills gated from Windows (platforms: [linux, macos]): mlops/flash-attention - Flash Attention wheels are Linux-first; Windows install requires building from source with CUDA mlops/faiss - faiss-gpu has no Windows wheel; gate rather than leak partial (faiss-cpu) support mlops/nemo-curator - NVIDIA NeMo ecosystem has no first-class Windows path mlops/slime - Megatron+SGLang RL stack is Linux-only in practice mlops/whisper - openai-whisper + ffmpeg setup on Windows is non-trivial; gate until Windows install stanza lands Methodology: scanned every SKILL.md for Windows-hostile signals (apt-get, brew, systemd, osascript, ptrace, X11 binaries, POSIX-only Python APIs, Docker POSIX $(pwd) bind-mounts, explicit 'linux-only' / 'macos-only' text). 3 skills flagged as having hard signals on review: docker-management and qdrant only had POSIX $(pwd) docker examples and the tools themselves (Docker Desktop, Qdrant) run fine on Windows — declared ALL. whisper had an apt/brew ffmpeg install path and nothing else but the openai-whisper Windows install story is rough enough to warrant gating. Strict-over-lenient policy: when in doubt, gate. Easier to un-gate after verified Windows support lands than to leak partial support that manifests as mid-task failures for Windows users. 26 天前
fix: review fixes — path traversal guard, trust_style consistency, edge cases Address code review findings: Security (Medium): - Path traversal guard in OptionalSkillSource.fetch() — resolve() and validate that the path stays within optional-skills/ before reading Bug fixes (Medium): - Add 'builtin' to trust_style dicts in do_inspect() and _resolve_short_name() — official skills now show bright_cyan 'official' label consistently across all display functions (5/5 dicts fixed) Edge cases (Low): - Clamp page_size to [1, 100] in do_browse() to prevent ZeroDivisionError - Update SkillMeta.source docstring to include 'official' - Add browse command to optional-skills/DESCRIPTION.md 2 个月前