@every-env/compound-plugin 2.36.4 → 2.37.0

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.
Files changed (21) hide show
  1. package/.claude-plugin/marketplace.json +1 -1
  2. package/CHANGELOG.md +14 -0
  3. package/package.json +1 -1
  4. package/plugins/compound-engineering/.claude-plugin/plugin.json +1 -1
  5. package/plugins/compound-engineering/README.md +1 -1
  6. package/plugins/compound-engineering/skills/agent-browser/SKILL.md +510 -169
  7. package/plugins/compound-engineering/skills/agent-browser/references/authentication.md +303 -0
  8. package/plugins/compound-engineering/skills/agent-browser/references/commands.md +266 -0
  9. package/plugins/compound-engineering/skills/agent-browser/references/profiling.md +120 -0
  10. package/plugins/compound-engineering/skills/agent-browser/references/proxy-support.md +194 -0
  11. package/plugins/compound-engineering/skills/agent-browser/references/session-management.md +193 -0
  12. package/plugins/compound-engineering/skills/agent-browser/references/snapshot-refs.md +194 -0
  13. package/plugins/compound-engineering/skills/agent-browser/references/video-recording.md +173 -0
  14. package/plugins/compound-engineering/skills/agent-browser/templates/authenticated-session.sh +105 -0
  15. package/plugins/compound-engineering/skills/agent-browser/templates/capture-workflow.sh +69 -0
  16. package/plugins/compound-engineering/skills/agent-browser/templates/form-automation.sh +62 -0
  17. package/plugins/compound-engineering/skills/create-agent-skills/SKILL.md +3 -14
  18. package/plugins/compound-engineering/skills/skill-creator/SKILL.md +0 -210
  19. package/plugins/compound-engineering/skills/skill-creator/scripts/init_skill.py +0 -303
  20. package/plugins/compound-engineering/skills/skill-creator/scripts/package_skill.py +0 -110
  21. package/plugins/compound-engineering/skills/skill-creator/scripts/quick_validate.py +0 -65
@@ -11,7 +11,7 @@
11
11
  "plugins": [
12
12
  {
13
13
  "name": "compound-engineering",
14
- "description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 28 specialized agents and 47 skills.",
14
+ "description": "AI-powered development tools that get smarter with every use. Make each unit of engineering work easier than the last. Includes 28 specialized agents and 46 skills.",
15
15
  "version": "2.40.0",
16
16
  "author": {
17
17
  "name": "Kieran Klaassen",
package/CHANGELOG.md CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  Release numbering now follows the repository `v*` tag line. Starting at `v2.34.0`, the root CLI package and this changelog stay on that shared version stream. Older entries below retain the previous `0.x` CLI numbering.
9
9
 
10
+ # [2.37.0](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.36.5...v2.37.0) (2026-03-15)
11
+
12
+
13
+ ### Features
14
+
15
+ * sync agent-browser skill with upstream vercel-labs/agent-browser ([24860ec](https://github.com/EveryInc/compound-engineering-plugin/commit/24860ec3f1f1e7bfdee0f4408636ada1a3bb8f75))
16
+
17
+ ## [2.36.5](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.36.4...v2.36.5) (2026-03-15)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **create-agent-skills:** remove literal dynamic context directives that break skill loading ([4b4d1ae](https://github.com/EveryInc/compound-engineering-plugin/commit/4b4d1ae2707895d6d4fd2e60a64d83ca50f094a6)), closes [anthropics/claude-code#27149](https://github.com/anthropics/claude-code/issues/27149) [#13655](https://github.com/EveryInc/compound-engineering-plugin/issues/13655)
23
+
10
24
  ## [2.36.4](https://github.com/EveryInc/compound-engineering-plugin/compare/v2.36.3...v2.36.4) (2026-03-14)
11
25
 
12
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@every-env/compound-plugin",
3
- "version": "2.36.4",
3
+ "version": "2.37.0",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "bin": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "compound-engineering",
3
3
  "version": "2.40.0",
4
- "description": "AI-powered development tools. 28 agents, 47 skills, 1 MCP server for code review, research, design, and workflow automation.",
4
+ "description": "AI-powered development tools. 28 agents, 46 skills, 1 MCP server for code review, research, design, and workflow automation.",
5
5
  "author": {
6
6
  "name": "Kieran Klaassen",
7
7
  "email": "kieran@every.to",
@@ -124,7 +124,7 @@ Core workflow commands use `ce:` prefix to unambiguously identify them as compou
124
124
  | `dhh-rails-style` | Write Ruby/Rails code in DHH's 37signals style |
125
125
  | `dspy-ruby` | Build type-safe LLM applications with DSPy.rb |
126
126
  | `frontend-design` | Create production-grade frontend interfaces |
127
- | `skill-creator` | Guide for creating effective Claude Code skills |
127
+
128
128
 
129
129
  ### Content & Workflow
130
130