spectask-mcp 0.1.1__tar.gz

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.
Files changed (105) hide show
  1. spectask_mcp-0.1.1/.cursor/mcp.json +3 -0
  2. spectask_mcp-0.1.1/.cursor/skills/spawn-ext-bootstrap/SKILL.md +33 -0
  3. spectask_mcp-0.1.1/.cursor/skills/spawn-ext-config/SKILL.md +35 -0
  4. spectask_mcp-0.1.1/.cursor/skills/spawn-ext-hints/SKILL.md +34 -0
  5. spectask_mcp-0.1.1/.cursor/skills/spawn-ext-increment-version/SKILL.md +37 -0
  6. spectask_mcp-0.1.1/.cursor/skills/spawn-ext-mcp/SKILL.md +47 -0
  7. spectask_mcp-0.1.1/.cursor/skills/spawn-ext-skill-sources/SKILL.md +34 -0
  8. spectask_mcp-0.1.1/.cursor/skills/spawn-ext-verify/SKILL.md +33 -0
  9. spectask_mcp-0.1.1/.cursor/skills/spawn-methodology-shape/SKILL.md +35 -0
  10. spectask_mcp-0.1.1/.cursor/skills/spectask-code-review-passed/SKILL.md +23 -0
  11. spectask_mcp-0.1.1/.cursor/skills/spectask-create/SKILL.md +25 -0
  12. spectask_mcp-0.1.1/.cursor/skills/spectask-design/SKILL.md +40 -0
  13. spectask_mcp-0.1.1/.cursor/skills/spectask-execute/SKILL.md +23 -0
  14. spectask_mcp-0.1.1/.cursor/skills/spectask-seed-create/SKILL.md +26 -0
  15. spectask_mcp-0.1.1/.cursor/skills/spectask-spec-review-passed/SKILL.md +23 -0
  16. spectask_mcp-0.1.1/.cursorignore +9 -0
  17. spectask_mcp-0.1.1/.gitattributes +2 -0
  18. spectask_mcp-0.1.1/.gitignore +3 -0
  19. spectask_mcp-0.1.1/AGENTS.md +12 -0
  20. spectask_mcp-0.1.1/LICENSE +21 -0
  21. spectask_mcp-0.1.1/PKG-INFO +9 -0
  22. spectask_mcp-0.1.1/README.md +113 -0
  23. spectask_mcp-0.1.1/extsrc/config.yaml +62 -0
  24. spectask_mcp-0.1.1/extsrc/files/spec/design/hla.md +3 -0
  25. spectask_mcp-0.1.1/extsrc/files/spec/design.yaml +5 -0
  26. spectask_mcp-0.1.1/extsrc/files/spec/main.md +231 -0
  27. spectask_mcp-0.1.1/extsrc/mcp/linux.json +12 -0
  28. spectask_mcp-0.1.1/extsrc/mcp/macos.json +12 -0
  29. spectask_mcp-0.1.1/extsrc/mcp/windows.json +12 -0
  30. spectask_mcp-0.1.1/extsrc/setup/install_spectask_mcp.py +66 -0
  31. spectask_mcp-0.1.1/extsrc/skills/spectask-code-review-passed.md +8 -0
  32. spectask_mcp-0.1.1/extsrc/skills/spectask-create.md +12 -0
  33. spectask_mcp-0.1.1/extsrc/skills/spectask-design.md +25 -0
  34. spectask_mcp-0.1.1/extsrc/skills/spectask-execute.md +8 -0
  35. spectask_mcp-0.1.1/extsrc/skills/spectask-seed-create.md +14 -0
  36. spectask_mcp-0.1.1/extsrc/skills/spectask-spec-review-passed.md +8 -0
  37. spectask_mcp-0.1.1/extsrc/skills/spectask-task-from-jira.md +12 -0
  38. spectask_mcp-0.1.1/pyproject.toml +20 -0
  39. spectask_mcp-0.1.1/scripts/publish.py +187 -0
  40. spectask_mcp-0.1.1/spawn/.core/config.yaml +5 -0
  41. spectask_mcp-0.1.1/spawn/.extend/extension-creator/config.yaml +99 -0
  42. spectask_mcp-0.1.1/spawn/.extend/extension-creator/files/spawn-ext-guide/ai/cli.md +64 -0
  43. spectask_mcp-0.1.1/spawn/.extend/extension-creator/files/spawn-ext-guide/ai/config-yaml.md +198 -0
  44. spectask_mcp-0.1.1/spawn/.extend/extension-creator/files/spawn-ext-guide/ai/core.md +77 -0
  45. spectask_mcp-0.1.1/spawn/.extend/extension-creator/files/spawn-ext-guide/ai/mcp-json.md +227 -0
  46. spectask_mcp-0.1.1/spawn/.extend/extension-creator/files/spawn-ext-guide/ai/skill-sources.md +75 -0
  47. spectask_mcp-0.1.1/spawn/.extend/extension-creator/files/spawn-ext-guide/user-guide.md +610 -0
  48. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-ext-bootstrap.md +13 -0
  49. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-ext-config.md +15 -0
  50. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-ext-hints.md +13 -0
  51. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-ext-increment-version.md +17 -0
  52. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-ext-mcp.md +29 -0
  53. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-ext-skill-sources.md +14 -0
  54. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-ext-verify.md +13 -0
  55. spectask_mcp-0.1.1/spawn/.extend/extension-creator/skills/spawn-methodology-shape.md +14 -0
  56. spectask_mcp-0.1.1/spawn/.extend/extension-creator/source.yaml +7 -0
  57. spectask_mcp-0.1.1/spawn/.extend/spectask/config.yaml +50 -0
  58. spectask_mcp-0.1.1/spawn/.extend/spectask/files/spec/design/hla.md +3 -0
  59. spectask_mcp-0.1.1/spawn/.extend/spectask/files/spec/design.yaml +5 -0
  60. spectask_mcp-0.1.1/spawn/.extend/spectask/files/spec/main.md +232 -0
  61. spectask_mcp-0.1.1/spawn/.extend/spectask/skills/spectask-code-review-passed.md +8 -0
  62. spectask_mcp-0.1.1/spawn/.extend/spectask/skills/spectask-create.md +11 -0
  63. spectask_mcp-0.1.1/spawn/.extend/spectask/skills/spectask-design.md +25 -0
  64. spectask_mcp-0.1.1/spawn/.extend/spectask/skills/spectask-execute.md +8 -0
  65. spectask_mcp-0.1.1/spawn/.extend/spectask/skills/spectask-seed-create.md +12 -0
  66. spectask_mcp-0.1.1/spawn/.extend/spectask/skills/spectask-spec-review-passed.md +8 -0
  67. spectask_mcp-0.1.1/spawn/.extend/spectask/source.yaml +7 -0
  68. spectask_mcp-0.1.1/spawn/.metadata/cursor/agent-ignore.txt +2 -0
  69. spectask_mcp-0.1.1/spawn/.metadata/cursor/rendered-mcp.yaml +1 -0
  70. spectask_mcp-0.1.1/spawn/.metadata/cursor/rendered-skills.yaml +31 -0
  71. spectask_mcp-0.1.1/spawn/.metadata/git-ignore.txt +0 -0
  72. spectask_mcp-0.1.1/spawn/.metadata/ide.yaml +2 -0
  73. spectask_mcp-0.1.1/spawn/navigation.yaml +15 -0
  74. spectask_mcp-0.1.1/spawn-ext-guide/ai/cli.md +64 -0
  75. spectask_mcp-0.1.1/spawn-ext-guide/ai/config-yaml.md +198 -0
  76. spectask_mcp-0.1.1/spawn-ext-guide/ai/core.md +77 -0
  77. spectask_mcp-0.1.1/spawn-ext-guide/ai/mcp-json.md +227 -0
  78. spectask_mcp-0.1.1/spawn-ext-guide/ai/skill-sources.md +75 -0
  79. spectask_mcp-0.1.1/spawn-ext-guide/user-guide.md +610 -0
  80. spectask_mcp-0.1.1/spec/design/hla.md +3 -0
  81. spectask_mcp-0.1.1/spec/design.yaml +5 -0
  82. spectask_mcp-0.1.1/spec/main.md +231 -0
  83. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/_DONE_1-package-cli.md +134 -0
  84. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/_DONE_2-config-interactive.md +102 -0
  85. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/_DONE_3-jira-clients.md +93 -0
  86. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/_DONE_4-mcp-server.md +46 -0
  87. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/_DONE_5-cli-run.md +53 -0
  88. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/_DONE_6-publish-setup-extsrc.md +166 -0
  89. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/_DONE_7-methodology-skill-mirror.md +113 -0
  90. spectask_mcp-0.1.1/spec/tasks/1-spectask-mcp-jira/overview.md +131 -0
  91. spectask_mcp-0.1.1/spectask_mcp/__init__.py +1 -0
  92. spectask_mcp-0.1.1/spectask_mcp/__main__.py +4 -0
  93. spectask_mcp-0.1.1/spectask_mcp/cli.py +40 -0
  94. spectask_mcp-0.1.1/spectask_mcp/config.py +226 -0
  95. spectask_mcp-0.1.1/spectask_mcp/config_prompts.py +285 -0
  96. spectask_mcp-0.1.1/spectask_mcp/jira/__init__.py +21 -0
  97. spectask_mcp-0.1.1/spectask_mcp/jira/base.py +21 -0
  98. spectask_mcp-0.1.1/spectask_mcp/jira/cloud.py +35 -0
  99. spectask_mcp-0.1.1/spectask_mcp/jira/factory.py +16 -0
  100. spectask_mcp-0.1.1/spectask_mcp/jira/http_common.py +218 -0
  101. spectask_mcp-0.1.1/spectask_mcp/jira/self_hosted.py +41 -0
  102. spectask_mcp-0.1.1/spectask_mcp/jira/types.py +16 -0
  103. spectask_mcp-0.1.1/spectask_mcp/jira_actions.py +75 -0
  104. spectask_mcp-0.1.1/spectask_mcp/mcp_app.py +76 -0
  105. spectask_mcp-0.1.1/spectask_mcp/run_cmd.py +42 -0
@@ -0,0 +1,3 @@
1
+ {
2
+ "mcpServers": {}
3
+ }
@@ -0,0 +1,33 @@
1
+ ---
2
+ name: spawn-ext-bootstrap
3
+ description: Bootstrap a new Spawn extension repo with extsrc skeleton and stable id.
4
+ ---
5
+
6
+
7
+ Goal: start a new Spawn extension (methodology pack) from zero or from an existing repo that lacks `extsrc/`.
8
+
9
+ 1. Confirm or choose extension id (`name`): kebab-case, stable across releases; decide initial `version` string.
10
+ 2. From the extension repo root run `spawn extension init . --name <id>` so `extsrc/` and `config.yaml` exist.
11
+ 3. Set `schema: 1`, `name`, `version` in `config.yaml`; remove empty stub keys you will not use yet if the tool allows, or leave minimal valid maps.
12
+ 4. Plan top-level namespaces under `extsrc/files/` (e.g. `my-org/spec/`, `my-org/guides/`) so paths do not collide with other extensions in combined targets.
13
+ 5. Next steps: use sibling skills to declare **`files`** / **`folders`**, add templates under **`extsrc/files/`**; MCP lives under **`extsrc/mcp/*.json`** (see **spawn-ext-mcp**); then **`spawn extension check . --strict`**.
14
+ 6. **Later:** whenever packaging meaningfully evolves after bootstrap, **prompt** a **`version`** bump using **`spawn-ext-increment-version`** before publishing (initial `0.1.0` or `1.0.0` is typical until first stable story).
15
+
16
+
17
+ Hints:
18
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
19
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
20
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
21
+
22
+ Mandatory reads:
23
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
24
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
25
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
26
+
27
+ Contextual reads:
28
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
29
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
30
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
31
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
32
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
33
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: spawn-ext-config
3
+ description: Declare config.yaml files/folders/ignores/setup and mirror every path under extsrc/files.
4
+ ---
5
+
6
+
7
+ Goal: wire every template path under `extsrc/files/` into `config.yaml` with correct `mode`, `globalRead`/`localRead`, and optional `folders`/`setup`/`agent-ignore`/`git-ignore`/`hints`.
8
+
9
+ 1. List every file under `extsrc/files/`; each MUST have a matching key under `files:` (POSIX path relative to target root). Fix gaps before strict check.
10
+ 2. For each path choose `mode`: `static` for shared methodology the pack may overwrite on update; `artifact` for repo-owned outputs (tasks, local notes) that must never be overwritten after creation.
11
+ 3. Set `globalRead`/`localRead` so humans and agents discover the right docs (`required`/`auto`/`no`). Any non-`no` read flag needs a non-empty `description` under strict validation.
12
+ 4. Use `folders:` for directories whose ownership/update policy matters even when templates are sparse.
13
+ 5. Reference setup scripts only with basenames that exist under `extsrc/setup/`; hooks must be idempotent and safe for artifact data.
14
+ 6. For optional plain-text **`hints`** (`global` / `local` string lists merged into navigation and rendered skills — not a substitute for read surfaces), follow **`spawn-ext-hints`**.
15
+ 7. Run `spawn extension check . --strict` and fix reported issues.
16
+ 8. **Version:** If these edits materially change what consumers get (paths, read surfaces, ignores, setup, hints), **prompt** the author to bump **`version`** using **`spawn-ext-increment-version`** before tagging or publishing. Trivial typo-only fixes to existing templates may skip a bump — ask if unsure.
17
+
18
+
19
+ Hints:
20
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
21
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
22
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
23
+
24
+ Mandatory reads:
25
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
26
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
27
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
28
+
29
+ Contextual reads:
30
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
31
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
32
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
33
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
34
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
35
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,34 @@
1
+ ---
2
+ name: spawn-ext-hints
3
+ description: Add optional hints.global / hints.local in config.yaml — plain-text agent reminders merged like global reads vs pack-local skills.
4
+ ---
5
+
6
+
7
+ Goal: add short methodology reminders Spawn injects beside reads and skills — without replacing `globalRead` / `localRead` / skill `required-read`.
8
+
9
+ 1. Add optional top-level **`hints`** with **`global`** and/or **`local`**, each a **YAML list of strings**. Content is **plain text only** (no pointers into other files).
10
+ 2. **`global`**: included in **`spawn/navigation.yaml`** on this pack’s **`read-required` → `- ext:`** as **`hints`**, echoed into **every rendered skill** (each pack’s `hints.global`, in installed-extension order — same breadth idea as merged global mandatory reads), and merged into **`AGENTS.md`** / entry rollup together with maintainer hints.
11
+ 3. **`local`**: appended only when rendering skills **owned by this pack**, after globals for that lineage; **not** written under the navigation ext **`hints`** block; **not** folded into **`AGENTS.md`**.
12
+ 4. Expect **strip + dedupe by exact string** (first occurrence wins). Long lines may emit **`SpawnWarning`**; **`spawn/navigation.yaml`** may **truncate past 512 Unicode codepoints** per string; rendered skill **Hints** blocks may truncate total payload; **`AGENTS.md`** keeps full text but may warn on same thresholds — keep entries terse.
13
+ 5. Use hints for durable one-liners (conventions, “always run X before Y”). Prefer real specs as **`files:`** entries with **`globalRead`** / **`localRead`** or skill **`required-read`** when the agent must load a document body.
14
+ 6. **Version:** If hint text or which strings are global vs local changes observable behavior for consumers, **prompt** the author to bump **`version`** via **`spawn-ext-increment-version`** before release.
15
+
16
+
17
+ Hints:
18
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
19
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
20
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
21
+
22
+ Mandatory reads:
23
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
24
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
25
+ - `spawn-ext-guide/user-guide.md` - Human-readable standalone guide — narrative for all authoring topics.
26
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
27
+
28
+ Contextual reads:
29
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
30
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
31
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
32
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
33
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
34
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,37 @@
1
+ ---
2
+ name: spawn-ext-increment-version
3
+ description: Bump extension version in extsrc/config.yaml for releases (semver-oriented guidance).
4
+ ---
5
+
6
+
7
+ Goal: update **`version`** at the top level of **`extsrc/config.yaml`** before publishing or tagging so consumers and `spawn extension update` flows see a monotonic, intentional change.
8
+
9
+ 1. Open **`extsrc/config.yaml`** and locate **`version`** (required string; compared **as a string** on extension update — ordering follows Spawn/tooling string rules, so prefer **semantic versioning** `MAJOR.MINOR.PATCH` for predictable ordering).
10
+ 2. Choose bump level:
11
+ - **PATCH** (`1.0.0` → `1.0.1`): fixes, docs-only template tweaks that do not change behavior contracts.
12
+ - **MINOR** (`1.0.1` → `1.1.0`): backward-compatible additions (new optional files, new skills, stricter defaults that remain compatible).
13
+ - **MAJOR** (`1.1.0` → `2.0.0`): breaking changes (removed paths, renamed skills, changed `name`, incompatible template or read semantics).
14
+ 3. Edit **`version`** to the new value only — keep **`schema`**, **`name`**, and **`version`** consistent with prior releases (**`name`** MUST stay stable across releases unless you intentionally ship a new extension id).
15
+ 4. If the repo keeps a **changelog**, add an entry for this version in that file (optional; not part of Spawn manifest).
16
+ 5. Run **`spawn extension check . --strict`** from the extension source root.
17
+
18
+ Do **not** bump **`schema`** unless you migrate to a new Spawn **`config.yaml`** format version documented by Spawn.
19
+
20
+
21
+ Hints:
22
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
23
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
24
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
25
+
26
+ Mandatory reads:
27
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
28
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
29
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
30
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
31
+
32
+ Contextual reads:
33
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
34
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
35
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
36
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
37
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,47 @@
1
+ ---
2
+ name: spawn-ext-mcp
3
+ description: Add or edit extsrc/mcp/*.json — three platform files, Spawn servers shape, matching server names, safe env placeholders.
4
+ ---
5
+
6
+
7
+ Goal: declare MCP servers bundled with the extension so Spawn merges them per host OS into IDE configs.
8
+
9
+ ### Layout
10
+
11
+ - Use **`extsrc/mcp/windows.json`**, **`extsrc/mcp/linux.json`**, **`extsrc/mcp/macos.json`** only (`spawn extension init` scaffolds all three as `{"servers": []}`).
12
+ - **Do not** add **`extsrc/mcp.json`** — obsolete; **`spawn extension check`** flags it.
13
+
14
+ ### Editing workflow (add or change servers)
15
+
16
+ 1. **Plan globally unique **`servers[].name`** values** across every extension that might install beside this one in the same target (prefer prefixed ids, e.g. `myorg-docs-mcp`).
17
+ 2. **Keep the server `name` set identical** in all three JSON files (same names; order may differ per file).
18
+ 3. For each OS file, edit the **`servers`** array with the Spawn shape: top-level **`servers`** — not IDE **`mcpServers`**.
19
+ 4. **`transport`**: default mental model **`stdio`** with **`command`** / **`args`** / **`cwd`**; **`sse`** / **`streamable-http`** use **`url`** where the adapter supports that **`type`**.
20
+ 5. **`env`**: never commit secrets; structured objects with **`secret`** / **`required`**, or non-object placeholders — generated IDE config uses placeholders for user values.
21
+ 6. **`capabilities`**: set when defaults (tools on, resources/prompts off) are wrong for the server.
22
+ 7. When transport truly differs by OS (e.g. **`python`** vs **`python3`**, or Windows-specific exe), duplicate the server **`name`** in each file but adjust only **`transport`** (and **`env`** if needed) per platform.
23
+ 8. **Homogeneous setups:** duplicate the **same** JSON payload into **`windows.json`**, **`linux.json`**, and **`macos.json`** if all three match — still three files required.
24
+ 9. Run **`spawn extension check .`** (`--strict` in CI): parsing, stray obsolete **`extsrc/mcp.json`**, and **matching `name`** sets across **`extsrc/mcp/*.json`**.
25
+
26
+ ### Release discipline
27
+
28
+ Changing **`servers`**, transports, **`env`** contract, or **`capabilities`** is consumer-visible MCP behavior — **prompt** the author to bump **`version`** via **`spawn-ext-increment-version`** before publishing.
29
+
30
+
31
+ Hints:
32
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
33
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
34
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
35
+
36
+ Mandatory reads:
37
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
38
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
39
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
40
+
41
+ Contextual reads:
42
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
43
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
44
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
45
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
46
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
47
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,34 @@
1
+ ---
2
+ name: spawn-ext-skill-sources
3
+ description: Author extsrc/skills and register them in config with required-read merges.
4
+ ---
5
+
6
+
7
+ Goal: add or change agent skills shipped with the extension.
8
+
9
+ 1. Add `extsrc/skills/<skill-key>.md` (UTF-8 Markdown). Filename must match the key under `skills:` when declared.
10
+ 2. Prefer short procedural bodies; long reference belongs under `extsrc/files/` and is linked via `localRead`/`globalRead` or per-skill `required-read`.
11
+ 3. Optional YAML frontmatter with `name` and/or `description`; otherwise set them under `skills:` in `config.yaml` (config overrides frontmatter where both apply per resolution rules).
12
+ 4. Under `skills:` list `required-read` target paths only when they are mandatory for that skill beyond merged global/local rules; avoid pointless duplication.
13
+ 5. After normalization, skill display names must remain unique across all extensions installed in one target — use a stable prefix.
14
+ 6. Run `spawn extension check . --strict` after adding or renaming skill files.
15
+ 7. **Version:** Adding, removing, or materially changing skills or their **`required-read`** affects consumers — **prompt** the author to bump **`version`** via **`spawn-ext-increment-version`** before release (unless the change is typo-only text with no behavior impact).
16
+
17
+
18
+ Hints:
19
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
20
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
21
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
22
+
23
+ Mandatory reads:
24
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
25
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
26
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
27
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
28
+
29
+ Contextual reads:
30
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
31
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
32
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
33
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
34
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,33 @@
1
+ ---
2
+ name: spawn-ext-verify
3
+ description: Strict check extension layout and smoke-test install in a disposable target.
4
+ ---
5
+
6
+
7
+ Goal: ship only packs that pass strict validation and install cleanly.
8
+
9
+ 1. From extension source root: **`spawn extension check . --strict`** — resolve missing skills, undeclared files under `extsrc/files/`, descriptions for non-no read flags, invalid or mismatched **`extsrc/mcp/*.json`** (including stray obsolete **`extsrc/mcp.json`**), missing setup scripts.
10
+ 2. In a throwaway clone or empty repo: **`spawn init`**, then **`spawn extension add <path-or-url-to-your-extension-source>`** (match consumer workflow).
11
+ 3. Confirm materialized paths under **`files:`** exist as expected; confirm **`artifact`** paths are not overwritten on a repeat add/update where applicable.
12
+ 4. If **`healthcheck`** is configured: **`spawn extension healthcheck <name>`** from the target.
13
+ 5. Document distribution: plain repo URL/path, zip, or entry in an **`extensions.yaml`** bundle for **`spawn build install`**.
14
+ 6. **Version:** If this session changed **`config.yaml`**, skills, **`extsrc/files/`** layout, or **`extsrc/mcp/*.json`** in a user-visible way, **prompt** the author to bump **`version`** with **`spawn-ext-increment-version`** before tagging or releasing — unless they confirm it was docs-only typos with no behavioral impact.
15
+
16
+
17
+ Hints:
18
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
19
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
20
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
21
+
22
+ Mandatory reads:
23
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
24
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
25
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
26
+
27
+ Contextual reads:
28
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
29
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
30
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
31
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
32
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
33
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,35 @@
1
+ ---
2
+ name: spawn-methodology-shape
3
+ description: Design methodology namespaces, static vs artifact layout, and read surfaces before packing.
4
+ ---
5
+
6
+
7
+ Goal: before editing YAML heavily, decide what the methodology teaches and where files live under `extsrc/files/`.
8
+
9
+ 1. Define audiences (human vs agent) and primary workflows; map each to concrete paths under a single namespace prefix.
10
+ 2. Classify each deliverable as `static` (canonical methodology the pack maintains) vs `artifact` (per-repo living documents).
11
+ 3. Choose what belongs in global navigation (`globalRead`) vs only when using this pack’s skills (`localRead`).
12
+ 4. Split long specs into `extsrc/files/` and keep `extsrc/skills/*.md` as thin procedures that point to those reads.
13
+ 5. Align names with uniqueness rules (prefixed skill ids, MCP server ids, path prefixes) if this pack coexists with others.
14
+ 6. Implement the tree under `extsrc/files/`, then run `spawn-ext-config` and `spawn-ext-verify` workflows.
15
+ 7. **Version:** If namespaces, static vs artifact split, or read surfaces change shipped methodology, **prompt** the author to bump **`version`** via **`spawn-ext-increment-version`** before consumers upgrade.
16
+
17
+
18
+ Hints:
19
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
20
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
21
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
22
+
23
+ Mandatory reads:
24
+ - `spawn-ext-guide/ai/core.md` - Machine baseline — terms, extsrc tree rules, static vs artifact, name and uniqueness, install outputs.
25
+ - `spawn-ext-guide/ai/config-yaml.md` - Machine schema for config.yaml — keys, files/folders/skills modes, reads, ignores, setup, annotated example.
26
+ - `spawn-ext-guide/user-guide.md` - Human-readable standalone guide — narrative for all authoring topics.
27
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
28
+
29
+ Contextual reads:
30
+ - `spawn-ext-guide/ai/skill-sources.md` - Machine rules for extsrc/skills/*.md — frontmatter, name/description resolution, rendered skill shape, example.
31
+ - `spawn-ext-guide/ai/mcp-json.md` - Machine schema for extsrc/mcp/windows.json, linux.json, macos.json — servers, OS selection, aligned name sets, transport, env, capabilities, JSON examples.
32
+ - `spawn-ext-guide/ai/cli.md` - Machine CLI reference — spawn init/extension/build commands, extensions.yaml bundle shape, authoring checklist.
33
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
34
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
35
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: spectask-code-review-passed
3
+ description: After user confirms code review — Steps 6–7 in one run (spec/main.md).
4
+ ---
5
+
6
+
7
+ Operate within the **spectask** process defined in attached **spec/main.md**.
8
+
9
+ On the active `spec/tasks/{X}-{name}/overview.md`, finish **Step 6** (mark **code review passed** and the Step 6 prompt), then complete **Step 7** through **Design documents updated** in the same run. If **`overview.md`** ties a **`spec/seeds/`** file to this task, run **Step 7** item **6** (seed `_DONE_` rename) per **`spec/main.md`**. Ask which task if unclear.
10
+
11
+
12
+ Hints:
13
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
14
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
15
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
16
+
17
+ Mandatory reads:
18
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
19
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
20
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
21
+
22
+ Contextual reads:
23
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
@@ -0,0 +1,25 @@
1
+ ---
2
+ name: spectask-create
3
+ description: Use when drafting a new spectask (specification only, per spec/main.md).
4
+ ---
5
+
6
+
7
+ Operate within the **spectask** process defined in attached **spec/main.md**.
8
+ Complete **Steps 1–2** only — then stop and wait for the user’s **Step 3** (spec review).
9
+
10
+ Under this skill, writing implementation code without an approved specification is not allowed — stay within Steps 1–2 (overview.md and subtasks) until spec review passes.
11
+
12
+ If work began from **`spec/seeds/`**, tie the seed to the new task in **Step 1** (**`linked task:`** + **Source seed** in **`overview.md`**) and close it in **Step 7** item **6**, per **`spec/main.md`**.
13
+
14
+ Hints:
15
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
16
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
17
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
18
+
19
+ Mandatory reads:
20
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
21
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
22
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
23
+
24
+ Contextual reads:
25
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
@@ -0,0 +1,40 @@
1
+ ---
2
+ name: spectask-design
3
+ description: Use when registering architecture files in spec/design.yaml or drafting spec/design/*.md.
4
+ ---
5
+
6
+
7
+ Operate within the **spectask** process defined in attached **spec/main.md**.
8
+
9
+ ## `spec/design.yaml`
10
+
11
+ - **Schema:** top-level `schema: 1` and list **`documents`**. Each item has **`path`** and **`description`** (plain language: what the document covers, when to read it).
12
+ - **Paths:** repo-relative POSIX, typically `spec/design/{name}.md`. Reuse existing names when editing; avoid duplicates in `documents`.
13
+ - **Edits:** append or update entries when adding or renaming architecture markdown. Keep descriptions short and unique in intent (not copy-paste of the file title only).
14
+
15
+ ## New or updated `spec/design/*.md`
16
+
17
+ 1. **Purpose** — one paragraph: why this document exists.
18
+ 2. **Scope** — in/out; link to HLA if this is a slice of the whole system.
19
+ 3. **Content** — components, boundaries, data or control flow, integrations, constraints; diagrams as fenced blocks or links if the user prefers.
20
+ 4. **Related** — other `spec/design` docs by path when relevant.
21
+
22
+ If the user only wants a registry row, still ensure the target **`.md` exists** or create a minimal stub so `path` is not orphaned.
23
+
24
+ ## Spawn / agent reads
25
+
26
+ New paths are discoverable from **`spec/design.yaml`** once that file is read. For mandatory or default context at session start, paths still need **`globalRead` / `localRead`** (and non-empty **`description`**) in a Spawn extension **`config.yaml`** for the repo. If the user maintains this methodology pack, add a matching `files:` entry under **`extsrc/config.yaml`** and reinstall/update the extension; otherwise note the requirement for a companion extension or local config.
27
+
28
+
29
+ Hints:
30
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
31
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
32
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
33
+
34
+ Mandatory reads:
35
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
36
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
37
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
38
+
39
+ Contextual reads:
40
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: spectask-execute
3
+ description: Steps 4–5 in spec/main.md; then wait for user Step 6.
4
+ ---
5
+
6
+
7
+ Operate within the **spectask** process defined in attached **spec/main.md**.
8
+
9
+ Complete **Steps 4–5**. Then wait for the user for **Step 6**.
10
+
11
+
12
+ Hints:
13
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
14
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
15
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
16
+
17
+ Mandatory reads:
18
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
19
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
20
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
21
+
22
+ Contextual reads:
23
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: spectask-seed-create
3
+ description: Capture a rough idea as spec/seeds/{X}-{slug}.md (not a full task); then offer to start spectask-create.
4
+ ---
5
+
6
+
7
+ Operate within the **spectask** process defined in attached **spec/main.md**.
8
+
9
+ Follow the short **Seed** paragraph and **[Seed file template (header)](#seed-file-template-header)** in **spec/main.md**.
10
+
11
+ Pick a kebab-case **slug** and the next **`X`** under **`spec/seeds/`** (default: max numeric prefix among **`*.md`** there + **1**). Create **`spec/seeds/{X}-{slug}.md`**: **`linked task: none`** unless it already binds to an **`overview.md`** path — blank line — then informal notes (**not** a full spectask).
12
+
13
+ Suggest **spectask-create** when the user promotes; **Step 1** and **Step 7** item **6** covering seed wiring live there.
14
+
15
+ Hints:
16
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
17
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
18
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
19
+
20
+ Mandatory reads:
21
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
22
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
23
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
24
+
25
+ Contextual reads:
26
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: spectask-spec-review-passed
3
+ description: Step 3 — spec approved (spec/main.md).
4
+ ---
5
+
6
+
7
+ Operate within the **spectask** process defined in attached **spec/main.md**.
8
+
9
+ On the active `spec/tasks/{X}-{name}/overview.md`, finish Step 3: **Spec review passed** and the Step 3 prompt. Ask which task if unclear.
10
+
11
+
12
+ Hints:
13
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
14
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
15
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
16
+
17
+ Mandatory reads:
18
+ - `spec/main.md` - Spec-Tasks methodology — folder structure, seven-step process, overview template.
19
+ - `spec/design.yaml` - Index of architecture documents under spec/design/ — path and description per entry.
20
+ - `spawn/navigation.yaml` - Merged Spawn navigation (read-required, read-contextual).
21
+
22
+ Contextual reads:
23
+ - `spec/design/hla.md` - Project high-level architecture; updated in Step 7.
@@ -0,0 +1,9 @@
1
+ # spawn:core:start
2
+ spawn/.core/**
3
+ spawn/.metadata/**
4
+ spawn/.extend/**
5
+ # spawn:core:end
6
+ # spawn:ext:start
7
+ spec/seeds/_DONE_*.md
8
+ spec/tasks/**/_DONE_*/_DONE_*.md
9
+ # spawn:ext:end
@@ -0,0 +1,2 @@
1
+ # Auto detect text files and perform LF normalization
2
+ * text=auto
@@ -0,0 +1,3 @@
1
+ # spawn:start
2
+ spawn/.metadata/temp/**
3
+ # spawn:end
@@ -0,0 +1,12 @@
1
+ <!-- spawn:start -->
2
+ Before working, read `spawn/navigation.yaml`.
3
+ Read every file listed under `read-required`.
4
+ Inspect `read-contextual` descriptions and read only files relevant to the current task.
5
+
6
+ Hints:
7
+ - No emojis or exotic Unicode in code, logs, documentation, or messages; plain ASCII where practical.
8
+ - User-facing replies, documentation, and task descriptions: concise wording; minimal markdown (avoid decorative bold/italic); explain with lists and structure; short, clear sentences.
9
+ - Specifications, code comments, and project documentation must be written in English.
10
+ - If the user only asked a question, answer first; do not edit files unless changes are clearly needed.
11
+
12
+ <!-- spawn:end -->
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 anton
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: spectask-mcp
3
+ Version: 0.1.1
4
+ Summary: Stdio MCP and CLI for Spectask-Jira workflows
5
+ License-File: LICENSE
6
+ Requires-Python: >=3.11
7
+ Requires-Dist: httpx[socks]>=0.27.0
8
+ Requires-Dist: mcp>=1.2.0
9
+ Requires-Dist: pyyaml>=6.0.1