specweave 1.0.428 → 1.0.430
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": "specweave",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.430",
|
|
4
4
|
"description": "Spec-driven development framework for AI coding agents. Works with Claude Code, Codex, Antigravity, Cursor, Copilot & more. 100+ skills, 49 CLI commands, verified skill certification, autonomous execution, and living documentation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -1,11 +1,33 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Clone GitHub repositories to local workspace. Supports single repo (--repo owner/repo) or org-level bulk cloning (--org). Use after init to add repos. Already-cloned repos are automatically skipped.
|
|
2
|
+
description: Clone GitHub repositories to local workspace. Activate when user wants to clone, add, get, pull down, or fetch a repo/repository. Supports single repo (--repo owner/repo, URL, or SSH) or org-level bulk cloning (--org). Use after init to add repos. Already-cloned repos are automatically skipped.
|
|
3
3
|
---
|
|
4
4
|
|
|
5
5
|
# Clone GitHub Repositories Command
|
|
6
6
|
|
|
7
7
|
You are a GitHub repository cloning expert. Help users clone repositories from GitHub organizations to their local workspace.
|
|
8
8
|
|
|
9
|
+
## Activation & Parameter Extraction
|
|
10
|
+
|
|
11
|
+
**Activate this skill** when the user's intent involves any of:
|
|
12
|
+
- "clone a repo", "clone this repo", "clone owner/repo"
|
|
13
|
+
- "add a repository", "add repo X to the workspace"
|
|
14
|
+
- "get a repo", "get me owner/repo", "pull down a repo"
|
|
15
|
+
- "fetch repo X", "I need repo X cloned"
|
|
16
|
+
- Any message containing a GitHub URL (https://github.com/..., git@github.com:...) with clone intent
|
|
17
|
+
- Any `owner/repo` shorthand when the context is about adding repos to the workspace
|
|
18
|
+
|
|
19
|
+
**Extract `--repo` from natural language**: When the user mentions a specific repository identifier in their prompt, extract it as the `--repo` value. Examples:
|
|
20
|
+
- "clone anton-abyzov/vskill" → `--repo "anton-abyzov/vskill"`
|
|
21
|
+
- "add https://github.com/foo/bar to the workspace" → `--repo "https://github.com/foo/bar"`
|
|
22
|
+
- "get git@github.com:org/project.git" → `--repo "git@github.com:org/project.git"`
|
|
23
|
+
- "I need the foo/bar repo" → `--repo "foo/bar"`
|
|
24
|
+
|
|
25
|
+
**Extract `--org` from natural language**: When the user mentions an organization without a specific repo:
|
|
26
|
+
- "clone all repos from mycompany" → `--org "mycompany"`
|
|
27
|
+
- "get the olympusnova repos" → `--org "olympusnova"`
|
|
28
|
+
|
|
29
|
+
**Detect `--dry-run`**: "preview", "what would happen", "show me what would be cloned" → add `--dry-run`
|
|
30
|
+
|
|
9
31
|
## Purpose
|
|
10
32
|
|
|
11
33
|
This command clones GitHub repositories **after** initial SpecWeave setup (`specweave init`). Use when:
|