synarcx 0.3.0 → 0.3.1
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 +2 -2
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -139,7 +139,7 @@ quick ────────────────────────
|
|
|
139
139
|
|
|
140
140
|
Each step suggests the next — you decide when to advance. Works in Claude Code, Cursor, Cline, and any AI coding tool that supports slash commands.
|
|
141
141
|
|
|
142
|
-
- `sync` generates the `constitution.md` — run once, re-run when the project shifts
|
|
142
|
+
- `sync` generates the `constitution.md` — run once, re-run when the project shifts. Also runs a daily version check: if a newer synarcx is available, prompts to auto-update inline.
|
|
143
143
|
- `explore`, `debug`, and `refactor` are entry points that hand off to `propose`
|
|
144
144
|
- `quick` skips the pipeline for small, low-risk changes
|
|
145
145
|
|
|
@@ -185,7 +185,7 @@ Used inside your AI coding tool (Claude Code, Cursor, Cline, etc.):
|
|
|
185
185
|
|
|
186
186
|
| Command | Description |
|
|
187
187
|
| ----------------- | ------------------------------------------------------------------------ |
|
|
188
|
-
| `/syn:sync` | Scan project, run guardrail Q&A, generate/update `constitution.md
|
|
188
|
+
| `/syn:sync` | Scan project, run guardrail Q&A, generate/update `constitution.md`. Auto-checks for synarcx updates once daily. |
|
|
189
189
|
| `/syn:explore` | Think through ideas, investigate problems, clarify requirements |
|
|
190
190
|
| `/syn:debug` | Diagnose a known error (3-phase analysis), then prompts `/syn:propose` |
|
|
191
191
|
| `/syn:refactor` | Map current vs target structure, then prompts `/syn:propose` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "synarcx",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "Structured engineering workflows for AI coding assistants — persistent project memory, spec-driven development, and architecture drift prevention across every session.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-workflow",
|
|
@@ -77,7 +77,6 @@
|
|
|
77
77
|
"cross-spawn": "7.0.6",
|
|
78
78
|
"fast-glob": "^3.3.3",
|
|
79
79
|
"ora": "^8.2.0",
|
|
80
|
-
"synarcx": "link:",
|
|
81
80
|
"yaml": "^2.8.2",
|
|
82
81
|
"zod": "^4.0.17"
|
|
83
82
|
}
|