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

@sdcorejs/agent

v0.0.1

Published

SDCoreJS agent CLI

Readme

Start building Angular portal modules with @sd-angular/core.

Key resources:

CLI Quick Commands

This repository now exposes a CLI command alias: sd-agent.

  • Local run from this repo:
    • npx --yes --package file:. sd-agent skills list
    • npx --yes --package file:. sd-agent skills path
  • Build package preview:
    • npm run build
  • Publish to npm (public):
    • npm run publish:npm

After publishing @sdcorejs/agent, users can run:

  • npx @sdcorejs/agent skills list
  • npx @sdcorejs/agent skills path

Teammate Chat Onboarding (Quick)

Onboarding Đồng Nghiệp (Nhanh)

After cloning this repository, teammates can use VS Code Chat immediately with fallback prompts: Sau khi clone repository này, đồng nghiệp có thể dùng VS Code Chat ngay với fallback prompts.

Meaning of fallback prompts / Nghĩa của fallback prompts:

  • EN: Prepared prompt files used when SDCoreJS chat mode is not visible.
  • VI: Các file prompt chuẩn bị sẵn, dùng khi không thấy SDCoreJS chat mode.
  1. Use prompt files:
  • .github/prompts/sdcorejs-angular-portal.prompt.md
  • .github/prompts/sdcorejs-angular-portal-claude-github.prompt.md
  • .github/prompts/sdcorejs-angular-portal-smoke-tests.vi.prompt.md
  1. Dùng các file prompt:
  • .github/prompts/sdcorejs-angular-portal.prompt.md
  • .github/prompts/sdcorejs-angular-portal-claude-github.prompt.md
  • .github/prompts/sdcorejs-angular-portal-smoke-tests.vi.prompt.md
  1. Add these scope constraints in every prompt:
  • Only read rules from: sdcorejs-agent/skills/angular-portal
  • For portal init, use starter baseline only from: sdcorejs-agent/core/templates/angular-portal-starter
  • Only create or edit files in their portal repository
  1. Thêm ràng buộc phạm vi trong mọi prompt:
  • Chỉ đọc rules từ: sdcorejs-agent/skills/angular-portal
  • Khi khởi tạo portal, chỉ dùng baseline từ: sdcorejs-agent/core/templates/angular-portal-starter
  • Chỉ tạo hoặc sửa file trong repo portal của họ

Reference guide:

  • agents/sdcorejs/README.md

Repository Maintenance Rule

Any task that edits files inside sdcorejs-agent must also write or update the current-day handoff in agents/sdcorejs/HANDOFF-YYYY-MM-DD.md before the task is considered complete.

Minimum handoff content:

  • session focus
  • changed files or affected areas
  • verification status or remaining blockers
sdcorejs-agent/
├── .github/
│   └── copilot-instructions.md     # Agent configuration and guidelines
├── skills/                          # Modular code generation skills
│   ├── angular-portal/              # Angular portal skills (@sd-angular/core → @sdcorejs/angular)
│   │   ├── angular-entity-crud-skill.md
│   │   ├── angular-module-configuration-skill.md
│   │   ├── angular-reactive-form-skill.md
│   │   ├── INDEX.md
│   │   └── README.md
│   ├── nestjs/                      # NestJS backend skills (to be added)
│   ├── shared/                      # Shared utilities & validators (to be added)
│   └── README.md
├── agents/                          # High-level orchestrators
│   ├── angular-portal-agent/        # Angular portal module generation
│   ├── nestjs-agent/                # NestJS module generation
│   └── full-stack-agent/            # Complete full-stack generation
├── core/                            # Shared utilities & interfaces
│   ├── utilities/
│   ├── interfaces/
│   ├── validators/
│   └── templates/
└── README.md                        # This file

sdcorejs-agent is an AI-powered coding agent designed to generate backend and frontend code following a strict, opinionated architecture.

It transforms natural language requirements into structured, production-ready modules by combining:

  • Architecture-aware planning
  • Modular skill system
  • Code generation with templates
  • Tool-based execution (file system, validation, etc.)

The agent is optimized for:

  • NestJS backend (controller → service → repository)
  • Angular frontend with sdcorejs UI system
  • Scalable, maintainable enterprise architecture

Example: "Build product module with name, price and validation"

→ Automatically generates:

  • Entity
  • SaveReq/DTOs (create/update with validation)
  • Repository
  • Service
  • Controller