opencode-beads 0.3.1 → 0.3.2
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/README.md +1 -1
- package/package.json +1 -1
- package/vendor/commands/compact.md +5 -5
- package/vendor/commands/quickstart.md +3 -7
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -12,11 +12,11 @@ Reduce database size by summarizing closed issues no longer actively referenced.
|
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
15
|
-
- **Preview candidates**: `bd compact --dry-run`
|
|
16
|
-
- **Compact all eligible**: `bd compact --all`
|
|
17
|
-
- **Compact specific issue**: `bd compact --id bd-42`
|
|
18
|
-
- **Force compact**: `bd compact --id bd-42 --force` (bypass age checks)
|
|
19
|
-
- **View statistics**: `bd compact --stats`
|
|
15
|
+
- **Preview candidates**: `bd admin compact --dry-run`
|
|
16
|
+
- **Compact all eligible**: `bd admin compact --all`
|
|
17
|
+
- **Compact specific issue**: `bd admin compact --id bd-42`
|
|
18
|
+
- **Force compact**: `bd admin compact --id bd-42 --force` (bypass age checks)
|
|
19
|
+
- **View statistics**: `bd admin compact --stats`
|
|
20
20
|
|
|
21
21
|
## Options
|
|
22
22
|
|
|
@@ -1,17 +1,13 @@
|
|
|
1
1
|
---
|
|
2
|
-
description: Quick start guide for bd workflows
|
|
2
|
+
description: Quick start guide for bd workflows (deprecated)
|
|
3
3
|
argument-hint: []
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
**Note:** The `bd quickstart` command is deprecated. See [docs/QUICKSTART.md](../docs/QUICKSTART.md) instead.
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
The quickstart documentation covers:
|
|
9
9
|
- Getting started with bd
|
|
10
10
|
- Common workflow patterns
|
|
11
11
|
- Basic commands
|
|
12
12
|
- Dependency management
|
|
13
13
|
- Git integration
|
|
14
|
-
|
|
15
|
-
This is an interactive tutorial that walks through the essential bd commands and concepts for new users.
|
|
16
|
-
|
|
17
|
-
No arguments needed - just run `bd quickstart` to see the full guide.
|