
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
A modern CLI tool for automated npm package publishing with git management, version control, GitHub Actions integration, and secure configuration management.
English | 简体中文
# Global installation
npm install -g qkdpx
# Or use with npx
npx qkdpx publish
# Clone the repository
git clone <repository-url>
cd dpx
# Install dependencies
npm install
# Build the project
npm run build
# Link locally for development
npm link
# Publish current project
qkdpx publish
# Specify version bump type
qkdpx publish --version patch
qkdpx publish --version minor
qkdpx publish --version major
# Skip confirmation prompts
qkdpx publish --skip-confirm
# Dry run (no actual publishing)
qkdpx publish --dry-run
# Interactive release workflow
qkdpx release
# Specify version bump type
qkdpx release --version patch
qkdpx release --version minor
qkdpx release --version major
# Skip confirmation prompts
qkdpx release --skip-confirm
# Custom commit message
qkdpx release -m "feat: add new features"
# Initialize configuration
qkdpx init
# Show current configuration
qkdpx init --show
| Command | Purpose | GitHub Actions |
|---|---|---|
qkdpx publish | Publish to npm only | ❌ |
qkdpx release | Commit → Tag → Push → Trigger CI/CD | ✅ |
qkdpx init | Configure authentication | - |
The publishing workflow follows a safe, publish-first-then-commit approach:
Designed to trigger automated CI/CD pipelines:
Create .github/workflows/release.yml:
name: Release and Publish
on:
push:
tags: ['v*.*.*']
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: |
npm ci
npm run build
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Local development and testing
qkdpx publish --dry-run
# Release to trigger GitHub Actions
qkdpx release --version patch
This will:
v1.0.1)~/.qkdpx/config.json){
"registry": "https://registry.npmjs.org/",
"authToken": "<encrypted-token>"
}
abc***xyz formatnpm install # Install dependencies
npm run dev # Development mode with tsx
npm run build # Build TypeScript to JavaScript
npm run lint # ESLint checking
npm run typecheck # TypeScript type checking
npm run clean # Clean build artifacts
src/
├── commands/
│ ├── init.ts # Configuration command
│ ├── publish.ts # NPM publish workflow
│ └── release.ts # GitHub Actions release workflow
├── modules/ # Business logic
├── utils/ # Utility classes
└── types/ # TypeScript definitions
# Keep current version (just tag and push)
qkdpx release --version none
# Interactive selection with custom message
qkdpx release -m "chore: prepare for release"
# Automated release in CI environment
qkdpx release --version patch --skip-confirm
Both workflows include automatic error recovery:
qkdpx init to reconfigurenpm run build worksgit config --listDEBUG=qkdpx* qkdpx publish
git checkout -b feature/name)git commit -m 'Add feature')git push origin feature/name)MIT License - see the LICENSE file for details.
FAQs
A fast and modern CLI tool for npm package publishing with automated workflow
The npm package qkdpx receives a total of 10 weekly downloads. As such, qkdpx popularity was classified as not popular.
We found that qkdpx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.