A Swarmauri Peagen Template Set for Vue Atom
Project description
peagen_templset_vue
peagen_templset_vue packages a Peagen template set that scaffolds Vue single-file components (SFCs) with a full suite of supporting assets. The template set is registered under the peagen.template_sets entry-point group so the Peagen CLI can discover it automatically after installation.
Overview
- Opinionated Vue atoms –
ptree.yaml.j2renders a component folder containing anindex.tsbarrel, the Vue SFC, scoped CSS, and a generated*.d.tsinterface file. - Comprehensive testing prompts – the template tree includes Jest/Vitest-ready unit tests, dedicated accessibility and visual regression specs, plus Storybook
.stories.tsand.stories.mdxdocuments. - Accessible defaults –
agent_default.j2instructs the LLM to prefer TypeScript, provide docstrings, enforce ARIA annotations, and respect WCAG guidance. Project/module extras such asREQUIREMENTS,STATES, andDEPENDENCIESin your Peagen payload are injected directly into that prompt. - Dependency-aware rendering – each generated file declares its local dependencies so Peagen can order rendering and feed context into the prompts for downstream files.
Installation
Install the template set alongside the Peagen CLI:
pip install peagen peagen_templset_vue
# or install the template set into an existing environment
pip install peagen_templset_vue
Using Poetry:
poetry add peagen peagen_templset_vue
# or
poetry add peagen_templset_vue
Using uv:
uv pip install peagen peagen_templset_vue
Example: Inspect the bundled templates
After installation you can programmatically explore the template tree before invoking Peagen. The snippet below locates the packaged resources and prints the key prompts that Peagen will feed into its generation pipeline.
from importlib import resources
package = resources.files("peagen_templset_vue.templates.peagen_templset_vue")
with resources.as_file(package) as template_root:
top_level = sorted(path.name for path in template_root.glob("*.j2"))
component_dir = template_root / "{{ PKG.NAME }}" / "src" / "components" / "{{ MOD.NAME }}"
component_files = [
entry.name for entry in sorted(component_dir.iterdir(), key=lambda path: path.name)
]
print(f"Template root: {template_root.name}")
print(f"Top-level prompts: {top_level}")
print("Component template files:")
for name in component_files:
print(f"- {name}")
The output highlights the top-level agent_default.j2 prompt plus every Vue component artefact Peagen will scaffold (Vue SFC, TypeScript barrel, CSS, tests, and Storybook stories).
Want to help?
If you want to contribute to swarmauri-sdk, read our guidelines for contributing.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file peagen_templset_vue-0.1.0.tar.gz.
File metadata
- Download URL: peagen_templset_vue-0.1.0.tar.gz
- Upload date:
- Size: 10.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4457c928232c43261d0815fbc86efe7188475e6f1df94fb63f835644269aae8
|
|
| MD5 |
36d32a1c85587ae52af05a1623d0c16d
|
|
| BLAKE2b-256 |
43ac85b1b8630ecaf0f8f7df4b33c08b83e246b369144f66a803a91d7f999bf8
|
File details
Details for the file peagen_templset_vue-0.1.0-py3-none-any.whl.
File metadata
- Download URL: peagen_templset_vue-0.1.0-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.27 {"installer":{"name":"uv","version":"0.9.27","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fd8c8549d8f0a3b5f7dc607d872d6b222814721c8a743f285e6579a3aa3689e
|
|
| MD5 |
191a21a9539f12df4656ab613dd29256
|
|
| BLAKE2b-256 |
d7e93f58138f39e16c3b33aed012bf878ac9a4bd70ac8b025ff6ab259e628da4
|