specweave 0.34.2 → 0.34.4
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 +2 -4
- package/dist/plugins/specweave-github/lib/github-client.d.ts +1 -1
- package/dist/plugins/specweave-github/lib/github-client.d.ts.map +1 -1
- package/dist/plugins/specweave-github/lib/github-client.js +2 -2
- package/dist/plugins/specweave-github/lib/github-client.js.map +1 -1
- package/dist/src/cli/commands/living-docs.d.ts +1 -1
- package/dist/src/cli/commands/living-docs.d.ts.map +1 -1
- package/dist/src/cli/commands/living-docs.js +15 -13
- package/dist/src/cli/commands/living-docs.js.map +1 -1
- package/dist/src/cli/helpers/init/bitbucket-repo-cloning.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/bitbucket-repo-cloning.js +4 -3
- package/dist/src/cli/helpers/init/bitbucket-repo-cloning.js.map +1 -1
- package/dist/src/cli/helpers/init/external-import-grouping.d.ts +11 -2
- package/dist/src/cli/helpers/init/external-import-grouping.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/external-import-grouping.js +71 -14
- package/dist/src/cli/helpers/init/external-import-grouping.js.map +1 -1
- package/dist/src/cli/helpers/init/external-import.js +1 -1
- package/dist/src/cli/helpers/init/external-import.js.map +1 -1
- package/dist/src/cli/helpers/init/github-repo-cloning.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/github-repo-cloning.js +4 -3
- package/dist/src/cli/helpers/init/github-repo-cloning.js.map +1 -1
- package/dist/src/cli/helpers/init/living-docs-preflight.d.ts +1 -1
- package/dist/src/cli/helpers/init/living-docs-preflight.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/living-docs-preflight.js +1 -18
- package/dist/src/cli/helpers/init/living-docs-preflight.js.map +1 -1
- package/dist/src/cli/helpers/init/types.d.ts +14 -0
- package/dist/src/cli/helpers/init/types.d.ts.map +1 -1
- package/dist/src/cli/helpers/init/types.js +14 -1
- package/dist/src/cli/helpers/init/types.js.map +1 -1
- package/dist/src/cli/workers/brownfield-worker.d.ts.map +1 -1
- package/dist/src/cli/workers/brownfield-worker.js +1 -18
- package/dist/src/cli/workers/brownfield-worker.js.map +1 -1
- package/dist/src/cli/workers/import-worker.js +39 -5
- package/dist/src/cli/workers/import-worker.js.map +1 -1
- package/dist/src/cli/workers/living-docs-worker.js +42 -56
- package/dist/src/cli/workers/living-docs-worker.js.map +1 -1
- package/dist/src/core/background/types.d.ts +1 -2
- package/dist/src/core/background/types.d.ts.map +1 -1
- package/dist/src/importers/jira-importer.d.ts +5 -0
- package/dist/src/importers/jira-importer.d.ts.map +1 -1
- package/dist/src/importers/jira-importer.js +29 -0
- package/dist/src/importers/jira-importer.js.map +1 -1
- package/package.json +1 -1
- package/plugins/specweave/commands/living-docs.md +7 -7
- package/plugins/specweave-github/lib/github-client.d.ts +1 -1
- package/plugins/specweave-github/lib/github-client.js +2 -2
- package/plugins/specweave-github/lib/github-client.ts +2 -2
- package/plugins/specweave-plugin-dev/.claude-plugin/plugin.json +9 -2
- package/plugins/{specweave-tooling → specweave-plugin-dev}/commands/skill-create.md +2 -5
- package/plugins/{specweave-tooling → specweave-plugin-dev}/commands/skill-package.md +2 -5
- package/plugins/{specweave-tooling → specweave-plugin-dev}/commands/skill-validate.md +2 -5
- package/plugins/specweave-tooling/.claude-plugin/plugin.json +0 -22
|
@@ -26,7 +26,7 @@ Launch the Living Docs Builder independently of `specweave init`. This is essent
|
|
|
26
26
|
|--------|-------------|
|
|
27
27
|
| (none) | Interactive mode - prompts for configuration |
|
|
28
28
|
| `--resume <jobId>` | Resume orphaned/paused living-docs job |
|
|
29
|
-
| `--depth <level>` | Analysis depth: `quick`, `standard`, `deep-native`, `deep-
|
|
29
|
+
| `--depth <level>` | Analysis depth: `quick`, `standard`, `deep-native`, `deep-interactive` |
|
|
30
30
|
| `--priority <modules>` | Priority modules (comma-separated): `auth,payments,api` |
|
|
31
31
|
| `--sources <folders>` | Additional doc folders (comma-separated): `docs/,wiki/` |
|
|
32
32
|
| `--depends-on <jobIds>` | Wait for jobs before starting (comma-separated) |
|
|
@@ -44,7 +44,7 @@ Launch the Living Docs Builder independently of `specweave init`. This is essent
|
|
|
44
44
|
/sw:living-docs
|
|
45
45
|
|
|
46
46
|
# Prompts for:
|
|
47
|
-
# 1. Analysis depth (quick/standard/deep-native/deep-
|
|
47
|
+
# 1. Analysis depth (quick/standard/deep-native/deep-interactive)
|
|
48
48
|
# 2. Priority modules to focus on
|
|
49
49
|
# 3. Additional documentation sources
|
|
50
50
|
# 4. Confirmation to launch
|
|
@@ -86,10 +86,10 @@ Launch the Living Docs Builder independently of `specweave init`. This is essent
|
|
|
86
86
|
|
|
87
87
|
| Depth | Duration | What It Does | Cost |
|
|
88
88
|
|-------|----------|--------------|------|
|
|
89
|
-
| `quick` | ~5-10 min | Structure scan
|
|
90
|
-
| `standard` | ~15-30 min | Module analysis
|
|
91
|
-
| `deep-native` | Progress-based | AI analysis
|
|
92
|
-
| `deep-
|
|
89
|
+
| `quick` | ~5-10 min | Structure scan + tech detection + imports map | Free |
|
|
90
|
+
| `standard` | ~15-30 min | Module analysis + exports + dependencies | Free |
|
|
91
|
+
| `deep-native` | Progress-based | ⭐ AI analysis using your MAX subscription - NO EXTRA COST! | FREE (MAX) |
|
|
92
|
+
| `deep-interactive` | Session-based | AI analysis in current Claude Code session (pause/resume) | FREE (MAX) |
|
|
93
93
|
|
|
94
94
|
### Full Scan Mode (--full-scan)
|
|
95
95
|
|
|
@@ -128,7 +128,7 @@ Launch the Living Docs Builder independently of `specweave init`. This is essent
|
|
|
128
128
|
```bash
|
|
129
129
|
/sw:living-docs --full-scan
|
|
130
130
|
|
|
131
|
-
# Uses deep-native if Claude MAX available, otherwise
|
|
131
|
+
# Uses deep-native if Claude MAX available, otherwise fails with error
|
|
132
132
|
# Runs ALL phases: B → C → D → E → F
|
|
133
133
|
# Duration: Variable (depends on project size)
|
|
134
134
|
```
|
|
@@ -85,7 +85,7 @@ export declare class GitHubClient {
|
|
|
85
85
|
/**
|
|
86
86
|
* Get all repositories accessible to the user
|
|
87
87
|
* @param owner Optional: filter by specific owner/org (e.g., 'octocat', 'my-org')
|
|
88
|
-
* @param limit Maximum number of repos to fetch (default:
|
|
88
|
+
* @param limit Maximum number of repos to fetch (default: 1000, max: 1000)
|
|
89
89
|
*/
|
|
90
90
|
static getRepositories(owner?: string, limit?: number): Promise<Array<{
|
|
91
91
|
owner: string;
|
|
@@ -250,9 +250,9 @@ ${body}`;
|
|
|
250
250
|
/**
|
|
251
251
|
* Get all repositories accessible to the user
|
|
252
252
|
* @param owner Optional: filter by specific owner/org (e.g., 'octocat', 'my-org')
|
|
253
|
-
* @param limit Maximum number of repos to fetch (default:
|
|
253
|
+
* @param limit Maximum number of repos to fetch (default: 1000, max: 1000)
|
|
254
254
|
*/
|
|
255
|
-
static async getRepositories(owner, limit =
|
|
255
|
+
static async getRepositories(owner, limit = 1e3) {
|
|
256
256
|
try {
|
|
257
257
|
const ownerFilter = owner ? `${owner}/` : "";
|
|
258
258
|
const cmd = `gh repo list ${ownerFilter} --limit ${limit} --json owner,name,nameWithOwner`;
|
|
@@ -342,9 +342,9 @@ export class GitHubClient {
|
|
|
342
342
|
/**
|
|
343
343
|
* Get all repositories accessible to the user
|
|
344
344
|
* @param owner Optional: filter by specific owner/org (e.g., 'octocat', 'my-org')
|
|
345
|
-
* @param limit Maximum number of repos to fetch (default:
|
|
345
|
+
* @param limit Maximum number of repos to fetch (default: 1000, max: 1000)
|
|
346
346
|
*/
|
|
347
|
-
static async getRepositories(owner?: string, limit: number =
|
|
347
|
+
static async getRepositories(owner?: string, limit: number = 1000): Promise<Array<{owner: string, name: string, fullName: string}>> {
|
|
348
348
|
try {
|
|
349
349
|
const ownerFilter = owner ? `${owner}/` : '';
|
|
350
350
|
const cmd = `gh repo list ${ownerFilter} --limit ${limit} --json owner,name,nameWithOwner`;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sw-plugin-dev",
|
|
3
|
-
"description": "Claude Code plugin development
|
|
4
|
-
"version": "0.
|
|
3
|
+
"description": "Claude Code plugin and skill development toolkit. Plugin creation, testing, publishing. Skill creation, validation, packaging. Agent development, CLI command integration, and marketplace publishing.",
|
|
4
|
+
"version": "0.35.0",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Anton Abyzov",
|
|
7
7
|
"email": "anton.abyzov@gmail.com"
|
|
@@ -11,10 +11,17 @@
|
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"keywords": [
|
|
13
13
|
"plugin-development",
|
|
14
|
+
"skill-creation",
|
|
15
|
+
"skill-validation",
|
|
16
|
+
"skill-packaging",
|
|
14
17
|
"claude-sdk",
|
|
15
18
|
"marketplace",
|
|
16
19
|
"skills",
|
|
17
20
|
"agents",
|
|
21
|
+
"yaml-frontmatter",
|
|
22
|
+
"skill-routing",
|
|
23
|
+
"plugin-scaffolding",
|
|
24
|
+
"developer-tools",
|
|
18
25
|
"specweave"
|
|
19
26
|
]
|
|
20
27
|
}
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
name: sw-tooling:skill-create
|
|
3
|
-
description: Create new Claude Code skill with proper YAML frontmatter, directory structure, and activation triggers. Interactive wizard for skill creation with validation and best practices.
|
|
4
|
-
---
|
|
1
|
+
# /sw-plugin-dev:skill-create
|
|
5
2
|
|
|
6
|
-
|
|
3
|
+
Create new Claude Code skill with proper YAML frontmatter, directory structure, and activation triggers. Interactive wizard for skill creation with validation and best practices.
|
|
7
4
|
|
|
8
5
|
**Interactive Wizard**: From concept to production-ready skill with proper structure and validation.
|
|
9
6
|
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
name: sw-tooling:skill-package
|
|
3
|
-
description: Package Claude Code skill for distribution via npm, GitHub, or direct sharing. Creates distributable archives with installation instructions and validation.
|
|
4
|
-
---
|
|
1
|
+
# /sw-plugin-dev:skill-package
|
|
5
2
|
|
|
6
|
-
|
|
3
|
+
Package Claude Code skill for distribution via npm, GitHub, or direct sharing. Creates distributable archives with installation instructions and validation.
|
|
7
4
|
|
|
8
5
|
**Distribution-Ready Packaging**: Create shareable skill packages with installation scripts and documentation.
|
|
9
6
|
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
name: sw-tooling:skill-validate
|
|
3
|
-
description: Validate Claude Code skill structure, YAML frontmatter, and activation triggers. Comprehensive validation with detailed error reporting and auto-fix suggestions.
|
|
4
|
-
---
|
|
1
|
+
# /sw-plugin-dev:skill-validate
|
|
5
2
|
|
|
6
|
-
|
|
3
|
+
Validate Claude Code skill structure, YAML frontmatter, and activation triggers. Comprehensive validation with detailed error reporting and auto-fix suggestions.
|
|
7
4
|
|
|
8
5
|
**Comprehensive Validation**: Detect and fix skill structure issues, YAML errors, and activation problems.
|
|
9
6
|
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "sw-tooling",
|
|
3
|
-
"description": "Plugin development toolkit for SpecWeave. Provides skill creation, validation, packaging, and plugin scaffolding tools. Expert guidance for YAML frontmatter, skill routing, activation patterns, and best practices. Essential for SpecWeave plugin developers.",
|
|
4
|
-
"version": "0.24.0",
|
|
5
|
-
"author": {
|
|
6
|
-
"name": "SpecWeave Team",
|
|
7
|
-
"url": "https://spec-weave.com"
|
|
8
|
-
},
|
|
9
|
-
"homepage": "https://spec-weave.com",
|
|
10
|
-
"repository": "https://github.com/anton-abyzov/specweave",
|
|
11
|
-
"license": "MIT",
|
|
12
|
-
"keywords": [
|
|
13
|
-
"specweave",
|
|
14
|
-
"tooling",
|
|
15
|
-
"skill-creation",
|
|
16
|
-
"plugin-development",
|
|
17
|
-
"yaml-frontmatter",
|
|
18
|
-
"skill-routing",
|
|
19
|
-
"plugin-scaffolding",
|
|
20
|
-
"developer-tools"
|
|
21
|
-
]
|
|
22
|
-
}
|