
Security News
RubyGems Adds Cooldown Feature to Bundler for Newly Published Gems
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.
@agenshield/skills
Advanced tools
Skill loader, validator, registry, and executor for OpenClaw-compatible skills, plus "Soul" system prompt injection utilities.
SKILL.md files with YAML frontmatter.src/loader.ts - Loads and parses SKILL.md files.src/validator.ts - Validates skill manifests and content.src/registry.ts - In-memory registry of loaded skills.src/executor.ts - Executes skill commands via spawn.src/soul/* - Soul prompt templates and injector.import { SkillLoader, SkillRegistry } from '@agenshield/skills';
const loader = new SkillLoader();
const registry = new SkillRegistry();
const skills = await loader.loadFromDirectories([
'/opt/agenshield/skills',
'/Users/clawagent/.agenshield/skills',
]);
registry.registerAll(skills);
import { validateSkill } from '@agenshield/skills';
const result = validateSkill(skill);
if (!result.valid) {
console.error(result.errors);
}
import { SkillExecutor } from '@agenshield/skills';
const executor = new SkillExecutor({
checkPolicy: async (operation, target) => true,
auditLog: (entry) => console.log(entry),
});
const result = await executor.execute(skill, {
args: ['echo hello'],
timeout: 30000,
});
import { SoulInjector } from '@agenshield/skills';
const injector = new SoulInjector({ mode: 'prepend', securityLevel: 'high' });
const prompt = injector.inject('Original system prompt', {
workspacePath: '/Users/clawagent/workspace',
allowedOperations: ['read', 'list'],
});
Skills use YAML frontmatter plus Markdown body:
---
name: security-check
description: Check security status
user-invocable: true
command-dispatch: bash
command-arg-mode: single
requires:
bins:
- shieldctl
agenshield:
policy: builtin-security-check
allowed-commands:
- shieldctl status
---
# Skill Title
Detailed instructions...
This repo ships example skills under libs/shield-skills/skills/:
security-checksecret-brokerpolicy-enforcesoul-shieldThe library does not auto-load these; consumers must load them explicitly via SkillLoader.
SkillExecutor runs commands via spawn and does not sandbox execution on its own.allowedCommands is only enforced if the caller provides a checkPolicy function.# Build
npx nx build shield-skills
src/types.ts and src/validator.ts together.src/soul/templates.ts and expose via getSoulContent().SkillLoader.parseManifest() expects frontmatter and uses indentation for nesting.Skill interface; missing fields are defaulted.SkillExecutor.buildCommand() controls dispatch for bash, node, and python.libs/shield-skills/skills/ for reference/testing.FAQs
OpenClaw-compatible skills with Soul integration for AgenShield
The npm package @agenshield/skills receives a total of 34 weekly downloads. As such, @agenshield/skills popularity was classified as not popular.
We found that @agenshield/skills demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.

Security News
Federal audit finds NIST lacked a plan to clear the NVD backlog, wasted funds on duplicate work, and delayed use of CISA data.