@nemus-cli/nemus 0.2.5 → 0.2.6
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/CHANGELOG.md +17 -1
- package/assets/README.md +5 -0
- package/assets/avatar-500.png +0 -0
- package/assets/social-preview.png +0 -0
- package/package.json +1 -1
- package/skills/analyze-deps.md +0 -7
- package/skills/archive-workspace.md +0 -8
- package/skills/branch-create.md +0 -7
- package/skills/create-workspace.md +0 -9
- package/skills/delete-workspace.md +0 -11
- package/skills/list-org-repos.md +0 -7
- package/skills/list-suites.md +0 -6
- package/skills/list-workspaces.md +0 -7
- package/skills/nemus/references/ai-prompt.md +0 -8
- package/skills/nemus/references/analyze-deps.md +0 -7
- package/skills/nemus/references/archive-workspace.md +0 -7
- package/skills/nemus/references/branch-create.md +0 -5
- package/skills/nemus/references/branch-merge.md +0 -5
- package/skills/nemus/references/branch-rebase.md +0 -5
- package/skills/nemus/references/cache-clear.md +0 -5
- package/skills/nemus/references/cache-info.md +0 -5
- package/skills/nemus/references/configure-claude.md +0 -5
- package/skills/nemus/references/configure.md +0 -5
- package/skills/nemus/references/create-workspace.md +0 -5
- package/skills/nemus/references/dashboard.md +0 -11
- package/skills/nemus/references/delete-workspace.md +0 -5
- package/skills/nemus/references/generate-docs.md +0 -7
- package/skills/nemus/references/ghq-status.md +0 -9
- package/skills/nemus/references/go.md +0 -7
- package/skills/nemus/references/history.md +0 -13
- package/skills/nemus/references/list-org-repos.md +0 -5
- package/skills/nemus/references/list-suites.md +0 -5
- package/skills/nemus/references/list-workspaces.md +0 -5
- package/skills/nemus/references/mcp.md +0 -13
- package/skills/nemus/references/remove-repo.md +0 -5
- package/skills/nemus/references/run-command.md +0 -5
- package/skills/nemus/references/search-repos.md +0 -5
- package/skills/nemus/references/sessions.md +0 -7
- package/skills/nemus/references/suite-create.md +0 -5
- package/skills/nemus/references/suite-delete.md +0 -5
- package/skills/nemus/references/suite-export.md +0 -5
- package/skills/nemus/references/suite-import.md +0 -5
- package/skills/nemus/references/suite-use.md +0 -5
- package/skills/nemus/references/switch-branch.md +0 -5
- package/skills/nemus/references/update-cache.md +0 -5
- package/skills/nemus/references/update-workspace.md +0 -7
- package/skills/nemus/references/workspace-cleanup.md +0 -5
- package/skills/nemus/references/workspace-diff.md +0 -5
- package/skills/nemus/references/workspace-doctor.md +0 -5
- package/skills/nemus/references/workspace-info.md +0 -5
- package/skills/nemus/references/workspace-status.md +0 -5
- package/skills/nemus/references/workspace-sync.md +0 -5
- package/skills/refresh-workspace-docs.md +0 -4
- package/skills/remove-repo.md +0 -8
- package/skills/run-command.md +0 -7
- package/skills/save-context.md +1 -13
- package/skills/search-repos.md +0 -9
- package/skills/snapshot-list.md +0 -7
- package/skills/snapshot-save.md +0 -4
- package/skills/switch-branch.md +0 -7
- package/skills/update-cache.md +0 -8
- package/skills/update-workspace.md +0 -13
- package/skills/workspace-cleanup.md +0 -7
- package/skills/workspace-diff.md +0 -7
- package/skills/workspace-doctor.md +0 -7
- package/skills/workspace-info.md +0 -9
- package/skills/workspace-status.md +0 -7
- package/skills/workspace-sync.md +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.2.6] - 2026-08-25
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **Skills are now command-first ("one shot").** Each skill's body no longer
|
|
15
|
+
restates its frontmatter `description` under a heading before the command — it
|
|
16
|
+
leads straight with the command(s). Cut the skills corpus a further ~25%
|
|
17
|
+
(~1724 → ~1300 lines) with no loss of actual guidance.
|
|
18
|
+
- Fixed an unclosed code fence in the `save-context` skill.
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- `assets/social-preview.png` (1280×640) and `assets/avatar-500.png` (500×500)
|
|
23
|
+
for the GitHub repo social preview and org/profile avatar.
|
|
24
|
+
|
|
10
25
|
## [0.2.5] - 2026-08-25
|
|
11
26
|
|
|
12
27
|
### Changed
|
|
@@ -147,7 +162,8 @@ Initial open-source release of **Nemus**.
|
|
|
147
162
|
- Automatic retries with backoff on flaky network operations.
|
|
148
163
|
- Optional shell integration (auto-cd on create + quick-navigate helper).
|
|
149
164
|
|
|
150
|
-
[Unreleased]: https://github.com/me-public/nemus/compare/v0.2.
|
|
165
|
+
[Unreleased]: https://github.com/me-public/nemus/compare/v0.2.6...HEAD
|
|
166
|
+
[0.2.6]: https://github.com/me-public/nemus/compare/v0.2.5...v0.2.6
|
|
151
167
|
[0.2.5]: https://github.com/me-public/nemus/compare/v0.2.4...v0.2.5
|
|
152
168
|
[0.2.4]: https://github.com/me-public/nemus/compare/v0.2.3...v0.2.4
|
|
153
169
|
[0.2.3]: https://github.com/me-public/nemus/compare/v0.2.2...v0.2.3
|
package/assets/README.md
CHANGED
|
@@ -51,3 +51,8 @@ rsvg-convert -w 1280 -h 640 banner.svg -o banner.png
|
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
All artwork is original and released under the project's [MIT license](../LICENSE).
|
|
54
|
+
|
|
55
|
+
## GitHub images
|
|
56
|
+
|
|
57
|
+
- `social-preview.png` (1280×640) — upload at **Repo → Settings → General → Social preview** (shown in link unfurls).
|
|
58
|
+
- `avatar-500.png` (500×500) — square icon for use as an **org/profile avatar** if desired.
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nemus-cli/nemus",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Nemus — a CLI for managing multi-repository workspaces. Create, sync, and operate across dozens of repos with a single command, and wire them up to your favorite coding agent.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"workspace",
|
package/skills/analyze-deps.md
CHANGED
|
@@ -3,12 +3,6 @@ name: analyze-deps
|
|
|
3
3
|
description: Analyze inter-repository dependencies in a workspace
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Analyze Dependencies
|
|
7
|
-
|
|
8
|
-
Analyze inter-repository dependencies in a workspace.
|
|
9
|
-
|
|
10
|
-
## Running
|
|
11
|
-
|
|
12
6
|
```bash
|
|
13
7
|
nemus analyze-deps <workspace-name>
|
|
14
8
|
```
|
|
@@ -17,4 +11,3 @@ Or for the current workspace:
|
|
|
17
11
|
```bash
|
|
18
12
|
nemus analyze-deps
|
|
19
13
|
```
|
|
20
|
-
|
|
@@ -3,18 +3,10 @@ name: archive-workspace
|
|
|
3
3
|
description: Archive or unarchive a workspace
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Archive Workspace
|
|
7
|
-
|
|
8
|
-
Archive or unarchive a workspace.
|
|
9
|
-
|
|
10
|
-
## Archiving
|
|
11
|
-
|
|
12
6
|
```bash
|
|
13
7
|
nemus archive <workspace-name>
|
|
14
8
|
```
|
|
15
9
|
|
|
16
|
-
## Unarchiving
|
|
17
|
-
|
|
18
10
|
```bash
|
|
19
11
|
nemus archive --unarchive <workspace-name>
|
|
20
12
|
```
|
package/skills/branch-create.md
CHANGED
|
@@ -3,13 +3,6 @@ name: branch-create
|
|
|
3
3
|
description: Create a new branch across all repos in a workspace
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Branch Create
|
|
7
|
-
|
|
8
|
-
Create a new branch across all repos in a workspace.
|
|
9
|
-
|
|
10
|
-
## Running
|
|
11
|
-
|
|
12
6
|
```bash
|
|
13
7
|
nemus branch create <workspace-name> <branch-name>
|
|
14
8
|
```
|
|
15
|
-
|
|
@@ -3,19 +3,11 @@ name: create-workspace
|
|
|
3
3
|
description: Create a new multi-repo workspace by cloning repositories from the org using `nemus create`. ALWAYS use this skill — never run `git clone` directly — when the user asks to create a workspace, set up a new workspace, or start fresh with a set of repos.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Create Workspace
|
|
7
|
-
|
|
8
|
-
Create a new workspace by cloning repositories.
|
|
9
|
-
|
|
10
|
-
## Resolving Repositories
|
|
11
|
-
|
|
12
6
|
If the user hasn't specified which repos to clone, help them discover:
|
|
13
7
|
```bash
|
|
14
8
|
nemus cache search <keyword>
|
|
15
9
|
```
|
|
16
10
|
|
|
17
|
-
## Creating the Workspace
|
|
18
|
-
|
|
19
11
|
Run non-interactively:
|
|
20
12
|
```bash
|
|
21
13
|
nemus create --workspace <name> --repos <repo1,repo2,...> --yes
|
|
@@ -25,4 +17,3 @@ Or interactively (prompts for workspace name and repos):
|
|
|
25
17
|
```bash
|
|
26
18
|
nemus create
|
|
27
19
|
```
|
|
28
|
-
|
|
@@ -3,19 +3,11 @@ name: delete-workspace
|
|
|
3
3
|
description: Delete one or more workspaces and all their contents permanently
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# Delete Workspace
|
|
7
|
-
|
|
8
|
-
Delete one or more workspaces permanently.
|
|
9
|
-
|
|
10
|
-
## Resolving the Workspace
|
|
11
|
-
|
|
12
6
|
If the user hasn't specified which workspace to delete:
|
|
13
7
|
```bash
|
|
14
8
|
nemus list 2>&1 | cat
|
|
15
9
|
```
|
|
16
10
|
|
|
17
|
-
## Deleting
|
|
18
|
-
|
|
19
11
|
Run non-interactively:
|
|
20
12
|
```bash
|
|
21
13
|
nemus delete --workspace <name> --yes
|
|
@@ -26,9 +18,6 @@ Or interactively (prompts for confirmation):
|
|
|
26
18
|
nemus delete
|
|
27
19
|
```
|
|
28
20
|
|
|
29
|
-
## Important Notes
|
|
30
|
-
|
|
31
21
|
- This permanently removes the workspace directory and all its contents
|
|
32
22
|
- There is no undo — repos will need to be re-cloned
|
|
33
23
|
- Always confirm with the user before deleting
|
|
34
|
-
|
package/skills/list-org-repos.md
CHANGED
|
@@ -3,12 +3,6 @@ name: list-org-repos
|
|
|
3
3
|
description: List all organization repositories from GitHub
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# List Org Repos
|
|
7
|
-
|
|
8
|
-
List all repositories in the GitHub organization.
|
|
9
|
-
|
|
10
|
-
## Running
|
|
11
|
-
|
|
12
6
|
```bash
|
|
13
7
|
nemus cache list
|
|
14
8
|
```
|
|
@@ -17,4 +11,3 @@ If the cache is empty or stale:
|
|
|
17
11
|
```bash
|
|
18
12
|
nemus cache refresh
|
|
19
13
|
```
|
|
20
|
-
|
package/skills/list-suites.md
CHANGED
|
@@ -3,12 +3,6 @@ name: list-workspaces
|
|
|
3
3
|
description: List all workspaces with their repo counts and creation dates
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
# List Workspaces
|
|
7
|
-
|
|
8
|
-
List all workspaces with their status.
|
|
9
|
-
|
|
10
|
-
## Listing
|
|
11
|
-
|
|
12
6
|
```bash
|
|
13
7
|
nemus list
|
|
14
8
|
```
|
|
@@ -17,4 +11,3 @@ Note: This command opens an interactive picker. To just see the output without s
|
|
|
17
11
|
```bash
|
|
18
12
|
nemus list 2>&1 | cat
|
|
19
13
|
```
|
|
20
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# AI Prompt
|
|
2
2
|
|
|
3
|
-
Use natural language to manage workspaces via Claude Code with MCP tools.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus -- <prompt>
|
|
9
5
|
```
|
|
@@ -20,15 +16,11 @@ nemus -- "Show me the status of my platform workspace"
|
|
|
20
16
|
nemus -- "Set up a workspace for the billing migration"
|
|
21
17
|
```
|
|
22
18
|
|
|
23
|
-
## How It Works
|
|
24
|
-
|
|
25
19
|
1. Launches Claude Code CLI with a system prompt describing all available MCP tools
|
|
26
20
|
2. Claude interprets the natural language request
|
|
27
21
|
3. Claude uses MCP tools (create-workspace, search-repos, etc.) to fulfill the request
|
|
28
22
|
4. Results are presented conversationally
|
|
29
23
|
|
|
30
|
-
## Prerequisites
|
|
31
|
-
|
|
32
24
|
- Claude Code CLI must be installed (`claude` command available)
|
|
33
25
|
- MCP server should be installed (`nemus mcp install`)
|
|
34
26
|
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Analyze Dependencies
|
|
2
2
|
|
|
3
|
-
Analyze inter-repository dependencies within a workspace and detect circular dependencies.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus analyze-deps <workspace>
|
|
9
5
|
```
|
|
@@ -18,8 +14,6 @@ Without a workspace name, prompts interactively:
|
|
|
18
14
|
nemus analyze-deps
|
|
19
15
|
```
|
|
20
16
|
|
|
21
|
-
## What It Analyzes
|
|
22
|
-
|
|
23
17
|
- `package.json` dependencies (npm packages that match workspace repo names)
|
|
24
18
|
- `Dockerfile` references
|
|
25
19
|
- `docker-compose.yml` service references
|
|
@@ -31,4 +25,3 @@ nemus analyze-deps
|
|
|
31
25
|
- **Missing dependencies** — repos referenced but not in the workspace
|
|
32
26
|
- **Mermaid diagram** — visual dependency graph
|
|
33
27
|
- Optionally saves analysis to workspace metadata
|
|
34
|
-
|
|
@@ -1,15 +1,9 @@
|
|
|
1
1
|
# Archive Workspace
|
|
2
2
|
|
|
3
|
-
Archive a workspace to hide it from default listings. Archived workspaces auto-delete after 30 days.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
|
-
### Archive
|
|
8
3
|
```bash
|
|
9
4
|
nemus archive --workspace <name> --yes
|
|
10
5
|
```
|
|
11
6
|
|
|
12
|
-
### Unarchive
|
|
13
7
|
```bash
|
|
14
8
|
nemus archive --unarchive --workspace <name> --yes
|
|
15
9
|
```
|
|
@@ -26,4 +20,3 @@ nemus list --archived
|
|
|
26
20
|
| `--workspace <name>` | `-w` | Workspace name(s), comma-separated for multiple |
|
|
27
21
|
| `--yes` | `-y` | Skip confirmation prompt |
|
|
28
22
|
| `--unarchive` | | Restore instead of archive |
|
|
29
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Branch Create
|
|
2
2
|
|
|
3
|
-
Create a new branch across all repositories in a workspace.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus branch create --workspace <name> --branch <branch-name>
|
|
9
5
|
nemus branch create --workspace <name> --branch <branch-name> --base <base-branch>
|
|
@@ -25,4 +21,3 @@ nemus branch create <workspace> <branch-name> --base <base-branch> --force
|
|
|
25
21
|
| `--force` | | Force create even if branch exists |
|
|
26
22
|
|
|
27
23
|
After creation, run `nemus status <name>` to verify all repos are on the new branch.
|
|
28
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Branch Merge
|
|
2
2
|
|
|
3
|
-
Merge a source branch into a target branch across all repositories in a workspace.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. Run:
|
|
8
4
|
```bash
|
|
9
5
|
nemus branch merge <workspace> <source-branch> <target-branch> [--no-ff|--ff-only|--squash]
|
|
@@ -15,4 +11,3 @@ Merge a source branch into a target branch across all repositories in a workspac
|
|
|
15
11
|
- Summary count
|
|
16
12
|
|
|
17
13
|
3. If there are merge conflicts, suggest the user resolve them manually in the affected repos.
|
|
18
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Branch Rebase
|
|
2
2
|
|
|
3
|
-
Rebase all repositories in a workspace onto a target branch.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. Run:
|
|
8
4
|
```bash
|
|
9
5
|
nemus branch rebase <workspace> <target-branch>
|
|
@@ -15,4 +11,3 @@ Rebase all repositories in a workspace onto a target branch.
|
|
|
15
11
|
- Summary count
|
|
16
12
|
|
|
17
13
|
3. If there are rebase conflicts, suggest the user resolve them manually in the affected repos.
|
|
18
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Cache Clear
|
|
2
2
|
|
|
3
|
-
Clear the local GitHub repository cache. A new cache will be created automatically on next fetch.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. Run:
|
|
8
4
|
```bash
|
|
9
5
|
nemus cache clear
|
|
@@ -12,4 +8,3 @@ Clear the local GitHub repository cache. A new cache will be created automatical
|
|
|
12
8
|
2. Confirm the cache was cleared.
|
|
13
9
|
|
|
14
10
|
3. Suggest `nemus cache refresh` if the user wants to immediately rebuild the cache.
|
|
15
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Cache Info
|
|
2
2
|
|
|
3
|
-
View cache statistics including repo count, age, and size.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. Run:
|
|
8
4
|
```bash
|
|
9
5
|
nemus cache info
|
|
@@ -16,4 +12,3 @@ View cache statistics including repo count, age, and size.
|
|
|
16
12
|
- Cache size
|
|
17
13
|
|
|
18
14
|
3. If cache is stale or missing, suggest `nemus cache refresh`.
|
|
19
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Configure Claude
|
|
2
2
|
|
|
3
|
-
Configure Claude Code integration settings.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus configure-claude
|
|
9
5
|
```
|
|
@@ -25,4 +21,3 @@ w cc
|
|
|
25
21
|
- This is interactive-only — there are no non-interactive flags.
|
|
26
22
|
- The `.claude.md` file provides workspace context to Claude Code sessions.
|
|
27
23
|
- Auto-launch requires the Claude Code CLI to be installed.
|
|
28
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Configure
|
|
2
2
|
|
|
3
|
-
Configure Nemus global settings interactively.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus configure
|
|
9
5
|
```
|
|
@@ -29,4 +25,3 @@ w cfg
|
|
|
29
25
|
- Changing the GitHub org clears the repo cache automatically.
|
|
30
26
|
- Enabling MCP after disabling it triggers an automatic install.
|
|
31
27
|
- This is interactive-only — there are no non-interactive flags.
|
|
32
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Create Workspace
|
|
2
2
|
|
|
3
|
-
Create a new workspace with specified repositories.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. If the user hasn't specified which repos they want, help them discover repos:
|
|
8
4
|
- Run `nemus cache search <query>` to search by name or description.
|
|
9
5
|
- Run `nemus cache list` to browse all available repos.
|
|
@@ -38,4 +34,3 @@ Create a new workspace with specified repositories.
|
|
|
38
34
|
nemus create --workspace payments --repos partnerships-api,payments-db --yes
|
|
39
35
|
nemus suite use --suite platform --workspace platform-ws --yes
|
|
40
36
|
```
|
|
41
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Dashboard
|
|
2
2
|
|
|
3
|
-
Launch a tmux-based multi-agent management dashboard for monitoring and controlling Claude agents across workspaces.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus dashboard
|
|
9
5
|
nemus dash
|
|
@@ -36,22 +32,15 @@ Opens a tmux session with a sidebar showing active agents and their status. Agen
|
|
|
36
32
|
| `q` | Detach — agents keep running in background |
|
|
37
33
|
| `Q` | Quit all — kills session and all agents |
|
|
38
34
|
|
|
39
|
-
## From any agent pane
|
|
40
|
-
|
|
41
35
|
| Key | Action |
|
|
42
36
|
|---|---|
|
|
43
37
|
| `prefix+M` | Return to sidebar / reset layout |
|
|
44
38
|
|
|
45
|
-
## Prerequisites
|
|
46
|
-
|
|
47
39
|
- `tmux` must be installed (`brew install tmux`)
|
|
48
40
|
- Claude CLI must be available for agent launching
|
|
49
41
|
|
|
50
|
-
## Features
|
|
51
|
-
|
|
52
42
|
- Real-time agent status via Claude Code hooks (idle/working/waiting/stopped)
|
|
53
43
|
- Session persistence: `q` detaches, `nemus dash` reconnects
|
|
54
44
|
- Zoom mode: selected agent takes full right side, others hidden
|
|
55
45
|
- Session resume picker (`s`) with fuzzy search
|
|
56
46
|
- Auto-installs Claude hooks on first run
|
|
57
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Delete Workspace
|
|
2
2
|
|
|
3
|
-
Permanently delete one or more workspaces and all their cloned repositories.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. **Confirm with the user before deleting.** This is a destructive, irreversible operation.
|
|
8
4
|
|
|
9
5
|
2. Warn the user about any uncommitted changes — run `nemus status <name>` to check first.
|
|
@@ -26,4 +22,3 @@ Permanently delete one or more workspaces and all their cloned repositories.
|
|
|
26
22
|
|---|---|---|
|
|
27
23
|
| `--workspace <name>` | `-w` | Workspace name(s), comma-separated for multiple |
|
|
28
24
|
| `--yes` | `-y` | Skip confirmation prompt |
|
|
29
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Generate Docs
|
|
2
2
|
|
|
3
|
-
Generate workspace documentation including a README, dependency graph, and repository index.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus generate-docs <workspace>
|
|
9
5
|
```
|
|
@@ -18,10 +14,7 @@ Without a workspace name, prompts interactively:
|
|
|
18
14
|
nemus generate-docs
|
|
19
15
|
```
|
|
20
16
|
|
|
21
|
-
## Generated Files
|
|
22
|
-
|
|
23
17
|
Creates these files in the workspace root:
|
|
24
18
|
- `WORKSPACE-README.md` — Overview of the workspace and its repos
|
|
25
19
|
- `DEPENDENCY-GRAPH.md` — Mermaid diagram of inter-repo dependencies
|
|
26
20
|
- `REPOSITORY-INDEX.md` — Detailed index of all repos
|
|
27
|
-
|
|
@@ -1,23 +1,14 @@
|
|
|
1
1
|
# GHQ Status
|
|
2
2
|
|
|
3
|
-
Check the status of ghq integration for faster repository cloning.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus ghq-status
|
|
9
5
|
```
|
|
10
6
|
|
|
11
|
-
## What It Shows
|
|
12
|
-
|
|
13
7
|
- Whether ghq is installed
|
|
14
8
|
- ghq root directory and number of managed repos
|
|
15
9
|
- How ghq accelerates workspace creation (cached local copies)
|
|
16
10
|
|
|
17
|
-
## How ghq Works with Workspace Manager
|
|
18
|
-
|
|
19
11
|
1. **First clone**: ghq downloads repo to its cache
|
|
20
12
|
2. **Workspace creation**: Copies from ghq cache instead of cloning from remote
|
|
21
13
|
3. **Subsequent clones**: Much faster (local copy vs network clone)
|
|
22
14
|
4. **Isolation**: Each workspace still gets its own independent clone
|
|
23
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Go (Navigate to Workspace)
|
|
2
2
|
|
|
3
|
-
Quickly navigate to a workspace directory. Works with the `nemgo` shell function for auto-CD.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
With a known workspace name:
|
|
8
4
|
```bash
|
|
9
5
|
nemus go <name>
|
|
@@ -21,9 +17,6 @@ nemgo <name>
|
|
|
21
17
|
|
|
22
18
|
The `nemgo` variant also launches Claude Code automatically if a session exists.
|
|
23
19
|
|
|
24
|
-
## How It Works
|
|
25
|
-
|
|
26
20
|
1. `nemus go` writes the workspace path to `~/.workspace-last-go`
|
|
27
21
|
2. The shell integration function reads that file and runs `cd`
|
|
28
22
|
3. If the workspace has an existing Claude session, it resumes it
|
|
29
|
-
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
# History
|
|
2
2
|
|
|
3
|
-
View operation history for Nemus commands.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
|
-
### Show Recent History
|
|
8
|
-
|
|
9
3
|
```bash
|
|
10
4
|
nemus history
|
|
11
5
|
nemus history show 50 # last 50 records
|
|
@@ -13,25 +7,18 @@ nemus history show --command create # filter by command
|
|
|
13
7
|
nemus history show --workspace my-ws # filter by workspace
|
|
14
8
|
```
|
|
15
9
|
|
|
16
|
-
### Show Statistics
|
|
17
|
-
|
|
18
10
|
```bash
|
|
19
11
|
nemus history stats
|
|
20
12
|
```
|
|
21
13
|
|
|
22
14
|
Shows total operations, success rate, average duration, and per-command usage counts.
|
|
23
15
|
|
|
24
|
-
### Clear History
|
|
25
|
-
|
|
26
16
|
```bash
|
|
27
17
|
nemus history clear
|
|
28
18
|
nemus history clear --yes # skip confirmation
|
|
29
19
|
```
|
|
30
20
|
|
|
31
|
-
## Alias
|
|
32
|
-
|
|
33
21
|
```bash
|
|
34
22
|
w h # same as nemus history
|
|
35
23
|
w h stats # same as nemus history stats
|
|
36
24
|
```
|
|
37
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# List Org Repos
|
|
2
2
|
|
|
3
|
-
List all organization repositories from GitHub.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. Run:
|
|
8
4
|
```bash
|
|
9
5
|
nemus cache list
|
|
@@ -19,4 +15,3 @@ List all organization repositories from GitHub.
|
|
|
19
15
|
- Asking the user to narrow down with `nemus cache search <query>` if needed
|
|
20
16
|
|
|
21
17
|
3. If the cache is stale, suggest `nemus cache refresh` to update it.
|
|
22
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# List Suites
|
|
2
2
|
|
|
3
|
-
List all saved suites with their repo counts.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus suite list
|
|
9
5
|
```
|
|
@@ -14,4 +10,3 @@ To create a workspace from a suite (non-interactive):
|
|
|
14
10
|
```bash
|
|
15
11
|
nemus suite use --suite <suite-name> --workspace <workspace-name> --yes
|
|
16
12
|
```
|
|
17
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# List Workspaces
|
|
2
2
|
|
|
3
|
-
List all existing workspaces managed by Nemus.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. Run:
|
|
8
4
|
```bash
|
|
9
5
|
nemus list
|
|
@@ -20,4 +16,3 @@ List all existing workspaces managed by Nemus.
|
|
|
20
16
|
- Archived status (if applicable)
|
|
21
17
|
|
|
22
18
|
3. If no workspaces exist, suggest creating one with `nemus create`.
|
|
23
|
-
|
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
# MCP Server
|
|
2
2
|
|
|
3
|
-
Manage the MCP (Model Context Protocol) server integration with Claude Code.
|
|
4
|
-
|
|
5
|
-
## Commands
|
|
6
|
-
|
|
7
|
-
### Install
|
|
8
|
-
|
|
9
3
|
Register the Nemus MCP server with Claude Code:
|
|
10
4
|
```bash
|
|
11
5
|
nemus mcp install
|
|
@@ -13,15 +7,11 @@ nemus mcp install
|
|
|
13
7
|
|
|
14
8
|
This also installs shell integration, permission sync hooks, and workspace skills.
|
|
15
9
|
|
|
16
|
-
### Uninstall
|
|
17
|
-
|
|
18
10
|
Remove the MCP server registration:
|
|
19
11
|
```bash
|
|
20
12
|
nemus mcp uninstall
|
|
21
13
|
```
|
|
22
14
|
|
|
23
|
-
### Upgrade
|
|
24
|
-
|
|
25
15
|
Update hooks and skills without re-registering the MCP server:
|
|
26
16
|
```bash
|
|
27
17
|
nemus mcp upgrade
|
|
@@ -29,8 +19,6 @@ nemus mcp upgrade
|
|
|
29
19
|
|
|
30
20
|
Use after updating the Nemus package.
|
|
31
21
|
|
|
32
|
-
### Status
|
|
33
|
-
|
|
34
22
|
Check if the MCP server is registered:
|
|
35
23
|
```bash
|
|
36
24
|
nemus mcp status
|
|
@@ -41,4 +29,3 @@ nemus mcp status
|
|
|
41
29
|
When installed, Claude Code gains access to Nemus tools:
|
|
42
30
|
- `create-workspace`, `list-workspaces`, `workspace-status`, etc.
|
|
43
31
|
- Enables natural language workspace management via `nemus -- <prompt>`
|
|
44
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Remove Repo
|
|
2
2
|
|
|
3
|
-
Remove a repository instance from a workspace.
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
1. Warn the user about any uncommitted changes before removing.
|
|
8
4
|
|
|
9
5
|
2. Run the command:
|
|
@@ -20,4 +16,3 @@ Remove a repository instance from a workspace.
|
|
|
20
16
|
| `--workspace <name>` | `-w` | Target workspace |
|
|
21
17
|
| `--repos <dir,...>` | `-r` | Comma-separated directory names to remove |
|
|
22
18
|
| `--yes` | `-y` | Skip confirmation prompt |
|
|
23
|
-
|
|
@@ -1,9 +1,5 @@
|
|
|
1
1
|
# Run Command
|
|
2
2
|
|
|
3
|
-
Run a shell command across all repositories in a workspace (3 concurrent, 5 minute timeout per repo).
|
|
4
|
-
|
|
5
|
-
## Instructions
|
|
6
|
-
|
|
7
3
|
```bash
|
|
8
4
|
nemus run <workspace> <command>
|
|
9
5
|
```
|
|
@@ -37,4 +33,3 @@ Shows per-repo results:
|
|
|
37
33
|
- Summary count of successes and failures
|
|
38
34
|
|
|
39
35
|
Exits with code 1 if any repo failed.
|
|
40
|
-
|