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

opencode-team

v0.1.1

Published

OpenAI-only 기반 멀티 에이전트 실무 워크플로우 플러그인입니다.

Readme

OpenCode Team

OpenAI-only 기반 멀티 에이전트 실무 워크플로우 플러그인입니다.

요구사항을 한 번 입력하면 기본 경로에서 requirements -> planning -> issue -> development -> testing -> merge를 실행하도록 설계되어 있습니다.

이 프로젝트는 oh-my-opencode를 개인 워크플로우에 맞게 단순화하고 개인화해서 사용하려는 목적에서 시작했습니다. 핵심 아이디어를 참고하되, 실제 운영에 필요한 기능만 남기는 scope-freeze 정책을 따릅니다. 세부 설계/운영 원칙은 ARCHITECTURE.md를 단일 기준으로 사용합니다.

Acknowledgements

  • 이 프로젝트는 oh-my-opencode의 워크플로우 아이디어를 참고해 개인 사용 목적에 맞게 재구성했습니다.
  • Maintainer: Taesoo Kim (@taedi90)

Quick Start

  • 의존성 설치: npm install
  • 설정/MCP bootstrap: npm run cli -- install
  • 워크플로우 실행: npm run cli -- run "implement #29 one-shot orchestrator"
  • 환경 진단: npm run cli -- doctor --json

npm Install

  • 전역 설치: npm install -g opencode-team
  • 설치 후 도움말: opencode-team --help
  • 1회 실행: npx opencode-team --help
  • bootstrap: opencode-team install

Slash Commands

  • /orchestrate <task>: orchestrator one-shot 실행
  • /ultrawork <task>: standalone ultrawork 실행
  • /ralph <task>: standalone ralph loop 실행
  • /ulw-loop <task>: ultrawork -> ralph loop 연속 실행
  • /cancel --target <orchestrator|ultrawork|ralph>: session mode 취소

추가 args:

  • --session <id>: 모드 상태 세션 식별자 지정
  • --max-iterations <n>: ralph max iteration 지정

Keyword Routing

명시 slash command가 없으면 키워드 라우팅을 적용합니다.

  • orchestrator: orchestrate
  • ultrawork: ultrawork, ulw, parallel
  • ralph: ralph, 끝까지, must complete
  • cancel: cancel, stop, abort

우선순위는 명시 커맨드 > 키워드 > 기본(orchestrator)입니다.

Runtime Lifecycle

  • pre-run: .agent-guide/context + .agent-guide/memory preload
  • in-run: memory reference 로그 append
  • post-run: context handoff 갱신 + memory 승격/정리

subagent 실행 안전장치:

  • 모든 role 실행은 timeout/retry 힌트를 포함해 executor로 전달됩니다.
  • 기본 timeout: 120000ms
  • 기본 retry: 0 (maxAttempts=1)
  • timeout 초과 시 상태는 timeout, 오류 코드는 timeout으로 기록됩니다.
  • role 실행 입력은 6-섹션 delegation prompt contract(TASK/EXPECTED OUTCOME/REQUIRED TOOLS/MUST DO/MUST NOT DO/CONTEXT)로 정규화됩니다.
  • 각 role 실행 artifact에는 delegation prompt hash/line count가 기록되어 실행 관측성과 추적성이 보장됩니다.

orchestrator 세션 상태:

  • .agent-guide/runtime/state/sessions/<sessionId>/orchestrator-state.json
  • .agent-guide/runtime/state/sessions/<sessionId>/workflow-state.json
  • orchestrator-state.jsoncurrentPhaserequirements -> planning -> issue -> development -> testing -> merge 전이를 기록

관련 로그:

  • .agent-guide/runtime/context-memory-log.jsonl
  • .agent-guide/runtime/workflow-events.jsonl
  • .agent-guide/runtime/state/sessions/<sessionId>/*-state.json

MCP / Tool Policy

  • install 단계에서 MCP manifest를 bootstrap 합니다.
  • runtime에서 agent tool policy를 검사하며 위반 시 차단합니다.
  • doctor에서 MCP manifest 및 tool policy 상태를 점검합니다.
  • tool policy audit 로그는 session_id, stage 메타데이터를 포함합니다.
  • researcher 역할은 기본적으로 web_search/context7 계열 도구를 허용하고, bash/write/edit/github는 차단합니다.
  • documenter 역할은 README.md, ARCHITECTURE.md, docs/**/*.md 동기화를 담당하며 기본적으로 write/edit를 허용하고 bash/github를 차단합니다.

Verification

  • 테스트: npm test
  • 타입체크: npm run typecheck
  • 빌드: npm run build
  • 릴리스 게이트: npm run release:gate
  • 신뢰성 반복검증: npm run e2e:reliability -- --iterations 10

기본 testing stage는 testingPlan에 기록된 명령(예: npm test, npm run typecheck, npm run build)을 실제로 실행하고 실패 시 워크플로우를 중단합니다. 보안/재현성 유지를 위해 기본 허용 검증 명령은 npm test, npm run typecheck, npm run build, npm run release:gate로 제한됩니다.

자동 PR 경로는 merge 단계에서 로컬 git 브랜치 준비(checkout -B, add/commit, push)가 가능해야 하며, 로컬 변경이 없거나 git 저장소가 아니면 명시적 오류로 실패합니다.

기본 development stage는 git 저장소 + package.json 환경에서 개발 스크립트가 필요합니다.

  • 우선순위: opencode:develop -> develop:opencode -> develop
  • 스크립트가 없으면 development stage는 실패합니다.
  • 기본 엔트리: scripts/develop/index.mjs
  • 수동 실행 예시: OPENCODE_TASK="implement #101" npm run opencode:develop
  • 스크립트가 파일 변경을 만들지 못하면 no-op으로 실패합니다.
  • development 완료 후 documenter 동기화 리포트가 .agent-guide/docs/documentation-sync.md에 기록됩니다.

세션 동시 실행 방지를 위해 session lock을 사용하며, stale lock은 TTL(기본 30분) 기준으로 자동 복구합니다.

Docs

  • 아키텍처/운영 설계 기준: ARCHITECTURE.md
  • 사용자 가이드: docs/user-guide.md
  • 릴리스 게이트: docs/release-gate-checklist.md
  • 실경로 E2E 증적: docs/e2e-evidence.md
  • 운영 runbook: docs/operations-runbook.md
  • Go/No-Go 템플릿: docs/go-no-go-template.md