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

@anirudhsengar/agentify

v1.1.0

Published

Install-once persistent autonomous engineering team for existing GitHub repositories.

Downloads

49

Readme

Agentify

Turn authorized GitHub issues into validated draft pull requests with a persistent, repository-specific engineering team.

CI Node.js License: MIT

Getting started · How it works · Security · Documentation

Agentify is a Node.js CLI that installs a controlled multi-agent engineering workflow into an existing GitHub repository. You run the installer once; after that, authorized GitHub issues are the normal work interface.

For each queued task, Agentify plans with a persistent orchestrator, a read-only planner that refines the implementation steps, and evidence-backed read-only specialists, gives exactly one builder bounded write access on an isolated branch to inspect, edit, and self-check before its terminal submission, runs installer-attested unsandboxed validation, and obtains a role-separated automated read-only review before opening an unmerged draft pull request. A path-restricted knowledge maintainer refreshes learning after an accepted merge. The human retains merge authority; deployment is never automatic.

[!NOTE] Agentify is an early public project. Its current evidence comes from maintainer-controlled qualification, security tests, and exact-artifact tests. This repository does not claim independent production adoption.

At a glance

| Concern | Agentify's design | | --- | --- | | Installation | Run once in an existing repository | | Work intake | Authorized GitHub issues with explicit scope and acceptance criteria | | Planning | Persistent orchestrator, a read-only planner, plus evidence-backed read-only specialists | | Source changes | Exactly one builder, one isolated task branch, bounded writable paths | | Validation | Maintainer-approved repository commands run by trusted code | | Review | Separate automated reviewer with no application-source write tools | | Delivery | Unmerged draft pull request | | Merge and deployment | Human-controlled; never automatic | | Learning | Knowledge refresh from the exact accepted default-branch commit |

How it works

flowchart LR
    A[Authorized GitHub issue] --> B[Orchestrator, planner, and read-only specialists]
    B --> C[One bounded builder]
    C --> D[Trusted repository validation]
    D --> E[Separate read-only review]
    E --> F[Unmerged draft pull request]
    F --> G[Human merge decision]
    G --> H[Accepted-merge knowledge refresh]
  1. A maintainer creates or approves an issue with testable acceptance criteria and explicit candidate paths.
  2. Agentify verifies the actor, repository identity, issue state, and current default-branch commit.
  3. The orchestrator builds a typed, evidence-backed plan; a read-only planner refines its implementation steps before selected repository specialists are consulted.
  4. Exactly one builder receives bounded write authority on an isolated task branch and inspects, edits, and self-checks before its terminal submission.
  5. Trusted code captures the diff and runs the approved repository validation outside the model process.
  6. A role-separated, read-only reviewer evaluates the plan, diff, evidence, and acceptance criteria.
  7. Successful work is published as an unmerged draft pull request.
  8. After a human accepts and merges the change, Agentify refreshes only its allowlisted repository knowledge.

Current repository support

Agentify targets repositories with this contract:

  • an existing Git repository with at least one commit;
  • a canonical github.com origin remote;
  • GitHub CLI authentication with repository write, maintain, or admin access;
  • a supported root build manifest with deterministic validation commands;
  • a committed lockfile when the ecosystem requires one for reproducible dependency validation;
  • tracked application source beneath a bounded repository path;
  • credentials for a supported model provider.

Supported build manifests include:

| Ecosystem | Manifest | Typical validation | Lockfile (when required) | | --- | --- | --- | --- | | Node.js | package.json | npm run test, typecheck, or lint scripts | package-lock.json, npm-shrinkwrap.json, pnpm-lock.yaml, yarn.lock, or bun.lock | | Python | pyproject.toml, setup.py, or requirements.txt | pytest, ruff check, or mypy (directly or via Makefile) | uv.lock, poetry.lock, or Pipfile.lock | | Rust | Cargo.toml | cargo test, cargo check | Cargo.lock | | Go | go.mod | go test ./..., go vet ./... | go.sum | | Java (Maven) | pom.xml | mvn -B test | — | | Java (Gradle) | build.gradle or build.gradle.kts | ./gradlew test or check | gradle.lockfile (optional) | | Ruby | Gemfile | bundle exec rspec, rubocop | Gemfile.lock | | Make-based | Makefile | make test, check, lint, or typecheck targets | — | | Shell | build.sh, compile.sh, test.sh, lint.sh, get.sh, setup.sh, etc. | bash build.sh, bash test.sh, etc. Install scripts (get.sh, setup.sh) are identified but not executed as validation | — |

Agentify may analyze a repository that is not ready for issue execution, but it keeps issue intake disabled until every readiness blocker is resolved.

Local requirements

  • Node.js 22.19.0 or newer
  • npm
  • Git
  • GitHub CLI (gh), authenticated to the target repository
  • Maintainer access to the target repository

Getting started

1. Install and configure a model

npm install --global @anirudhsengar/agentify

cd /path/to/your/repository

# Anthropic is an example; choose a provider supported by your environment.
agentify login --provider anthropic
agentify models list --provider anthropic
# Replace <model-id> with a value returned by the previous command.
agentify models set "anthropic/<model-id>"

Provider credentials are read from provider environment variables, supported OAuth instructions, or a masked interactive prompt. They are never accepted as command-line values or written to the repository.

2. Run the one-time installer

agentify

The installer:

  • verifies the repository root, GitHub identity, maintainer authority, and default-branch policy;
  • discovers validation commands, screens them for obvious production credentials and mutation, and records installer attestation for unsandboxed execution;
  • audits the repository and creates persistent specialists, procedures, and knowledge;
  • refines missing validation from the audited validation surface when discovery did not verify a required command;
  • installs the issue and accepted-merge learning workflows;
  • writes a repository-bound task policy containing validation and lockfile hashes;
  • configures required labels and non-secret repository variables;
  • copies a resolved local provider API key to the PI_API_KEY Actions secret when one is already present;
  • runs deterministic installation canaries and enables issue intake only when all checks pass.

The CLI is an installer and maintenance interface. Do not rerun it for ordinary tasks; use GitHub issues after installation.

3. Configure workflow credentials

The installer can configure these GitHub Actions secrets:

  • PI_API_KEY — the model-provider credential used by the installed workflows. When a local provider key is already resolved from the environment or stored credentials, the installer copies it through gh secret set stdin. Otherwise it prompts interactively, or prints gh secret set guidance when no TTY is available.
  • AGENT_PAT — optional but recommended; used only by trusted workflow code to push the task branch and publish its draft pull request. A dedicated token allows the resulting pull request to trigger the repository's normal pull-request workflows. This secret is set only after interactive consent.

A fine-grained AGENT_PAT needs access only to the target repository with:

  • Contents: read and write
  • Pull requests: read and write

Neither credential is exposed to model processes.

Queue your first task

Create a GitHub issue using this minimum structure:

## Goal
Describe the requested outcome.

## Acceptance criteria
- [ ] State one testable result per item.

## Scope
- `src/example.ts`

## Out of scope
- `.github/`
- `package.json`

Then add the agentify:queue label.

[!IMPORTANT] The paths in ## Scope are an authority boundary, not just planning hints. Include every application path the builder may need to change.

Trusted maintainers can control an active task with these exact issue comments:

/agent approve
/agent stop
/agent retry
/agent replan
/agent explain

What gets installed

The exact contents vary with repository analysis, but the managed footprint is approximately:

AGENTS.md                              # Repository instructions for coding agents
SETUP.md                               # Maintainer usage and credential guidance

.agentify/
├── manifest.json                      # Repository and state identity
├── agents/                            # Persistent team and specialist definitions
├── knowledge/                         # Provenance-bound repository knowledge
├── policies/                          # Execution and protected-path policy
└── runtime/                           # Audit/runtime state

.github/
├── agentify-task-policy.json          # Repository-bound task and validation policy
├── agentify/
│   ├── task-runtime.mjs               # Bundled trusted task runtime
│   └── learning-runtime.mjs           # Bundled trusted learning runtime
├── scripts/
│   ├── complete-accepted-task-merge.mjs
│   ├── publish-task-draft.mjs
│   ├── run-task-lifecycle.mjs
│   └── task-state-github.mjs
└── workflows/
    ├── agentify-issue.yml              # Authorized issue execution
    └── agentify-learn.yml              # Accepted-merge learning

Agentify preserves user-owned files. If a required path is already occupied by unrecognized content, the installer leaves it untouched, writes or reports the managed alternative, and fails closed until the conflict is resolved.

Security and authority boundaries

[!WARNING] Repository validation executes installer-attested, repository-owned code without OS-level sandboxing or network isolation. Agentify removes common credential variables, rejects visible deployment and publication commands, detects repository mutation, and binds attestation to the manifest, commands, and lockfile—but these controls are guardrails, not process isolation.

| Boundary | Enforced behavior | | --- | --- | | GitHub credentials | Model processes never receive GitHub write credentials | | Read-only roles | Audit, specialist, orchestrator, planner, reviewer, and knowledge-maintainer sessions cannot edit application source | | Application writer | Exactly one builder may edit only approved paths on the isolated task branch | | Trusted mutations | Trusted code validates typed output, repository identity, commits, branches, paths, state transitions, validation, and review evidence | | Validation approval | The approved manifest, command set, and lockfile are hashed; drift disables issue intake until renewed consent | | Pull requests | Agentify publishes draft pull requests only | | Merge and deployment | Never performed automatically | | Learning | May update only validated Agentify knowledge paths after an exact accepted merge |

Automated review is role-separated and read-only, but it is not a substitute for human peer review. See SECURITY.md for the complete boundary and vulnerability-reporting process.

Verification

The release gate builds the executable bundles, runs source and scaffold tests, installs and exercises the exact npm tarball, checks CLI parity, and audits production dependencies.

npm run verify:release

Useful evidence:

CLI reference

agentify
agentify --help
agentify --version

agentify login [--provider <name>]
agentify logout [--provider <name> | --all] [--yes]

agentify models list [--provider <name>]
agentify models show [--resolved]
agentify models set <provider>/<model>
agentify models set <primary|explorer|lite> <provider>/<model>
agentify models unset [primary|explorer|lite]

primary is the default model assignment. explorer and lite inherit primary unless configured explicitly.

Development

git clone https://github.com/anirudhsengar/agentify.git
cd agentify
npm ci

npm run typecheck
npm run test:all
npm run verify:release

Agentify is an ESM-only, strict-TypeScript project. See CONTRIBUTING.md for the source layout, implementation rules, security requirements, and pull-request expectations.

Documentation

| Topic | Document | | --- | --- | | Product and trust contract | Install-once repository engineering team | | System architecture | Architecture | | Authorized issue lifecycle | Issue lifecycle | | Persistent memory | Agent memory | | Repository specialists | Repository specialists | | Accepted-merge learning | Continuous learning | | Runtime state and recovery | State lifecycle | | Build and packaging | Build and package | | Release procedure | Release process | | Security | Security policy |

See the complete documentation index.

Contributing

Contributions are welcome. Start with CONTRIBUTING.md, keep changes small and reviewable, and include the verification you performed.

License

Agentify is available under the MIT License.