SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/duclm1x1/Dive-Ai --skill productboard-release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Persistent memory system for AI agents following Model Context Protocol (MCP). Use for storing long-term memories across sessions, semantic search of past knowledge, building knowledge graphs, auto-injecting context, deduplicating memories, syncing to cloud storage. Essential for agents that need to remember decisions, solutions, preferences, and learned patterns over time.
Master REST and GraphQL API design principles to build intuitive, scalable, and maintainable APIs that delight developers. Use when designing new APIs, reviewing API specifications, or establishing API design standards.
| name | productboard-release |
| description | Manage ProductBoard releases and roadmap planning |
| user-invocable | false |
| homepage | https://github.com/robertoamoreno/openclaw-productboard |
| metadata | {"openclaw":{"emoji":"🚀"}} |
Plan and manage product releases by organizing features, tracking progress, and updating statuses in ProductBoard.
pb_feature_create - Create new features for releasespb_feature_update - Update feature status and detailspb_feature_list - List features by status or productpb_feature_get - Get detailed feature informationpb_product_list - List productspb_product_hierarchy - View product structurepb_user_list - Find users to assign as owners1. pb_product_hierarchy - Understand workspace structure
2. pb_feature_list with status "candidate" - Review feature candidates
3. pb_feature_list with status "in-progress" - Check ongoing work
Review candidates and update their status:
pb_feature_update:
- id: "feature-id"
- status: "in-progress" // Move to active development
Find users and assign feature ownership:
1. pb_user_list - Get available team members
2. pb_feature_update:
- id: "feature-id"
- ownerEmail: "developer@company.com"
Add planning dates to features:
pb_feature_update:
- id: "feature-id"
- startDate: "2024-01-15"
- endDate: "2024-02-15"
Monitor feature statuses:
pb_feature_list with status "in-progress" - Active development
pb_feature_list with status "shipped" - Completed features
| Status | Description |
|---|---|
new | Just created, not yet evaluated |
candidate | Being considered for development |
in-progress | Actively being developed |
shipped | Released to customers |
postponed | Deferred to future planning |
archived | No longer relevant |
pb_feature_list with status "candidate"pb_feature_get for detailspb_feature_updatepb_feature_update with ownerEmailpb_feature_update with startDate/endDatepb_feature_list with status "shipped"pb_feature_update with status "archived"pb_product_hierarchypb_feature_createpb_feature_create:
- name: "Feature name"
- productId: "product-id"
- status: "candidate"
pb_feature_create:
- name: "Feature name"
- componentId: "component-id"
- status: "candidate"
pb_feature_create:
- name: "Sub-feature name"
- parentFeatureId: "parent-feature-id"