@avantmedia/af 0.0.2 → 0.0.4
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.
|
@@ -18,8 +18,6 @@ import file_claude_skills_pm_templates_feature_md from '../setup/.claude/skills/
|
|
|
18
18
|
|
|
19
19
|
import resource_copy_prompt_reporter_ts from '../resources/copy-prompt-reporter.ts' with { type: 'file' };
|
|
20
20
|
|
|
21
|
-
import extension_avantmedia_openspec_0_1_0_vsix from '../vscode-extension/avantmedia-openspec-0.1.0.vsix' with { type: 'file' };
|
|
22
|
-
|
|
23
21
|
export interface SetupFile {
|
|
24
22
|
/** Path relative to setup/ folder (e.g., ".claude/settings.local.json") */
|
|
25
23
|
relativePath: string;
|
|
@@ -57,7 +55,7 @@ export interface ExtensionFile {
|
|
|
57
55
|
embeddedPath: string;
|
|
58
56
|
}
|
|
59
57
|
|
|
60
|
-
export const EXTENSION_FILE: ExtensionFile | null =
|
|
58
|
+
export const EXTENSION_FILE: ExtensionFile | null = null;
|
|
61
59
|
|
|
62
60
|
/**
|
|
63
61
|
* Check if running from compiled binary (embedded files contain $bunfs in path)
|
package/package.json
CHANGED
|
@@ -29,12 +29,7 @@ Examples:
|
|
|
29
29
|
|
|
30
30
|
2. **Archive the OpenSpec change (if not already archived):**
|
|
31
31
|
- Check if `openspec/changes/<id>/` directory exists
|
|
32
|
-
- If it exists,
|
|
33
|
-
1. Check artifact completion: `openspec status --change "<id>" --json`
|
|
34
|
-
2. Check task completion: read `openspec/changes/<id>/tasks.md`, count `- [ ]` vs `- [x]`
|
|
35
|
-
3. Check for delta specs at `openspec/changes/<id>/specs/` — if they exist, perform agent-driven sync to main specs (same as `/opsx:sync`)
|
|
36
|
-
4. Archive: `mkdir -p openspec/changes/archive && mv openspec/changes/<id> openspec/changes/archive/YYYY-MM-DD-<id>`
|
|
37
|
-
5. Ensure everything meets the project's formatting rules (run `bun run format` if needed)
|
|
32
|
+
- If it exists, invoke `/opsx:archive <id>`
|
|
38
33
|
- If the directory does not exist (already archived), skip this step
|
|
39
34
|
|
|
40
35
|
3. Run the following command to stage all changes and create a commit:
|