sagaz-ai 0.1.2 → 0.1.3

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.
package/README.md CHANGED
@@ -41,6 +41,7 @@ Sagaz also guides the user through the process. At the end of each phase, it exp
41
41
  - **Tool registry:** Sagaz verifies and recommends tools such as GitHub CLI, Playwright, Vercel, Expo/EAS, Supabase, Firebase, Stripe, CI/CD, and observability services.
42
42
  - **Stack presets:** common web, mobile, backend, database, and dashboard stacks are documented as starting points.
43
43
  - **Sagaz evaluations:** scenario-based checks help prevent regressions in the orchestration system itself.
44
+ - **Compatibility audits:** Sagaz can check whether Windows, macOS, npm, Node.js, Codex Desktop, AI model behavior, GitHub, package contents, or external platform changes require a Sagaz update.
44
45
 
45
46
  ## How It Works
46
47
 
@@ -206,6 +207,8 @@ For tool-heavy work, Sagaz uses a tool registry to verify local availability and
206
207
 
207
208
  For common project types, Sagaz can start from documented stack presets such as Next.js on Vercel, React with Vite, Expo mobile, React Native, Supabase, Firebase, Node APIs, static sites, and admin dashboards.
208
209
 
210
+ When asked whether Sagaz needs updates, Sagaz should run a compatibility update audit across Windows, macOS, npm, Node.js, Codex Desktop, current model/tool behavior, GitHub, local installed skill, package contents, documentation, CI/CD, and relevant external platforms before recommending a new version.
211
+
209
212
  ## Web Example
210
213
 
211
214
  ```text
@@ -60,6 +60,7 @@ See `protocols/` for quality gates, testing matrix, stack selection, design qual
60
60
  - `protocols/ai-application-quality.md`
61
61
  - `protocols/agent-observability.md`
62
62
  - `protocols/durable-run-state.md`
63
+ - `protocols/compatibility-update-audit.md`
63
64
 
64
65
  ## Tools
65
66
 
@@ -10,4 +10,7 @@ Maintain Sagaz as a reliable, safe, versionable, low-token orchestration ecosyst
10
10
  - Does it reduce future risk?
11
11
  - Does it preserve low token usage?
12
12
  - Is the user impact clear?
13
+ - If the user asks whether Sagaz needs updates, apply `protocols/compatibility-update-audit.md` before answering.
14
+ - Check Windows, macOS, npm, Node.js, Codex Desktop, AI model behavior, GitHub, package contents, local installed skill, documentation, CI/CD, and relevant external platform assumptions.
15
+ - If a compatibility risk is found, explain it and ask whether the user wants Sagaz updated and released.
13
16
 
@@ -0,0 +1,86 @@
1
+ # Compatibility Update Audit
2
+
3
+ ## Purpose
4
+
5
+ Detect whether Sagaz needs an update because the surrounding ecosystem changed. Use this protocol whenever the user asks if Sagaz needs updates, whether everything is current, whether a new Codex/model release affects Sagaz, or whether Sagaz is still safe to use.
6
+
7
+ ## Mandatory Scope
8
+
9
+ Check every relevant variable before answering:
10
+
11
+ - Windows installation behavior
12
+ - macOS installation behavior
13
+ - Codex Desktop skill discovery and local skill folder behavior
14
+ - current AI model behavior, tool behavior, and instruction-following assumptions
15
+ - npm package version and `latest` tag
16
+ - Node.js supported versions and npm CLI behavior
17
+ - Git and GitHub CLI availability expectations
18
+ - GitHub repository state, workflows, permissions, and release process
19
+ - package contents included by `npm pack`
20
+ - installer behavior through `npx sagaz-ai@latest`
21
+ - Markdown ecosystem structure
22
+ - local installed skill versus repository skill
23
+ - documentation consistency across README, INSTALL, skill, and governance files
24
+ - CI/CD workflow compatibility
25
+ - browser, Playwright, deployment, mobile, and tool registry assumptions when relevant
26
+ - breaking changes in platforms Sagaz recommends, such as Vercel, Expo/EAS, Supabase, Firebase, Stripe, OpenAI, OpenRouter, TogetherAI, Groq, and GitHub Actions
27
+
28
+ ## Information Sources
29
+
30
+ Use local checks first:
31
+
32
+ - repository files
33
+ - installed skill files
34
+ - `git status`
35
+ - `npm test`
36
+ - `npm pack --dry-run`
37
+ - `npm view sagaz-ai version`
38
+ - `node --version`
39
+ - `npm --version`
40
+ - `git --version`
41
+ - `gh --version`
42
+ - `gh auth status`
43
+
44
+ Use web or official documentation when the question depends on current external behavior, including Codex Desktop, OpenAI models, npm, Node.js, GitHub Actions, GitHub CLI, or platform APIs. Prefer official sources.
45
+
46
+ ## Audit Output
47
+
48
+ Answer with:
49
+
50
+ ```md
51
+ Current Sagaz version:
52
+ Local repository state:
53
+ npm latest:
54
+ Installed local skill:
55
+ Windows status:
56
+ macOS status:
57
+ Node/npm status:
58
+ Codex Desktop/model risk:
59
+ GitHub/GitHub CLI status:
60
+ External platform risks:
61
+ Documentation status:
62
+ Package status:
63
+ Conclusion:
64
+ Recommended Sagaz update:
65
+ Needs user permission:
66
+ ```
67
+
68
+ ## Update Decision
69
+
70
+ Recommend a Sagaz update when:
71
+
72
+ - a platform behavior changed and may break installation or usage
73
+ - documentation is wrong, incomplete, or ambiguous
74
+ - npm/package behavior changed
75
+ - Codex Desktop skill behavior changed
76
+ - model/tool behavior requires new operating rules
77
+ - a dependency or recommended platform introduced a breaking change
78
+ - local installed skill is behind repository or npm
79
+ - package contents do not match the repository expectations
80
+ - verification cannot be completed without a new check or script
81
+
82
+ Do not recommend a new release only because a dependency has a newer version. Recommend a release only when Sagaz behavior, safety, installation, documentation, or verification needs to change.
83
+
84
+ ## Permission Rule
85
+
86
+ If an update is recommended, explain the reason, impact, risk, and proposed version bump. Ask the user for permission before editing files, committing, pushing, publishing, creating releases, changing secrets, or updating installed tools.
@@ -32,7 +32,8 @@ If navigation is needed, read:
32
32
  11. For multi-phase or production work, apply durable run state and compact agent observability.
33
33
  12. Use the tool registry before recommending or using external tools, connectors, deployments, publishing, or account-linked actions.
34
34
  13. Use stack presets as starting points when recommending technologies, then adapt to user constraints.
35
- 14. Do not declare done without verification evidence proportional to risk.
35
+ 14. When the user asks whether Sagaz needs updates, apply the compatibility update audit across Windows, macOS, npm, Node.js, Codex Desktop, AI model behavior, GitHub, package contents, installed skill, and relevant external platforms before recommending a new version.
36
+ 15. Do not declare done without verification evidence proportional to risk.
36
37
 
37
38
  ## Quick Selection
38
39
 
@@ -46,6 +47,7 @@ If navigation is needed, read:
46
47
  - Tools/connectors: `tools/tool-registry.md`
47
48
  - Stack presets: `stack-presets/`
48
49
  - Sagaz quality checks: `evals/sagaz-evaluation-suite.md`
50
+ - Sagaz update checks: `protocols/compatibility-update-audit.md`
49
51
 
50
52
  ## Required Handoff
51
53
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sagaz-ai",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Sagaz AI orchestration ecosystem installer for Codex Desktop.",
5
5
  "type": "module",
6
6
  "bin": {