AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Template Release

skill-ampli-group-agentic-mobile-blueprint-template-release · by Ampli-Group

Cut a new template version — bump TEMPLATE_VERSION, write upgrade notes, tag and publish a GitHub release. Use when releasing a new version of the agentic-mobile-blueprint template.

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-ampli-group-agentic-mobile-blueprint-template-release

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-ampli-group-agentic-mobile-blueprint-template-release)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Template Release? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Release Process

This template uses semver (MAJOR.MINOR.PATCH) for tracking purposes only. CI/CD pipelines are not gated on version tags — they trigger on merges to main.

| Bump | When | |------|------| | PATCH (0.1.x) | Bug fixes, security patches, dependency updates — no API or skill changes | | MINOR (0.x.0) | New features, new skills, new integrations — backwards-compatible | | MAJOR (x.0.0) | Breaking changes to file structure, API contracts, or required env vars |


Step 1 — Decide the next version

  1. Read TEMPLATE_VERSION to get the current version.
  2. Review changes since the last tag:

``bash git log $(git describe --tags --abbrev=0)..HEAD --oneline git diff $(git describe --tags --abbrev=0)..HEAD --stat ``

  1. Apply the semver rules above to pick MAJOR.MINOR.PATCH.

Step 2 — Write upgrade notes

Create .agents/skills/template-upgrade/vMAJOR.MINOR.PATCH.md using the template below. Every section is required. Use "None" for empty sections — never omit them.

What belongs in upgrade notes

Only document changes that consuming projects can and should pull in:

| Include | Exclude | |---------|---------| | supabase/functions/_shared/ utilities | mobile/app/ screens and components | | .agents/skills/ (new or updated skills) | maestro/ YAML test flows | | supabase/migrations/ shared schema | Example / demo screens | | Build config (eas.json, app.json keys) | Any file a project is expected to replace | | New required env vars | Internal refactors with no consumer impact | | Dependency version bumps | | | AGENTS.md changes agents should adopt | |

Rule of thumb: if a project that forked this template has almost certainly replaced the file already, do not mention it.

# vMAJOR.MINOR.PATCH — 

Released: YYYY-MM-DD

## Breaking Changes

None

## New Features

None

## Improvements

None

## Bug Fixes

None

## Dependency Updates

None

## Upgrade Instructions

Step-by-step for a project that already uses a previous version of this template.

1. Copy changed shared files / snippets as described in each section above.
2. Update any env vars listed under Breaking Changes.
3. Run `mise run configure` if new env vars were added.

Step 3 — Bump TEMPLATE_VERSION

Update the TEMPLATE_VERSION file (single line, no v prefix):

echo "MAJOR.MINOR.PATCH" > TEMPLATE_VERSION

Step 4 — Commit and tag

Stage everything, commit, then create an annotated tag:

git add TEMPLATE_VERSION .agents/skills/template-upgrade/vMAJOR.MINOR.PATCH.md
git add -A   # any other changed files in the release
git commit -m "release: vMAJOR.MINOR.PATCH"
git tag -a vMAJOR.MINOR.PATCH -m "vMAJOR.MINOR.PATCH — "
git push origin main --follow-tags

Step 5 — Publish GitHub release

gh release create vMAJOR.MINOR.PATCH \
  --title "vMAJOR.MINOR.PATCH — " \
  --notes-file .agents/skills/template-upgrade/vMAJOR.MINOR.PATCH.md

Rules

  • Never skip the upgrade notes. Projects forking this template rely on them to know what to pull in.
  • Upgrade notes cover shared infrastructure only. App scaffold files (mobile/app/, example screens, demo Maestro flows) are replaced by consuming projects — never mention them in upgrade notes.
  • Never force-push a tag. Create a new patch release instead.
  • One release per PR. Do not bundle multiple feature sets into a single release if they serve different purposes — prefer smaller, focused releases.
  • The TEMPLATE_VERSION file is the single source of truth. Do not derive the version from package.json or any other file.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.