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

@gitlink-ai/gitlink-code

v0.1.16

Published

GitLink Code — AI Coding Agent for DevOps

Readme

GitLink Code (gc)

AI coding agent CLI with full DevOps lifecycle integration.

Quick Start

# Configure API key (one-time)
mkdir -p ~/.gc
cat > ~/.gc/settings.json << 'EOF'
{
  "providers": {
    "deepseek": {
      "apiKey": "sk-your-key-here"
    }
  }
}
EOF

# Install & run
npm install -g gitlink-code
gc

Or with environment variable:

export DEEPSEEK_API_KEY="sk-..."
npx gc

CLI Entry Points

| Command | Behavior | |---------|----------| | gc | Interactive AI coding agent | | gitlink code | Subcommand form (same as gc) | | gitlinkcode | Alias (same as gc) | | gitlink --help | Show all commands |

Configuration

Config priority (low → high): defaults → ~/.gc/settings.json → .gc/settings.json → env vars → CLI flags

~/.gc/settings.json

{
  "model": "deepseek-v4-pro",
  "permissionMode": "default",
  "providers": {
    "deepseek": {
      "apiKey": "sk-...",
      "baseUrl": "https://api.deepseek.com",
      "model": "deepseek-v4-pro",
      "maxTokens": 8192
    }
  }
}

Project config

Place CLAUDE.md, .gc/config.md, or .gc/settings.json in your project root for project-specific instructions and overrides.

Features

  • Interactive TUI — Rich terminal interface with markdown rendering, diff view, tool cards
  • Non-interactive modegc --print "query" for one-shot questions
  • Slash Commands/specify, /plan, /implement, /validate spec-anchored development
  • DevOps Full-Cycle — PR review, CI/CD diagnosis, issue management, release notes
  • Skills System — SKILL.md with conditional activation (gitignore-style path patterns)
  • Multi-Agent Pipeline — Planner → Executor → Evaluator with context isolation
  • Three-Tier Memory — Working memory, session memory, persistent knowledge base
  • Permission Engine — Rule-based allow/ask/deny

CLI Options

-m, --model <model>         Model to use
-p, --print <query>         Non-interactive mode
--provider <name>           AI provider: deepseek, anthropic, openai
--provider-key <key>        API key for the selected provider
--permission-mode <mode>    default | acceptEdits | bypassPermissions
--project <path>            Project directory
--max-turns <n>             Max turns (default: 25)
--workflow <name>           Execute a workflow (non-interactive)
--workflow-list             List available workflows
--workflow-vars <vars...>   Workflow variables (key=value)

Slash Commands

| Command | Description | |---------|-------------| | /help | Show available commands | | /specify | Generate SPEC.md from feature description | | /plan | Generate PLAN.md + TASKS.md | | /implement | Execute tasks from TASKS.md | | /validate | Validate implementation against SPEC | | /pr-list | List pull requests | | /pr-review | Review a PR | | /ci-status | List CI builds | | /ci-debug | Diagnose CI failure | | /release-notes | Generate release notes | | /sprint-status | Generate sprint status report |

Documentation

Development

# Dev mode (with source)
npm run dev

# Bundle for release
npm run bundle

# Publish
./tools/publish.sh --publish

License

MIT