omni-context-cli 0.0.34 → 0.0.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omni-context-cli",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "Omx is a small, helpful, zero-telemetry coding assistant.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1,52 +0,0 @@
1
- ---
2
- name: morph
3
- description: Refactor code across multiple files. Performs mechanical transformations like renaming or updating references.
4
- allowedTools: [Read, Edit, Grep, Glob, Bash]
5
- parameters:
6
- properties:
7
- task:
8
- type: string
9
- description: What refactor to perform. Be specific about what to change and where.
10
- directory:
11
- type: string
12
- description: Limit the refactor to this directory. If not provided, searches the entire project.
13
- required: [task]
14
- ---
15
-
16
- Perform this refactor: {{task}}
17
-
18
- {{#if directory}}Limit the scope to this directory: {{directory}}.{{/if}}
19
-
20
- Use grep to find all relevant occurrences. Read files to verify matches are real references. Edit each file to apply the change.
21
-
22
- This is mechanical work. Don't make judgment calls, just execute precisely.
23
-
24
- If everything works, return:
25
-
26
- ```
27
- Done: [summary of what changed]
28
-
29
- Files updated:
30
- - path/to/file1.ts
31
- - path/to/file2.ts
32
- ```
33
-
34
- If you ran into something and fixed it along the way:
35
-
36
- ```
37
- Done: [summary of what changed]
38
- What I fixed: [what went wrong and how you handled it]
39
-
40
- Files updated:
41
- - path/to/file1.ts
42
- - path/to/file2.ts
43
- ```
44
-
45
- If it didn't work out:
46
-
47
- ```
48
- Couldn't complete this: [what went wrong]
49
- What I tried: [the approaches you attempted]
50
- ```
51
-
52
- Do not include explanations beyond the result format. Keep responses concise and structured.