@maestria/opencode 0.5.5 → 0.5.7

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 (2) hide show
  1. package/package.json +1 -1
  2. package/rules/AGENTS.md +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maestria/opencode",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "description": "OpenCode plugin encoding AI engineering praxis: rules, agents, and workflow discipline.",
5
5
  "keywords": [
6
6
  "agents",
package/rules/AGENTS.md CHANGED
@@ -20,6 +20,7 @@
20
20
  - **Tool hierarchy for external information:**
21
21
  1. `webfetch` - fetch a specific known URL (for docs, pages)
22
22
  2. `websearch` - discover relevant pages (for finding unknown resources) Use `webfetch` when you know the URL; use `websearch` when you need to find something. `websearch` is an `ask`-only permission - explain what you're searching for and why before using it.
23
+ - **Prefer code intelligence tools for codebase exploration** - when available, use them before falling back to grep/read loops.
23
24
 
24
25
  ## Principles
25
26