Initial commit: copilot-skill-factory v0.1.0

Meta-plugin for GitHub Copilot CLI that watches workflows and
auto-generates reusable agent skills.

- postToolUse hook: fingerprints and logs tool calls per session
- sessionEnd hook: sliding-window pattern detection across sessions
- sessionStart hook: injects context about proposed skills
- /skill-factory slash command for reviewing/managing skills
- 13 passing tests validating observer, analyzer, and edge cases

Inspired by hermes-skill-factory (Romanescu11/hermes-skill-factory)
This commit is contained in:
2026-06-19 08:22:11 +00:00
commit 94cfd80dd0
8 changed files with 1265 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"name": "copilot-skill-factory",
"description": "Meta-plugin that watches your Copilot CLI workflows and automatically proposes reusable agent skills. Detects repeatable tool-call patterns across sessions and generates SKILL.md files — just like hermes-skill-factory for Hermes Agent.",
"version": "0.1.0",
"author": {
"name": "Skill Factory"
},
"homepage": "https://github.com/droideparanoico/copilot-skill-factory",
"repository": "https://github.com/droideparanoico/copilot-skill-factory",
"license": "MIT",
"keywords": [
"skill-factory",
"meta-skill",
"skill-generator",
"automation",
"productivity",
"workflow"
],
"category": "productivity",
"tags": [
"skill-generation",
"automation",
"meta"
],
"hooks": "hooks/hooks.json"
}