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

@appliqation/agent-core

v0.1.7

Published

Shared engine (think->act->observe loop, budget tracking, appq MCP client, gated tool dispatch, Playwright browser tools, evidence capture) for Appliqation's family of standalone agents.

Readme

@appliqation/agent-core

The shared engine every standalone Appliqation agent is built from. Not an app on its own — no CLI, no .env — just the generic, workflow-agnostic pieces that appliqation-autotest, appliqation-scriptgen, appliqation-defect-fix, appliqation-pr-raise, appliqation-explorer, and appliqation-autopilot each build on:

  • /engine — the think→act→observe tool-calling loop, budget tracking (calls/pages/time/turns), and a workflow runner that fetches a named prompt (from Appliqation's MCP server or a local file) and runs it through that loop.
  • /appq — a JSON-RPC client for Appliqation's MCP API, plus scenario/test-set/run resolvers that always derive project_id/url from a source of truth (a scenario ID, a TC UUID) rather than accepting a second, possibly-diverging input.
  • /providers — Anthropic and OpenAI adapters implementing one common interface, including prompt caching and image-handling for both wire formats.
  • /tools — a Playwright-backed browser-tool palette (multi-tab aware — browser_tabs/browser_resize/browser_evaluate), an HTTP client for API test cases (http_request, with dry-run write-verb suppression), the tool-allowlist gating mechanism every agent's own safety boundary is built on, a destructive-action click gate, an argument-level read-only gate for Appliqation's project-context document, auth-session resolution (UI storageState and API credentials), and per-test-case role/test-type inference.
  • /evidence — screenshot/console/network/accessibility-snapshot capture with cursor-based delta reads.
  • /audit — optional, best-effort run logging (AuditRecord/AuditSink, MongoDB and local-JSONL-file implementations) that every sibling agent can opt into, read back by appliqation-dashboard. A write failure here never affects the real run it's describing.

Design principle: mechanism shared, domain knowledge local

Every module here is either genuinely universal, or an explicit injection point so a consuming agent can supply its own domain knowledge without this package needing to know about it. Two examples:

  • Tool-dispatch gating (tools/gatedDispatcher.ts) enforces "only call tools in this allowlist" — but the allowlist itself (which tools an executor vs. validator vs. any other stage may touch) is each consuming agent's own knowledge, kept in that agent's own code, never here.
  • Browser tools (tools/browserTools.ts) take optional {onBeforeClick, screenshotSink} hooks instead of hardcoding a destructive-action policy or an upload destination — a consuming agent with no write access, or a different safety posture, supplies its own.

Installation

npm install @appliqation/agent-core
"dependencies": {
  "@appliqation/agent-core": "^0.1.0"
}

Requires playwright and @appliqation/automation-sdk as peer dependencies (already a dependency of every consuming agent in this family).

Development

npm run build
npm run typecheck
npm test

See CLAUDE.md for a map of this repo if you're working in it with an AI coding assistant.

License

MIT — see LICENSE.