スキル一覧に戻る
glitternetwork

pinme

by glitternetwork

pinmeは、other分野における実用的なスキルです。複雑な課題への対応力を強化し、業務効率と成果の質を改善します。

2,601🍴 187📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: pinme version: 1.0.0 description: This skill should be used when the user asks to "deploy", "upload", "publish", or "pin" any files, folders, frontend projects, or static websites to IPFS. Also activates when user mentions "pinme", "IPFS", or wants to share files via decentralized storage. author: name: glitternetwork url: https://github.com/glitternetwork homepage: https://github.com/glitternetwork/skills/tree/main/pinme repository: https://github.com/glitternetwork/skills license: MIT keywords:

  • deploy
  • ipfs
  • upload
  • files
  • pinme
  • hosting
  • frontend
  • web3
  • storage

PinMe Skill

Use PinMe CLI to upload files to IPFS and get a preview URL.

When to Use

General File Upload

  • User wants to upload any files or folders to IPFS
  • User wants to share files via decentralized storage
  • User mentions "pinme", "pin", "IPFS", or "upload to IPFS"

Website Deployment

  • User requests deployment of a frontend project
  • User wants to deploy a static website
  • After building a frontend project (Vue, React, Next.js, etc.)

Upload Steps

1. Check if PinMe is Installed

pinme --version

If not installed:

npm install -g pinme

2. Identify Upload Target

For general files:

  • Use the file or directory path specified by the user
  • Can be any file type: images, documents, archives, etc.

For website deployment: Look for build output directories (in priority order):

  1. dist/ - Vue/React/Vite default output
  2. build/ - Create React App output
  3. out/ - Next.js static export
  4. public/ - Pure static projects

3. Execute Upload

pinme upload <path>

Examples:

# Upload a single file
pinme upload ./document.pdf

# Upload a folder
pinme upload ./my-folder

# Upload website build output
pinme upload dist

4. Return Result

After successful upload, return the preview URL:

https://pinme.eth.limo/#/preview/<hash>

Users can visit the preview page to:

  • View or download the uploaded files
  • Get a fixed domain: https://<name>.pinit.eth.limo

Important Rules

DO:

  • Verify the file or directory exists before uploading
  • Return the preview URL to the user

DO NOT:

  • Upload node_modules/
  • Upload .env files
  • Upload .git/ directory
  • Upload empty or non-existent paths

For website deployment, also avoid:

  • Uploading source code instead of build output
  • Uploading configuration files (package.json, tsconfig.json, etc.)

Common Workflows

General File Upload

# Upload a single file
pinme upload ./image.png

# Upload a folder
pinme upload ./my-documents

# Upload with specific path
pinme upload /path/to/files

Website Deployment

Vue/Vite

npm run build
pinme upload dist

React CRA

npm run build
pinme upload build

Next.js Static

npm run build
npm run export  # or next export
pinme upload out

Error Handling

ErrorSolution
command not found: pinmeRun npm install -g pinme
No such file or directoryCheck path exists
Permission deniedCheck file/folder permissions
Upload failedCheck network, retry

Other Commands

# List upload history
pinme list
pinme ls -l 5

# Remove uploaded file
pinme rm <hash>

スコア

総合スコア

85/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 1000以上

+15
最近の活動

1ヶ月以内に更新

+10
フォーク

10回以上フォークされている

+5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

+5

レビュー

💬

レビュー機能は近日公開予定です