Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
$ git log --oneline --stat
stars:175
forks:8
updated:2026年3月23日 13:19
SKILL.md
| name | typescript-inline-scripts |
| description | Guide for running inline TypeScript scripts with Bun |
bun run --install=fallback - < <(cat <<'EOF'
import { z } from 'zod'
console.log(z.coerce.number().parse('5'))
EOF
)
Bun.spawn() - Process spawning and managementBun.file() - File system operations and readingBun.write() - File writing operationsfetch() - HTTP requests (Web API standard)Bun.preconnect() - URL preconnection for performanceBun.file(path) - Create file handle for reading/writingawait Bun.file(path).text() - Read file as textawait Bun.file(path).json() - Read file as JSONawait Bun.file(path).arrayBuffer() - Read file as ArrayBufferawait Bun.write(path, data) - Write data to fileimport { $ } from 'bun'
await $`command` // Execute shell commands with template literals
const result = await $`ls -la` // Capture command output
Bun.gzipSync() - Synchronous gzip compressionBun.gunzipSync() - Synchronous gzip decompressionBun.inflateSync() - Synchronous deflate decompressionimport { Database } from 'bun:sqlite'
// Database operations and SQL execution
import { dlopen, CString } from 'bun:ffi'
// Native library interaction
Bun.escapeHTML() - HTML escapingBun.hash() - Hashing functionsBun.password.hash() - Password hashingBun.password.verify() - Password verificationnode: importsimport { createRequire } from 'node:module'