Install
$ agentstack add skill-betahope-founding-team-cofounder-team-upgrade ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →About
Upgrade the cofounder-team skills
When the user asks to upgrade, do exactly this. Do not edit any files. Only run shell commands.
- Set the repo folder. Default is
~/.cofounder-team. If that folder does not exist, ask the user where they cloned the repo and use that path instead for the rest of the steps.
- Record the current version so we can show the user what changed:
`` git -C ~/.cofounder-team rev-parse HEAD ` Remember this value as OLD`.
- Pull the latest version:
`` git -C ~/.cofounder-team pull ``
- Re-run the installer so the skills are rebuilt and linked into
~/.claude/skills/:
`` bash ~/.cofounder-team/setup ` setup now compiles the source into the finished skills first (a plain-bash build, no extra tools to install), then links the Claude Code build. The build runs automatically as part of setup; there is no separate command. This is why an upgrade always re-links: it repoints each skill in ~/.claude/skills/` at the freshly built version, even for users who installed before the build step existed.
- Show what changed since
OLD. First the curated changelog, then the raw commit log as a fallback.
Changelog diff (this is the human-readable summary of what shipped): `` git -C ~/.cofounder-team diff OLD..HEAD -- CHANGELOG.md ` If the user was on a version before CHANGELOG.md` existed (anything older than v0.2.0), the diff will show the whole changelog as added. That is correct: everything in it is new to them.
Raw commit log (covers anything not captured in the changelog): `` git -C ~/.cofounder-team log --oneline OLD..HEAD ` (Replace OLD` with the value from step 2 in both commands.)
If there are no new commits, tell the user they are already up to date.
- Tell the user the new version and to start a new Claude Code session so the updated skills load. Read the version from
~/.cofounder-team/VERSIONif it exists; otherwise just tell them to restart.
That is the entire upgrade workflow. Do not run additional commands, do not edit files, do not modify anything outside ~/.cofounder-team and ~/.claude/skills/.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: betahope
- Source: betahope/founding-team
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.