Best for
- New feature development
- Code refactoring
- Architecture changes
archubbuck/workspace-architect/assets/skills/example-planner/SKILL.md
Create detailed implementation plans for software features and refactoring tasks. Use this skill when planning new features, architectural changes, or major refactoring efforts.
Decision brief
This is an example skill that demonstrates the Claude Skills format for workspace-architect.
Compatibility matrix
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/archubbuck/workspace-architect --skill "assets/skills/example-planner"Inspect the Agent Skill "example-planner" from https://github.com/archubbuck/workspace-architect/blob/2e129d78b4f633bd7a10791e97961b2e4ae46754/assets/skills/example-planner/SKILL.md at commit 2e129d78b4f633bd7a10791e97961b2e4ae46754. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
When activated, follow these steps:
Add OAuth 2.0 authentication to the application, supporting Google and GitHub providers.
1. Setup OAuth Providers (4 hours) - Register apps with Google/GitHub - Configure OAuth credentials - Store secrets securely
Use this skill when you need to create a comprehensive implementation plan for: - New feature development - Code refactoring - Architecture changes - Technical debt reduction
Permission review
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 89/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 17 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
This is an example skill that demonstrates the Claude Skills format for workspace-architect.
Use this skill when you need to create a comprehensive implementation plan for:
When activated, follow these steps:
Gather Requirements
Analyze Current State
Design Solution
Create Implementation Plan Generate a plan with these sections:
Detailed task breakdown with:
Review and Iterate
Use clear Markdown formatting with:
# Implementation Plan: User Authentication
## Overview
Add OAuth 2.0 authentication to the application, supporting Google and GitHub providers.
## Requirements
### Functional
- Users can sign in with Google or GitHub
- Session management with JWT tokens
- Logout functionality
- Remember me option
### Non-Functional
- Response time < 2s for auth flow
- 99.9% uptime for auth service
- GDPR compliant data handling
## Implementation Steps
1. **Setup OAuth Providers** (4 hours)
- Register apps with Google/GitHub
- Configure OAuth credentials
- Store secrets securely
2. **Backend Implementation** (16 hours)
- Create OAuth callback endpoints
- Implement JWT token generation
- Add session middleware
- Write unit tests
3. **Frontend Implementation** (12 hours)
- Add login buttons
- Handle OAuth redirects
- Store tokens securely
- Implement logout
...