npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@alijemo/zk-skill-package

v1.0.0

Published

YOU OS / ZiqaKernel agent accelerator

Readme

YOU OS / ZiqaKernel Agent Accelerator

Comprehensive toolkit for Rust no_std kernel development: diagnostic skills, integrated MCP server, and internet research across 15+ platforms.

Quick Start

npx zk-skill-package@latest

This installs all skills, commands, MCP rules, and the agent-reach research tool.

Features

Kernel Development

  • Master Skill (you-os-kernel-accelerator): Full diagnostic framework, Ponytail policy, Rust kernel discipline.
  • 10 Subsystem Skills: ELF, scheduler, GUI, memory, IPC, input, driver, syscall debug + project rules.
  • MCP Server: kernel.diagnose, kernel.errmem_*, kernel.security_audit, kernel.invariant_check, and more.
  • Slash Commands: /zk, /zk-fix, /zk-plan, /zk-review, /zk-elf, /zk-sched, /zk-gui, /zk-mem, /zk-ipc, /zk-input, /zk-driver.

Internet Research (NEW)

  • 15 Platforms: Web search, GitHub, YouTube, Bilibili, Twitter/X, Xiaohongshu, Reddit, V2EX, Facebook, Instagram, LinkedIn, RSS, podcasts, 雪球 finance.
  • Zero-Config Channels: V2EX, RSS, web reading (Jina Reader), Bilibili search (bili-cli).
  • Login-Based Channels: Twitter, Xiaohongshu, Reddit, Facebook, Instagram, LinkedIn (via OpenCLI browser extension).
  • Research Workflows:
    • Hardware datasheet lookup
    • Reference implementation search (Linux kernel, Rust OS projects)
    • Crate/API documentation research
    • Error/symptom pattern search
    • Multi-platform parallel research with task subagents
    • Research caching to /tmp/
  • Commands: /zk-research
  • Skill: zk-research

Research-to-Fix Pipeline

unknown component → research profiles → reference impl → minimal patch → verify

When a kernel bug involves unknown hardware or unfamiliar errors, research is a mandatory first step before patching.

Architecture

user request
  ├─ kernel work → you-os-kernel-accelerator → subsystem skill → fix
  └─ research   → agent-reach doctor --json → platform tools → report

MCP Server Configuration

Add to your agent's MCP config:

{
  "mcpServers": {
    "kernel-engineering": {
      "command": "/path/to/project/.agents/mcp-server/run-mcp.sh",
      "args": [],
      "env": {}
    }
  }
}

Self-Improving Skill System (NEW)

The skill evolves with every fix. After each kernel bugfix, the zk-fix workflow records the pattern:

./scripts/skill-evolve.sh learn \
  --subsystem "<subsystem>" \
  --symptom "<symptom>" \
  --fix "<fix description>" \
  --files "<files changed>" \
  --verification "<verification command>"

Quality gates prevent bloat:

  • Proven: verification required (not guesses)
  • Specific: exact files + code changes needed
  • Unique: no duplicate with existing patterns
  • Signal: typo/config/trivial fixes rejected

Promotion: Patterns promoted to skill files when:

  • Same fix applied 2+ times, OR critical subsystem
  • Fits existing section structure
  • Max 3 per consolidation run
./scripts/skill-evolve.sh consolidate   # promote patterns to skills
./scripts/skill-evolve.sh status        # show evolution state
./scripts/skill-evolve.sh list          # list all patterns

Commands

All available slash commands:

| Command | Purpose | |---------|---------| | /zk | Master kernel workflow (auto-routes) | | /zk-fix | Kernel bugfix workflow | | /zk-plan | Safe planning workflow | | /zk-review | Patch review | | /zk-elf | ELF loader diagnostics | | /zk-sched | Scheduler diagnostics | | /zk-gui | GUI/framebuffer diagnostics | | /zk-mem | Memory/page fault diagnostics | | /zk-ipc | IPC/SHM diagnostics | | /zk-input | Input diagnostics | | /zk-driver | Driver diagnostics | | /zk-research | Internet research (15+ platforms) |

Documentation

| Document | Description | |----------|-------------| | docs/RESEARCH.md | Full research guide with all platform commands | | docs/COMMANDS.md | Complete command reference | | AGENTS.md | Agent rules, GitNexus, graphify, project overview | | .agents/skills/you-os-kernel-accelerator/SKILL.md | Master kernel skill |

Manual Installation

git clone https://github.com/Ali-Jemo/zk-skill-package .agents-temp
chmod +x .agents-temp/scripts/install-zk-agent.sh
./.agents-temp/scripts/install-zk-agent.sh
rm -rf .agents-temp

License

MIT