Commit Graph

301 Commits

Author SHA1 Message Date
copilot-swe-agent[bot]
f96a900e13 Remove prompts infrastructure from build scripts
Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
2026-02-24 14:40:36 +11:00
Aaron Powell
cf20643464 Merge pull request #797 from v-rperez030/markdown-accessibility-instructions
Add markdown accessibility instructions
2026-02-24 13:15:29 +11:00
Bruno Borges
dbaa8f6e3c Merge branch 'staged' into agentic-workflows-staged 2026-02-23 19:06:34 -05:00
Aaron Powell
a0c26e10af Merge branch 'staged' into add-entra-agent-user-skill 2026-02-24 10:54:12 +11:00
Aaron Powell
63faa5bff9 Merge pull request #754 from DavidARaygoza/dev/davidraygoza/CppLSToolsInstructions
Add custom instructions for using C++ language service tools
2026-02-24 10:53:57 +11:00
Aaron Powell
a6189179af Merge branch 'staged' into main 2026-02-24 10:49:14 +11:00
Aaron Powell
cd844a6566 Merge branch 'staged' into add-bigquery-pipeline-audit-prompt 2026-02-24 10:42:26 +11:00
Aaron Powell
05116b2492 Merge pull request #727 from lance2k/feat-add-context7-instruction
Add Context7 instructions for authoritative external documentation usage
2026-02-24 10:29:41 +11:00
Aaron Powell
46afbf68fb Cleaning up the plugins folder 2026-02-24 10:28:46 +11:00
Roberto Perez
1afa49ed4b Add markdown accessibility instructions 2026-02-23 20:34:56 +00:00
Fiza Musthafa
cc2d5acdbc feat: add entra-agent-user skill for creating Agent Users in Microsoft Entra ID 2026-02-21 12:04:15 +01:00
Bruno Borges
53401cb560 Simplify workflows to flat .md files instead of folders
Workflows are now standalone .md files in workflows/ — no subfolders
or README.md needed. Each file contains both the metadata frontmatter
(name, description, triggers, tags) and the agentic workflow definition
(on, permissions, safe-outputs) in a single file.

Updated all build scripts, CI workflows, docs, and review checklists.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-20 17:09:55 -08:00
Bruno Borges
997d6302bd Add Agentic Workflows as a new resource type
Add support for contributing Agentic Workflows — AI-powered repository
automations that run coding agents in GitHub Actions, defined in markdown
with natural language instructions (https://github.github.com/gh-aw).

Changes:
- Create workflows/ directory for community-contributed workflows
- Add workflow metadata parsing (yaml-parser.mjs)
- Add workflow README generation (update-readme.mjs, constants.mjs)
- Add workflow data to website generation (generate-website-data.mjs)
- Update README.md, CONTRIBUTING.md, and AGENTS.md with workflow docs,
  contributing guidelines, and code review checklists

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-20 17:09:55 -08:00
Héctor Benedicte
40bc8e7b0d Merge branch 'github:staged' into staged 2026-02-20 18:52:29 +01:00
Ramyashree Shetty
e13e02bea6 feat: add BigQuery pipeline audit prompt and list it in the documentation. 2026-02-20 14:57:15 +05:30
Aaron Powell
4dfcb55937 Fixing the readme 2026-02-20 15:45:55 +11:00
David Raygoza
c1931fa4fb Add custom instructions for using C++ language service tools 2026-02-19 16:17:37 -08:00
Aaron Powell
293d9737cb Merge branch 'main' into feat-add-context7-instruction 2026-02-19 15:29:24 +11:00
Aaron Powell
f5e992194a Merge branch 'main' into main 2026-02-19 15:28:57 +11:00
Aaron Powell
e20084d50f Merge remote-tracking branch 'origin/main' into plugin-migration 2026-02-19 10:54:38 +11:00
Aaron Powell
f880e1268f Merge pull request #757 from imran-siddique/add-agent-governance-instructions
feat: add agent-safety instructions and governance reviewer agent
2026-02-19 10:15:41 +11:00
Aaron Powell
41b70bca87 Merge pull request #756 from imran-siddique/add-governance-audit-hook
feat: add governance-audit hook — threat detection for Copilot sessions
2026-02-19 10:14:17 +11:00
Imran Siddique
33b7464774 feat: add agent-safety instructions and governance reviewer agent
- instructions/agent-safety.instructions.md: Guidelines for building safe,
  governed AI agent systems (tool access controls, content safety,
  multi-agent safety, audit patterns, framework-specific notes)
- agents/agent-governance-reviewer.agent.md: Expert agent that reviews code
  for governance gaps and helps implement policy enforcement

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 13:30:30 -08:00
Imran Siddique
4a4b9343d5 feat: add governance-audit hook — threat detection for Copilot sessions
Add real-time governance audit hook that scans prompts for threat signals:
- 5 threat categories: data exfiltration, privilege escalation,
  system destruction, prompt injection, credential exposure
- 4 governance levels: open, standard, strict, locked
- Append-only JSON audit trail (logs/copilot/governance/audit.log)
- Session summary with threat counts at session end
- Privacy-aware: logs decisions and metadata, never prompt content

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 13:29:41 -08:00
Imran Siddique
dcfae78fa4 feat: add agent-governance skill
Add governance patterns and techniques for AI agent systems:
- Policy definition with allowlists, blocklists, and content filters
- Semantic intent classification for threat detection
- Tool-level governance decorator pattern
- Trust scoring with temporal decay for multi-agent systems
- Append-only audit trail design
- Framework integration examples (PydanticAI, CrewAI, OpenAI Agents)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 13:28:25 -08:00
Aaron Powell
9d1df57ebc refactor: migrate plugins to Claude Code spec format
- Move plugin manifests from .github/plugin/ to .claude-plugin/
- Convert items[] to Claude Code spec fields (agents, commands, skills)
- Rename tags to keywords, drop display/featured/instructions from plugins
- Delete all symlinks and materialized files from plugin directories
- Add eng/materialize-plugins.mjs to copy source files into plugin dirs at publish time
- Add .github/workflows/publish.yml for staged->main publishing
- Update CI triggers to target staged branch
- Update validation, creation, marketplace, and README generation scripts
- Update CONTRIBUTING.md and AGENTS.md documentation
- Include all new content from main (polyglot-test-agent, gem-browser-tester,
  fabric-lakehouse, fluentui-blazor, quasi-coder, transloadit-media-processing,
  make-repo-contribution hardening, website logo/gradient changes)

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:22:50 +11:00
Aaron Powell
3575e81185 Merge pull request #748 from jhauga/skill-quasi-coder
new skill quasi-coder
2026-02-18 14:00:24 +11:00
Aaron Powell
35cd212801 Merge pull request #733 from mubaidr/chrome-to-browser
refactor: rename gem-chrome-tester to gem-browser-tester
2026-02-18 13:59:41 +11:00
Aaron Powell
5a39f0f558 Merge pull request #741 from tedvilutis/main
Fabric Lakehouse Skill
2026-02-18 13:58:15 +11:00
jhauga
45e7655e60 new skill quasi-coder 2026-02-17 19:50:28 -05:00
Aaron Powell
2017acd716 Merge pull request #744 from kvz/add-transloadit-media-processing
Add transloadit-media-processing skill
2026-02-18 10:24:48 +11:00
Aaron Powell
a2790216a6 Merge pull request #735 from JanKrivanek/dev/jankrivanek/polygot-test-agent
Add polygot test agent
2026-02-18 10:21:33 +11:00
Ted Vilutis
4b7ad71086 Update README.skills.md 2026-02-17 10:55:46 -08:00
Kevin van Zonneveld
ef1cdcd647 Add transloadit-media-processing skill
Media processing skill using Transloadit's 86+ robots for video encoding,
image manipulation, audio transcoding, OCR, and multi-step pipelines.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-17 15:52:54 +01:00
Héctor Benedicte
d6848902b5 Add Moodle instructions 2026-02-17 08:57:06 +01:00
Adrien Clerbois
dc484e4079 Consolidates fluentui-blazor skill entry
Removes duplicate entry for the fluentui-blazor skill in the skills documentation. Keeps the entry on the main branch.
2026-02-17 08:51:44 +01:00
Adrien Clerbois
a514ab3edc Merge branch 'main' into skill/fluentui-blazor 2026-02-17 08:48:46 +01:00
Muhammad Ubaid Raza
c991fb1519 Merge branch 'main' into chrome-to-browser 2026-02-17 12:35:09 +05:00
Ted Vilutis
2dcc97df98 Fabric Lakehouse Skill
This is new skill for Copilot agent to work with fabric Lakehouse
2026-02-16 18:18:48 -08:00
Aaron Powell
fc0ffa8cb3 Merge pull request #734 from JanKrivanek/dev/jankrivanek/csharp-unittest-info
Add missing csharp unittesting info pointers
2026-02-17 09:53:24 +11:00
Aaron Powell
0b008682f5 Merge branch 'main' into add-finnish-humanizer-prompt 2026-02-17 09:26:59 +11:00
Adrien Clerbois
c824a3c8b6 Add fluentui-blazor skill
Add a new skill for using the Microsoft Fluent UI Blazor component library (Microsoft.FluentUI.AspNetCore.Components v4) in Blazor applications. Includes guidance on setup, component usage, theming, data grids, layout and navigation.
2026-02-16 22:43:41 +01:00
Jan Krivanek
024d2bfca7 Add plugin 2026-02-16 16:10:52 +01:00
HassiumX
3df3129695 refactor: convert prompt to skill format
Per reviewer feedback, migrate from prompts/ to skills/ format:
- Move prompt → skills/finnish-humanizer/SKILL.md with proper frontmatter
- Bundle references/patterns.md (26 AI patterns + 4 style markers)
- Regenerate README tables via npm start
2026-02-16 17:01:12 +02:00
Jan Krivanek
1cd34d5d25 Add polygot test agent 2026-02-16 15:51:07 +01:00
Jan Krivanek
ca8c9ebdea Add missing csharp unittesting info pointers 2026-02-16 15:25:27 +01:00
Muhammad Ubaid Raza
448ad46e72 refactor: rename gem-chrome-tester to gem-browser-tester
Rename the Chrome-specific testing agent to a browser-agnostic version
to support multiple automation tools (Playwright, Chrome DevTools, etc.).
Updates all references in orchestrator and planner configurations, and
broadens the description and execution workflow to be tool-flexible.
Evidence storage rule clarified to apply primarily on failures.
2026-02-16 13:42:29 +05:00
Aaron Powell
7855e66af8 Merge pull request #716 from 4regab/patch-1
Upgrade TaskSync prompt to version 5.2
2026-02-16 16:30:57 +11:00
John Haugabook
d458dd6ca6 Merge branch 'main' into skill-pdftk-server 2026-02-15 21:46:54 -05:00
Aaron Powell
6ecd0098cf Remove collections folder and migrate remaining references to plugins
- Remove rug-agentic-workflow collection files (already migrated to plugin)
- Remove collections.instructions.md (no longer applicable)
- Remove suggest-awesome-github-copilot-collections prompt and plugin command
- Update awesome-copilot plugin.json to reference skills prompt instead of collections
- Update contributor-report.mjs to track plugins instead of collections
- Remove unused collection constants from constants.mjs
- Update rug-agentic-workflow plugin.json with tags and items from collection
- Regenerate README docs and marketplace.json
2026-02-16 12:05:48 +11:00