Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/elbwalker/walkeros/explorernpx skills add elbwalker/walkerOS --skill explorergit clone --depth 1 https://github.com/elbwalker/walkerOSWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.01563 |
| Opus 5 | $0.00000 | $0.00781 |
| Sonnet 5 | $0.00000 | $0.00313 |
| Haiku 4.5 | $0.00000 | $0.00156 |
Grade A, and why
explorer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 253 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Explorer Component Library
Entry point for working with the walkerOS explorer component library.
Quick Reference
| Document | Purpose |
|---|---|
| AGENT.md | Architecture, code standards, SCSS compliance |
| STYLE.md | Complete CSS variable reference (colors, spacing, typography) |
| README.md | Usage guidelines, component patterns |
Core Principles
1. Controlled Components Only
All UI state via props. No useState for user-visible state.
// Correct: controlled
export function FormInput({ value, onChange, disabled }: Props) {
return (
<input
value={value}
onChange={(e) => onChange(e.target.value)}
disabled={disabled}
/>
);
}
// Wrong: internal state
export function FormInput() {
const [value, setValue] = useState(''); // NO
}
2. Atomic Design Hierarchy
atoms/ → Single elements (Button, Input, Spinner)
molecules/ → Compositions (FormCard, Dropdown)
organisms/ → Complex layouts (Header, Sidebar)
demos/ → Full page examples
3. BEM Naming
.elb-{component} // Block
.elb-{component}__{element} // Element
.elb-{component}--{modifier} // Modifier
// Example
.elb-alert
.elb-alert__title
.elb-alert--error
4. CSS Variables Only
Never use hardcoded values. Import from theme:
@use '../../theme/variables' as *;
.elb-button {
background: var(--elb-color-primary);
padding: var(--elb-spacing-sm) var(--elb-spacing-md);
border-radius: var(--elb-radius-md);
font-size: var(--elb-font-size-base);
}
File Structure
src/
├── components/
│ ├── atoms/
│ │ ├── button.tsx
│ │ ├── button.stories.tsx
│ │ └── ...
│ └── molecules/
│ ├── dropdown.tsx
│ └── ...
├── styles/
│ ├── theme/
│ │ └── _variables.scss # All CSS variables
│ ├── components/
│ │ ├── atoms/
│ │ │ └── _button.scss
│ │ └── molecules/
│ │ └── _dropdown.scss
│ └── index.scss # Import order matters
└── index.ts # Public exports
What ships with it
60 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- __mocks__/@monaco-editor/react.cjs 420 B runs code
- __mocks__/monaco-editor.cjs 76 B runs code
- __mocks__/monaco-worker.cjs 157 B runs code
- .storybook/Introduction.mdx 2.9 KB
- .storybook/main.ts 3.2 KB runs code
- .storybook/monaco-setup.ts 1.5 KB runs code
- .storybook/preview.tsx 1.2 KB
- AGENT.md 17 KB
- CHANGELOG.md 18 KB
- eslint.config.mjs 185 B runs code
- jest-raw-loader.cjs 806 B runs code
- jest-walkeros-types.cjs 790 B runs code
- jest.config.mjs 1.9 KB runs code
- jest.setup.ts 1.0 KB runs code
- package.json 2.9 KB
- README.md 1.3 KB
- src/__mocks__/@monaco-editor/react.tsx 250 B
- src/__tests__/dist-use-client-directive.test.ts 1.4 KB runs code
- src/__tests__/ssr-code-snippet.test.tsx 708 B
- src/__tests__/ssr-code-static.test.tsx 1.0 KB
- src/__tests__/utils/monaco-json-schema.test.ts 3.4 KB runs code
- src/components/atoms/__tests__/code-json-quick-suggestions.test.tsx 3.0 KB
- src/components/atoms/box.stories.tsx 3.0 KB
- src/components/atoms/box.tsx 4.9 KB
- src/components/atoms/button-group.stories.tsx 1.2 KB
- src/components/atoms/button-group.tsx 1.3 KB
- src/components/atoms/button-link.stories.tsx 1.2 KB
- src/components/atoms/button-link.tsx 839 B
- src/components/atoms/button.stories.tsx 612 B
- src/components/atoms/button.tsx 614 B
- src/components/atoms/code-diff.tsx 6.7 KB
- src/components/atoms/code-static.tsx 2.7 KB
- src/components/atoms/code.stories.tsx 3.6 KB
- src/components/atoms/code.tsx 22 KB
- src/components/atoms/footer.stories.tsx 862 B
- src/components/atoms/footer.tsx 579 B
- src/components/atoms/grid.stories.tsx 2.3 KB
- src/components/atoms/grid.tsx 6.6 KB
- src/components/atoms/header.stories.tsx 991 B
- src/components/atoms/header.tsx 314 B
- src/components/atoms/icons/icon.stories.tsx 1.6 KB
- src/components/atoms/icons/icons.tsx 2.3 KB
- src/components/atoms/icons/index.ts 57 B runs code
- src/components/atoms/mdx-code.tsx 2.4 KB
- src/components/atoms/preview-footer.tsx 1.8 KB
- src/components/atoms/spinner.stories.tsx 305 B
- src/components/atoms/spinner.tsx 577 B
- src/components/atoms/toggle.tsx 954 B
- src/components/demos/PromotionPlayground.stories.tsx 1.1 KB
- src/components/demos/PromotionPlayground.tsx 12 KB
- src/components/molecules/__tests__/property-table.test.ts 4.1 KB runs code
- src/components/molecules/__tests__/settings-schema-selection.test.ts 4.1 KB runs code
- src/components/molecules/architecture-flow/ArchitectureFlow.stories.tsx 2.5 KB
- src/components/molecules/architecture-flow/ArchitectureFlow.tsx 4.5 KB
- src/components/molecules/architecture-flow/index.ts 164 B runs code
- src/components/molecules/code-box.stories.tsx 12 KB
- src/components/molecules/code-box.tsx 18 KB
- src/components/molecules/code-diff-box.stories.tsx 3.4 KB
- src/components/molecules/code-diff-box.tsx 5.6 KB
- src/components/molecules/code-snippet.stories.tsx 1.2 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 253 lines · 0 tokens per session scan A e9ae9f8dfe4f
explorer is a skill published in the GitHub repository elbwalker/walkerOS (343 stars, last pushed 7d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,563 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
task-management
Task management CLI for tracking and managing feature subtasks with status, dependencies, and validation.
content-enrich
内容加工:给任意采集产物(转录稿 / 文章 / 笔记)自动补「摘要 + 要点 + 标签 + 价值判断」, 写进 frontmatter 并在正文顶部插入摘要块。是「加工层」通用能力,惠及仓库所有采集 skill。.
ab-test-generator
Generate A/B test variants for affiliate content. Triggers on: "create A/B test", "test my headline", "optimize my CTA", "generate variants", "split test ideas", "improve click-through rate", "test my landing page copy", "headline alternatives", "CTA variations", "which version is better", "optimize conversions"…
conversion-tracker
Set up affiliate conversion tracking with UTM parameters and link tagging. Triggers on: "set up tracking", "create UTM links", "track my affiliate links", "tracking pixels", "click attribution", "organize my links", "UTM parameters", "tag my links", "campaign tracking", "link tracking setup", "prepare for launch"…
internal-linking-optimizer
Analyze site's internal link structure and optimize for hub-and-spoke SEO architecture. Triggers on: "optimize internal links", "internal linking", "link structure", "hub and spoke links", "orphan pages", "link equity", "internal link audit", "fix my internal links", "link architecture", "site structure optimization"…
performance-report
Generate affiliate performance reports with KPIs and recommendations. Triggers on: "show my affiliate report", "how are my programs doing", "performance review", "earnings report", "monthly affiliate report", "weekly report", "analyze my affiliate earnings", "which program is best", "EPC report", "conversion rate…