@fyow/copilot-everything 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: architect
3
3
  description: Software architecture specialist for system design, scalability, and technical decision-making. Use PROACTIVELY when planning new features, refactoring large systems, or making architectural decisions.
4
- tools: ["read", "search"]
5
4
  ---
6
5
 
7
6
  You are a senior software architect specializing in scalable, maintainable system design.
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: build-error-resolver
3
3
  description: Build and TypeScript error resolution specialist. Use PROACTIVELY when build fails or type errors occur. Fixes build/type errors only with minimal diffs, no architectural edits. Focuses on getting the build green quickly.
4
- tools: ["read", "edit", "shell", "search"]
5
4
  ---
6
5
 
7
6
  # Build Error Resolver
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: code-reviewer
3
3
  description: Expert code review specialist. Proactively reviews code for quality, security, and maintainability. Use immediately after writing or modifying code. MUST BE USED for all code changes.
4
- tools: ["read", "search", "shell"]
5
4
  ---
6
5
 
7
6
  You are a senior code reviewer ensuring high standards of code quality and security.
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: doc-updater
3
3
  description: Documentation and codemap specialist. Use PROACTIVELY for updating codemaps and documentation. Runs /update-codemaps and /update-docs, generates docs/CODEMAPS/*, updates READMEs and guides.
4
- tools: ["read", "edit", "shell", "search"]
5
4
  ---
6
5
 
7
6
  # Documentation & Codemap Specialist
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: e2e-runner
3
3
  description: End-to-end testing specialist using Playwright. Use PROACTIVELY for generating, maintaining, and running E2E tests. Manages test journeys, quarantines flaky tests, uploads artifacts (screenshots, videos, traces), and ensures critical user flows work.
4
- tools: ["read", "edit", "shell", "search"]
5
4
  ---
6
5
 
7
6
  # E2E Test Runner
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: planner
3
3
  description: Expert planning specialist for complex features and refactoring. Use PROACTIVELY when users request feature implementation, architectural changes, or complex refactoring. Automatically activated for planning tasks.
4
- tools: ["read", "search"]
5
4
  ---
6
5
 
7
6
  You are an expert planning specialist focused on creating comprehensive, actionable implementation plans.
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: refactor-cleaner
3
3
  description: Dead code cleanup and consolidation specialist. Use PROACTIVELY for removing unused code, duplicates, and refactoring. Runs analysis tools (knip, depcheck, ts-prune) to identify dead code and safely removes it.
4
- tools: ["read", "edit", "shell", "search"]
5
4
  ---
6
5
 
7
6
  # Refactor & Dead Code Cleaner
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: security-reviewer
3
3
  description: Security vulnerability detection and remediation specialist. Use PROACTIVELY after writing code that handles user input, authentication, API endpoints, or sensitive data. Flags secrets, SSRF, injection, unsafe crypto, and OWASP Top 10 vulnerabilities.
4
- tools: ["read", "edit", "shell", "search"]
5
4
  ---
6
5
 
7
6
  # Security Reviewer
@@ -1,7 +1,6 @@
1
1
  ---
2
2
  name: tdd-guide
3
3
  description: Test-Driven Development specialist enforcing write-tests-first methodology. Use PROACTIVELY when writing new features, fixing bugs, or refactoring code. Ensures 80%+ test coverage.
4
- tools: ["read", "edit", "shell", "search"]
5
4
  ---
6
5
 
7
6
  You are a Test-Driven Development (TDD) specialist who ensures all code is developed test-first with comprehensive coverage.
@@ -7,6 +7,17 @@ description: Use this skill when writing new features, fixing bugs, or refactori
7
7
 
8
8
  This skill ensures all code development follows TDD principles with comprehensive test coverage.
9
9
 
10
+ > **Note for GitHub Copilot Chat Users**: This skill provides TDD workflow guidance. The AI assistant will use the available VS Code tools (file reading, editing, terminal execution) automatically. You don't need to manually invoke any tools - just follow the TDD steps below and the assistant will use the appropriate tools.
11
+
12
+ ## Available Capabilities
13
+
14
+ When working with GitHub Copilot Chat in VS Code, the following capabilities are available:
15
+
16
+ - **Reading files**: View source code and test files
17
+ - **Creating/Editing files**: Write test files and implementation code
18
+ - **Running commands**: Execute test commands, coverage reports
19
+ - **Searching code**: Find existing tests, patterns, implementations
20
+
10
21
  ## When to Activate
11
22
 
12
23
  - Writing new features or functionality
@@ -1,6 +1,8 @@
1
1
  # Verification Loop Skill
2
2
 
3
- A comprehensive verification system for Claude Code sessions.
3
+ A comprehensive verification system for code development sessions.
4
+
5
+ > **Note for GitHub Copilot Chat Users**: This skill provides verification workflow guidance. The AI assistant will use the available VS Code tools automatically to run commands, read files, and search code. No manual tool invocation is required.
4
6
 
5
7
  ## When to Use
6
8
 
package/README.md CHANGED
@@ -144,10 +144,25 @@ your-project/
144
144
 
145
145
  ## Compatibility
146
146
 
147
- - **GitHub Copilot CLI**
148
- - **Claude Code** ✅ (uses same .github/ structure)
149
- - **VS Code Copilot** ✅
150
- - **Node.js** >= 18.0.0
147
+ | Platform | Support Level | Notes |
148
+ |----------|--------------|-------|
149
+ | **GitHub Copilot CLI** | Full | All features (agents, skills, hooks, instructions) |
150
+ | **Claude Code** | ✅ Full | Uses same .github/ structure |
151
+ | **VS Code Copilot Chat** | ⚠️ Partial | Instructions only; agents/hooks not supported |
152
+ | **Node.js** | >= 18.0.0 | Required for CLI |
153
+
154
+ ### Using in VS Code Copilot Chat
155
+
156
+ VS Code Copilot Chat has different tool capabilities than Copilot CLI:
157
+
158
+ 1. **Custom agents** (`.agent.md`) are **not supported** in VS Code
159
+ 2. **Hooks** are **not supported** in VS Code
160
+ 3. **Instructions** are loaded automatically ✅
161
+ 4. **Skills** can be referenced manually by:
162
+ - Attaching the skill file to your chat
163
+ - Saying: "Follow the workflow in `.github/skills/tdd-workflow/SKILL.md`"
164
+
165
+ VS Code uses its own built-in tools (`read_file`, `run_in_terminal`, etc.) which work automatically.
151
166
 
152
167
  ---
153
168
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fyow/copilot-everything",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Everything you need for GitHub Copilot CLI - agents, skills, instructions, and hooks configurations",
5
5
  "main": "src/index.js",
6
6
  "bin": {