sequant 1.13.4 → 1.13.5
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/.claude-plugin/plugin.json +1 -1
- package/README.md +2 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,11 +9,12 @@ Solve GitHub issues with structured phases and quality gates — from issue to m
|
|
|
9
9
|
|
|
10
10
|
## Quick Start
|
|
11
11
|
|
|
12
|
-
### Install
|
|
12
|
+
### Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
# In your project directory
|
|
16
16
|
npm install sequant
|
|
17
|
+
npx sequant init # Install skills to your project
|
|
17
18
|
npx sequant doctor # Verify setup
|
|
18
19
|
```
|
|
19
20
|
|
|
@@ -22,18 +23,6 @@ To update:
|
|
|
22
23
|
npm update sequant
|
|
23
24
|
```
|
|
24
25
|
|
|
25
|
-
### Alternative: Install as Claude Code Plugin
|
|
26
|
-
|
|
27
|
-
> **Note:** Plugin updates via `/plugin update` may not work reliably. Use `npm update sequant` to get latest skills.
|
|
28
|
-
|
|
29
|
-
```bash
|
|
30
|
-
# Add the Sequant marketplace
|
|
31
|
-
/plugin marketplace add admarble/sequant
|
|
32
|
-
|
|
33
|
-
# Install the plugin
|
|
34
|
-
/plugin install sequant
|
|
35
|
-
```
|
|
36
|
-
|
|
37
26
|
### Start Using
|
|
38
27
|
|
|
39
28
|
Then in Claude Code:
|
|
@@ -238,7 +227,6 @@ See [Customization Guide](docs/guides/customization.md) for all options.
|
|
|
238
227
|
- [Run Command](docs/reference/run-command.md)
|
|
239
228
|
- [Git Workflows](docs/guides/git-workflows.md)
|
|
240
229
|
- [Customization](docs/guides/customization.md)
|
|
241
|
-
- [Plugin Updates & Versioning](docs/internal/plugin-updates.md)
|
|
242
230
|
- [Troubleshooting](docs/troubleshooting.md)
|
|
243
231
|
|
|
244
232
|
Stack guides: [Next.js](docs/stacks/nextjs.md) · [Rust](docs/stacks/rust.md) · [Python](docs/stacks/python.md) · [Go](docs/stacks/go.md)
|
|
@@ -249,7 +237,6 @@ Stack guides: [Next.js](docs/stacks/nextjs.md) · [Rust](docs/stacks/rust.md) ·
|
|
|
249
237
|
|
|
250
238
|
### Reporting Issues
|
|
251
239
|
|
|
252
|
-
- **Plugin issues:** [Plugin Feedback template](https://github.com/admarble/sequant/issues/new?template=plugin-feedback.yml)
|
|
253
240
|
- **Bug reports:** [Bug template](https://github.com/admarble/sequant/issues/new?template=bug.yml)
|
|
254
241
|
- **Feature requests:** [Feature template](https://github.com/admarble/sequant/issues/new?template=feature.yml)
|
|
255
242
|
- **Questions:** [GitHub Discussions](https://github.com/admarble/sequant/discussions)
|