Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
endorphin-ai
GitHub 제작자 프로필

endorphin-ai

3개 GitHub 저장소에서 수집된 31개 skills를 저장소 단위로 보여줍니다.

수집된 skills
31
저장소
3
업데이트
2026-07-03
저장소 탐색

저장소와 대표 skills

backend-mean
소프트웨어 개발자

Node.js + Express + MongoDB backend development for MEAN stack apps. Use when implementing server code: models, routes, controllers, middleware, config, and database connections.

2026-02-22
code-review-mean
소프트웨어 품질 보증 분석가·테스터

Code review for MEAN stack apps. Use when reviewing backend (Express + MongoDB) and frontend (React) code for quality, security, architecture compliance, performance, and best practices.

2026-02-22
express-api-mean
소프트웨어 개발자

Express.js API architecture for MEAN stack apps. Use when designing REST endpoints, middleware chains, authentication flows, error handling contracts, and request/response schemas.

2026-02-22
frontend-mean
소프트웨어 개발자

React frontend development for MEAN stack apps. Use when implementing React components, pages, hooks, API integration, routing, state management, and responsive UI.

2026-02-22
mongodb-mean
데이터베이스 아키텍트

MongoDB database architecture for MEAN stack apps. Use when designing collections, schemas, indexes, relationships, and data modeling with Mongoose ODM.

2026-02-22
pm-mean
프로젝트 관리 전문가

Product management for MEAN stack apps. Use when writing PRDs, defining features, acceptance criteria, or reviewing deliverables for MongoDB + Express + React + Node.js projects.

2026-02-22
qa-backend-mean
소프트웨어 품질 보증 분석가·테스터

Backend testing for MEAN stack apps. Use when writing and running tests for Express API endpoints, MongoDB operations, authentication flows, and middleware using Jest and Supertest.

2026-02-22
qa-frontend-mean
소프트웨어 품질 보증 분석가·테스터

Frontend testing for MEAN stack React apps. Use when writing and running tests for React components, pages, hooks, user interactions, routing, and API integration using Jest, React Testing Library, and MSW.

2026-02-22
이 저장소에서 수집된 skills 16개 중 상위 8개를 표시합니다.
docs-project-management
프로젝트 관리 전문가

Universal, project-agnostic playbook for managing an ENTIRE project inside the repo's docs/ folder — the docs/-native system of record, reusable in any project, new or existing, with no external issue tracker. Defines WHAT it manages: the work-item TAXONOMY (Roadmap → docs/ROADMAP.md + docs/roadmap.json, PRD → docs/prd/, TRD → docs/trd/, Epic → docs/epics/, User Story → docs/user_stories/, Test Case → docs/test_cases/, Bug → docs/bugs/, per-session team reports → docs/sessions/, feature work-log → docs/reports/), the cross-document LINK GRAPH written as relative-markdown links (User Story part-of Epic; Test Case is-tested-by User Story; Bug blocks its story; PRD↔TRD), the YAML-frontmatter STATUS lifecycle + the bookend rule (transition status: forward before starting work, again when done), required frontmatter fields, the mandatory Test Case Template and the Bug+RCA report format, the TEAM WORK-REPORTING convention (one session folder per run; every agent bookends a start/completion report there + appends to

2026-07-03
four-principles
소프트웨어 개발자

Four always-on engineering principles for ALL work before, during, and after coding — Think Before Coding (surface assumptions/tradeoffs, never guess silently), Simplicity First (minimum code that solves it, nothing speculative), Surgical Changes (touch only what the request needs, every changed line traces to the ask), and Goal-Driven Execution (define verifiable success criteria, loop until verified). Use on EVERY task that writes, edits, refactors, or fixes code, designs an approach, or interprets a request — not just large features.

2026-07-03
system-architecture
소프트웨어 개발자

Use when designing a system, choosing an architecture pattern, making a technology decision, or doing capacity/scalability planning — BEFORE drilling into framework-specific mechanics. A lean MAP over three reference docs: pattern selection (monolith → modular monolith → microservices → event-driven → CQRS → event sourcing → hexagonal → clean → API gateway, with trade-offs), the how-to system-design workflows (system-design-interview approach, capacity planning, API design, DB schema design, scalability assessment, migration planning), and the technology-choice frameworks (database, caching, message queue, auth, frontend framework, cloud provider, API style). Trigger on: 'design the system', 'choose an architecture pattern', 'which pattern fits', 'tech decision', 'SQL or NoSQL', 'REST vs GraphQL vs gRPC', 'capacity/scalability planning', 'plan the migration'. This is general system-design knowledge; for Phoenix bounded-context/Ecto/authz/Oban specifics use the architecture-phx skill.

2026-07-03
test-driven-development
소프트웨어 품질 보증 분석가·테스터

Use when implementing any feature or bugfix, in any language or framework, before writing implementation code — write the test first, watch it fail, then write minimal code to pass. Covers the red-green-refactor loop, test-quality principles, rationalization counters, and test-layer selection.

2026-07-03
soc-media-writer
기술 작가

Write high-performing social media content engineered around named copywriting frameworks, scroll-stopping hooks, and retention mechanics. For video it produces three coordinated outputs — the spoken DIALOGUE (voiceover), the VIDEO SCENARIO (timed two-column shot list with visual cues), and the EXPLANATION (notes on the frameworks, hook, and retention beats used) — plus standalone written posts for LinkedIn, X, Instagram, and YouTube. Use whenever the user wants a social post, a Reel/Short/TikTok script, a video scenario or shot list, a hook or hook bank, a content matrix, a Hub-and-Spoke repurposing plan, a VSL, or any short- or long-form distribution content. Trigger even on casual asks like "write me a Reel about X," "give me hooks for Y," "script a 30-second video," "make this go viral," "write a LinkedIn post," or "turn this into TikToks." Also trigger when the user wants retention engineered in (e.g. "keep them watching," "re-hook every N seconds," "high retention script").

2026-07-03
build-brain
소프트웨어 개발자

Turn a skill or raw data into an AI-optimized "second brain" skill — a lean SKILL.md map backed by atomized, tagged references and JSON navigation maps. Analyzes the source, triple-checks, and writes a before/after improvement report.

2026-07-03
pipeline-state
소프트웨어 개발자

Durable, file-backed pipeline handoff BUS for the WHOLE squad (all worker agents + el-capitan). Persists per-run variables, per-phase outputs, and `.ai_log/` evidence-PATH references to a PER-SESSION, git-ignored JSON file under `.ai_log/` (`.ai_log/session-<id>-<name>.json`, one per run) that survives context compression; cleans stale `.ai_log/` artifacts on init. On phase START, READ it to pull this phase's inputs (key fields + evidence paths); on phase COMPLETION, WRITE this phase's outputs (key result fields + `.ai_log/` paths — never large inlined blobs). The standing pattern (R17): evidence -> `.ai_log/`; references + key fields -> pipeline-state; handoffs = state lookups, not inlined dumps. Coexists with the docs/ reports (R7/R8, the human record) + the `.ai_log/` offload (R15). Originally built for the e2e-test-healer; now squad-wide. Use for ANY cross-phase handoff.

2026-07-03
prompt-expert
기타 컴퓨터 관련 직업

Expert prompt engineer that interviews users and builds high-quality prompts for any AI (Claude, Gemini, Copilot, ChatGPT, etc.). Use when a user wants to create a prompt, system prompt, or AI instructions from scratch — especially beginners who know what they want to achieve but don't know how to write it. Trigger on: "help me write a prompt", "make me a prompt for...", "I want AI to do X", "build me a system prompt", "how do I ask AI to...", "create instructions for...", or any time the user describes a goal they want an AI to accomplish. Always interviews the user before writing anything. Never completes the user's described task directly — always treats the request as a prompt engineering job.

2026-07-03
이 저장소에서 수집된 skills 9개 중 상위 8개를 표시합니다.
brainstorming
프로젝트 관리 전문가

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation. Produces a validated design doc, then invokes writing-plans.

2026-02-27
context-map
소프트웨어 개발자

Generate a comprehensive map of all files relevant to a task before making any changes. Use when about to implement features, fix bugs, or refactor code — maps files to modify, dependencies, tests, reference patterns, and risk assessment.

2026-02-27
skill-creator
소프트웨어 개발자

Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.

2026-02-27
tasklang
소프트웨어 개발자

TaskLang pseudocode language for AI agent prompting. Use when writing, reviewing, or refactoring agent definitions, skill playbooks, commands, workflow pipelines, or project rules in TaskLang syntax.

2026-02-27
tool-creation
소프트웨어 개발자

Create tools on the fly — Bash scripts, Python scripts, Node.js scripts, or request MCP server/CLI installation — when the agent identifies a capability gap. Use when a task requires a tool that doesn't exist yet, or when an MCP server or CLI tool would solve the problem better than manual steps.

2026-02-27
what-context-needed
소프트웨어 개발자

Before answering any question or starting any task, identify what files and context are needed for an accurate, complete response. Use when the agent needs to understand what it doesn't know yet — the meta-cognitive 'stop and think' gate.

2026-02-27
저장소 3개 중 3개 표시
모든 저장소를 표시했습니다