create-project-update

Create Project Update

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "create-project-update" with this command: npx skills add show-karma/skills/show-karma-skills-create-project-update

Create Project Update

Post a progress update on an existing project. This creates a ProjectUpdate attestation referencing the project.

See Agent API Reference for auth, base URL, and error handling.

Prerequisite

If KARMA_API_KEY is not set in the environment, invoke the /setup-agent skill first, then continue with this skill.

Required Information

Field Required Description

chainId

Yes Chain where the project lives

projectUID

Yes The project's attestation UID

title

Yes Update title (1-200 chars)

text

Yes Update content (1-10000 chars)

Finding the Project UID

If the user knows the project name but not the UID:

curl -s "${BASE_URL}/v2/projects?q=PROJECT_NAME&limit=5&page=1" | python3 -c " import sys, json data = json.load(sys.stdin) for p in data.get('payload', []): d = p.get('details', {}) print(f'Title: {d.get("title", "N/A")} | Chain: {p["chainID"]} | UID: {p["uid"]}') "

Natural Language Mapping

User says Action

"post an update on project X" Look up X's UID, ask for title and text

"update project X: we shipped feature Y" Look up X, use "Feature Y shipped" as title, expand text

"progress report for 0xabc..." Use UID directly, ask for title and text

"tell them we completed phase 1" Ask which project, use as update content

Making the Request

BASE_URL="${KARMA_API_URL:-https://gapapi.karmahq.xyz}"

curl -s -X POST "${BASE_URL}/v2/agent/execute"
-H "Content-Type: application/json"
-H "x-api-key: ${KARMA_API_KEY}"
-d '{ "action": "createProjectUpdate", "params": { "chainId": 10, "projectUID": "0x1234...abcd", "title": "Q1 2026 Progress Report", "text": "We shipped the v2 protocol with 3 new features..." } }'

After Success

Display the result using the standard output format. The update will be automatically indexed by the system.

Edge Cases

Scenario Response

Project name given instead of UID Look up the UID via the projects API

No title provided Generate a sensible title from the text content

Very long text (>10000 chars) Summarize or truncate, confirm with user

Project not found "Could not find that project. Check the name or provide the UID."

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

skill-creator

No summary provided by upstream source.

Repository SourceNeeds Review
General

find-funding-opportunities

No summary provided by upstream source.

Repository SourceNeeds Review
General

find-opportunities

No summary provided by upstream source.

Repository SourceNeeds Review
General

create-grant-update

No summary provided by upstream source.

Repository SourceNeeds Review