You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: skills/codealive-context-engine/SKILL.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@ Do NOT retry the failed script until setup completes successfully.
48
48
|**ArtifactQuery Schema**|`schema.py`| Fast | Free | Inspect supported metadata query entities, fields, and examples |
49
49
|**Artifact Metadata Query**|`metadata.py`| Fast | Low | Read-only aggregate/query analytics across indexed repositories |
50
50
|**Chat with Codebase**|`chat.py`| Slow | High | Stateless synthesized Q&A. Call ONLY when the user explicitly asks. |
51
+
|**Get Version**|`get_version.py`| Instant | Free | Return the installed CodeAlive skill version as JSON; no API key or network call required |
51
52
52
53
**Cost guidance:**`semantic_search` and `grep_search` are the default starting point — fast and cheap. Use `fetch_artifacts` to load full source and `get_artifact_relationships` to trace call graphs. All four tools are low-cost.
53
54
@@ -162,6 +163,15 @@ python scripts/chat.py "Given these prior findings and identifiers: ..., what ab
162
163
163
164
## Tool Reference
164
165
166
+
### `get_version.py` — Get Installed Version
167
+
168
+
Returns the installed CodeAlive Context Engine skill version as JSON. It does not require authentication or make a network request.
0 commit comments