
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.
Spec Driven Development Execution Framework - 유저가 정의한 스텝대로 SDD를 실행하는 CLI
npm install -g spets
# 또는 npx로 바로 사용
npx spets init
# 프로젝트에서 초기화
npx spets init
# 인터랙티브 셋업 (AI 에이전트 선택 포함)
npx spets init -i
# 워크플로우 시작 (Claude Code 안에서)
/spets "TODO 앱 만들어줘"
# 상태 확인
npx spets status
# 대시보드
npx spets dashboard
.spets/ 폴더에 설정과 스텝 템플릿 생성.spets/
├── config.yml # 워크플로우 설정
├── steps/
│ ├── 01-plan/
│ │ └── template.md # 출력 템플릿
│ └── 02-implement/
│ └── template.md
├── outputs/ # 생성된 문서들
│ └── <taskId>/
│ ├── 01-plan.md
│ └── 02-implement.md
├── hooks/ # 훅 스크립트
└── knowledge/ # 학습된 지식 파일
Spets provides skill/command definitions for use within AI CLI sessions:
# Claude Code 스킬 설치
npx spets plugin install claude
# Claude Code에서 사용
/spets "task description"
# Gemini CLI 스킬 설치
npx spets plugin install gemini
# Gemini CLI에서 사용
@spets "task description"
The Gemini CLI command is installed at .gemini/commands/spets.md (project-level). Use it within a Gemini CLI session.
# Codex 스킬 설치
npx spets plugin install codex
# Codex에서 사용
/spets "task description"
.spets/config.yml:
steps:
- 01-plan
- 02-implement
# AI 에이전트 선택
agent: claude # claude, codex, gemini
# 훅 (선택)
hooks:
preStep: "./hooks/pre-step.sh"
postStep: "./hooks/post-step.sh"
onApprove: "./hooks/on-approve.sh"
onComplete: "./hooks/on-complete.sh"
Environment Variables Available in Hooks:
SPETS_TASK_ID - Current task IDSPETS_STEP_NAME - Current step nameSPETS_STEP_INDEX - Current step indexSPETS_OUTPUT_PATH - Output directory pathSPETS_BRANCH - Current git branch nameSPETS_CWD - Working directory| Agent | Config Value |
|---|---|
| Claude (default) | claude |
| Gemini | gemini |
| Codex | codex |
# Set default agent in config
agent: gemini # or claude, codex
claude command) - defaultgemini command)codex command)npm EPERM with npxIf npx spets ... fails with permission errors like ~/.npm/_logs, run with a project-local npm cache:
NPM_CONFIG_CACHE=.spets/.npm-cache npm_config_cache=.spets/.npm-cache npx --yes spets init
NPM_CONFIG_CACHE=.spets/.npm-cache npm_config_cache=.spets/.npm-cache npx --yes spets plugin install codex
MIT
FAQs
Spec Driven Development Execution Framework
The npm package spets receives a total of 11 weekly downloads. As such, spets popularity was classified as not popular.
We found that spets 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.