Skills Plugins MCP Prompt Model 博客 我的中心
生活とツール #api #ai #agent

project-manager

Manage projects, grants, milestones, and updates on the Karma protocol. Use when user says "create a project", "new project", "add a grant", "record funding", "add milestone", "complete milestone", "post an update", "project progress", "grant update", "update project", "edit project", "edit grant", "complete grant", "add roadmap milestone", "report impact", "endorse project", "add team member", "set up agent", "configure API key", or any on-chain project management action.

DeepseekModel キュレーション済みスキル 品質 優秀 · 90 v1.0.0

取得

https://deepseekmodel.com/api/download.php?id=leoyeai-openclaw-master-skills-skills-karma-project-manager-skill-md&format=skill
ダウンロード .skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name project-manager description Manage projects, grants, milestones, and updates on the Karma protocol. Use when user says "create a project", "new project", "add a grant", "record funding", "add milestone", "complete milestone", "post an update", "project progress", "grant update", "update project", "edit project", "edit grant", "complete grant", "add roadmap milestone", "report impact", "endorse project", "add team member", "set up agent", "configure API key", or any on-chain project management action. version 2.0.0 tags ["agent","project","grant","milestone","update","create","manage","impact","endorsement","members"] metadata {"author":"Karma","category":"on-chain"} Project Manager Manage projects, grants, milestones, and updates on the Karma protocol. All actions create on-chain attestations via a single API. Full API docs: https://gapapi.karmahq.xyz/v2/docs/static/index.html BASE_URL= " ${KARMA_API_URL:-https://gapapi.karmahq.xyz} " API_KEY= " ${KARMA_API_KEY} " INVOCATION_ID=$(uuidgen) CRITICAL: Every curl call must include these tracking headers: -H "X-Source: skill:project-manager" -H "X-Invocation-Id: $INVOCATION_ID " -H "X-Skill-Version: 2.0.0" Setup If KARMA_API_KEY is already set, skip to Verify . Otherwise use the AskUserQuestion tool with these options: Question: "You need a Karma API key to continue. How would you like to set it up?" Options: ["Quick start — Generate instantly (no account needed)", "Email login — Link to existing Karma account", "I already have a key"] Quick Start (No Account Needed) curl -s -X POST " ${BASE_URL} /v2/agent/register" \ -H "Content-Type: application/json" \ -H "X-Source: skill:project-manager" -H "X-Invocation-Id: $INVOCATION_ID " -H "X-Skill-Version: 2.0.0" \ -d '{}' Returns { "apiKey": "karma_..." } — shown only once. Important : Always send -d '{}' — an empty body causes a 400 error. Email Login Ask for email POST ${BASE_URL}/v2/api-keys/auth/init with { "email": "..." } Ask for code → POST ${BASE_URL}/v2/api-keys/auth/verify with { "email": "...", "code": "...", "name": "claude-agent" } Returns { "key": "karma_..." } Error Action 400 Invalid or expired code Ask to recheck or request new code 409 Active key already exists Use existing key or revoke from website Save API Key After obtaining the key (from quick start, email login, or user pasting it), ask permission to save it permanently: Would you like me to save your API key to your shell config so you don't have to paste it every time? If yes, detect the user's shell and append the export: # Detect shell config file if [ -f " $HOME /.zshrc" ]; then SHELL_RC= " $HOME /.zshrc" elif [ -f " $HOME /.bashrc" ]; then SHELL_RC= " $HOME /.bashrc" fi # Append only if not already present grep -q 'KARMA_API_KEY' " $SHELL_RC " || echo '\n# Karma API Key\nexport KARMA_API_KEY="karma_..."' >> " $SHELL_RC " # Also export for current session export KARMA_API_KEY= "karma_..." If the key already exists in the file, replace the old value instead of appending a duplicate. If the user declines, just set it for the current session: export KARMA_API_KEY= "karma_..." Verify curl -s " ${BASE_URL} /v2/agent/info" \ -H "x-api-key: ${API_KEY} " \ -H "X-Source: skill:project-manager" -H "X-Invocation-Id: $INVOCATION_ID " -H "X-Skill-Version: 2.0.0" If response includes walletAddress and supportedActions → ready. Do NOT show wallet/chain details to the user. Tell them: Your Karma agent is ready! You can now create projects, grants, milestones, and post updates. Execute Endpoint All actions use: curl -s -X POST " ${BASE_URL} /v2/agent/execute" \ -H "Content-Type: application/json" \ -H "x-api-key: ${API_KEY} " \ -H "X-Source: skill:project-manager" -H "X-Invocation-Id: $INVOCATION_ID " -H "X-Skill-Version: 2.0.0" \ -d '{ "action": "<ACTION>", "params": { ... } }' Success Output [Action] completed successfully! - Project: {title} - Chain: {chainName} ({chainId}) - Transaction: {transactionHash} Supported Chains Chain ID Arbitrum 42161 Base 8453 Celo 42220 Lisk 1135 Optimism 10 Polygon 137 Scroll 534352 Sei 1329 Testnets Base Sepolia 84532 OP Sepolia 11155420 Default Chain Behavior When the user does NOT specify a chain, default to Base (8453) and confirm: Your project will be created on Base . Continue? Yes Choose another chain : Arbitrum, Base, Celo, Lisk, Optimism, Polygon, Scroll, Sei Chain Inheritance Child attestations must use the same chain as their parent: Grant → uses project.chainId Grant Update → uses grant.chainId Update Grant Details → uses grant.chainId Complete Grant → uses grant.chainId Milestone → uses grant.chainId Complete Milestone → uses milestone.chainId Project Update → uses project.chainId Project Milestone → uses project.chainId Project Impact → uses project.chainId Endorse Project → uses project.chainId Add Members → uses project.chainId Look up the parent's chain from the API — never ask the user for a chain on child attestations. Actions createProject Param Required Description chainId Yes Blockchain ID (default: Base 8453) title Yes Project name (1-200 chars) description Yes Project description (1-5000 chars) Optional fields: Param Description imageURL Logo/image URL links Array of { type, url } — github, website, twitter, discord tags Array of strings (max 20) — e.g. "defi", "infrastructure" problem What problem does this project solve? (1-5000 chars) solution What is the solution? (1-5000 chars) missionSummary Brief mission statement (1-1000 chars) locationOfImpact Geographic or domain focus (1-1000 chars) businessModel How does the project sustain itself? (1-1000 chars) stageIn Development stage: Idea, MVP, Beta, Production, Growth, Mature (1-1000 chars) raisedMoney Funding raised so far (1-1000 chars) pathToTake Future roadmap (1-1000 chars) Gathering Project Information When the user wants to create a project, present all fields at once and let them fill in what they want: To create your project, provide the following. Only title and description are required — the rest helps your project stand out: Title : Project name Description : What does the project do? Problem : What problem are you solving? Solution : How does your project solve it? Mission : Sum up your mission in one sentence Stage : Idea / MVP / Beta / Production / Growth / Mature Location of Impact : Where or who does it impact? Business Model : How do you sustain the project? Funding Raised : What funding have you received? Roadmap : What's your plan ahead? Links : GitHub, website, Twitter, Discord URLs Tags : Category tags (e.g. defi, infrastructure, public-goods) Image : Logo or banner URL Include only the fields the user provides — all metadata fields are optional. After Project Creation After a successful project creation, display: Your project has been created on {chainName}! Project : {title} Chain : {chainName} ({chainId}) Transaction : {transactionHash} Want to post your first update? Share something you just built, a milestone you hit, or what's coming next. updateProjectDetails Update an existing project. Replaces all fields — fetch current details first for partial updates. Param Required Description chainId Yes Chain where the project lives projectUID Yes Project attestation UID title Yes Project name (1-200 chars) description Yes Project description (1-5000 chars) Plus all optional fields from createProject (imageURL, links, tags, problem, solution, missionSummary, locationOfImpact, businessModel, stageIn, raisedMoney, pathToTake). Important : Always include existing fields alongside changes since the update replaces everything. createProjectUpdate Post a progress update on a project. Param Required Description chainId Yes Must match project's chain projectUID Yes Project attestation UID title Yes Update title (1-200 chars) text Yes Update content (1-10000 chars) createGrant Add a grant (funding) to a project. Param Required Description chainId Yes Must match project's chain projectUID Yes Project attestation UID communityUID Yes Community attestation UID title Yes Grant title (1-200 chars) description No Grant description (1-5000 chars) amount No Funding amount (e.g. "50000 USDC") proposalURL No Link to grant proposal programId No Program ID (look up via programs API) createGrantUpdate Post a progress update on a grant. Param Required Description chainId Yes Must match grant's chain grantUID Yes Grant attestation UID title Yes Update title (1-200 chars) text Yes Update content (1-10000 chars) createMilestone Add a milestone to a grant. Param Required Description chainId Yes Must match grant's chain grantUID Yes Grant attestation UID title Yes Milestone title (1-200 chars) description Yes What will be delivered (1-5000 chars) endsAt Yes Deadline as Unix timestamp in seconds priority No Priority level (0-4)
このスキルを起動するキーワード。クリックでコピーできます。

このスキルにはトリガーワードがありません。

ダウンロードした .skill に含まれるフィールド。
フィールド 説明
formatフォーマット識別子(skill/v1)
skill_idスキル固有 ID
nameスキル名
versionバージョン
description説明
categoryカテゴリ(配列)
trigger_wordsトリガーワード
tagsタグ
sourceソース
source_urlソース URL(本ページ)
exported_atエクスポート日時(ダウンロード毎)
system_promptシステムプロンプト本文
model_configモデル設定:provider / model / temperature / max_tokens / top_p
examplesサンプル
install_guide各プラットフォームの導入説明(Coze / Dify / Claude / カスタム)
同じスキルを各プラットフォーム形式で出力できます。
.skill 標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能 ダウンロード
.skillpro 拡張形式。scripts / tools / dependencies / hooks を含む ダウンロード
.json 純粋な JSON 出力。system_prompt とモデル設定のみ ダウンロード
Coze frontmatter 付き Markdown。Coze へのインポート用 ダウンロード
Dify Dify DSL。アプリ作成後にそのままインポート ダウンロード

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。