スキル一覧に戻る
JordanGunn

prompt

by JordanGunn

[DEPRECATED] Collection of agent skills (mostly) targeted at preventing typical issues that surface during agentic programming sessions.

6🍴 1📅 2026年1月13日
GitHubで見るManusで実行

SKILL.md


name: prompt description: > Orchestrator skill for the prompt skillset. Dispatches to member skills in a safe, predictable order. Separates intent formation from execution to protect humans from premature or misaligned execution. metadata: author: Jordan Godau version: 0.1.0

skillset: name: prompt schema_version: 1 skills: - prompt-forge - prompt-exec

resources:
  root: .prompt-forge
  assets: []
  scripts: []
  references: []

pipelines:
  default:
    - prompt-forge
    - prompt-exec
  allowed:
    - [prompt-forge]
    - [prompt-exec]
    - [prompt-forge, prompt-exec]

requires: []

Prompt Skillset

We forge prompts collaboratively, and we execute them deliberately.

Philosophy

This skillset assumes:

  • Human intent is discovered, not known upfront
  • Conversation is not state
  • Disk state is authoritative
  • Execution is irreversible and requires explicit consent

Core Invariants

1. Conversation is not state

The agent must not assume continuity or memory across turns. All durable state lives on disk. The agent may only read or modify state inside an explicit skill invocation.

Conversation is not state. Disk is state. Skills are the only legal state transitions.

2. Single canonical prompt on disk

There may be at most one active prompt artifact at any time.

Canonical path: .prompt-forge/active.yaml

3. Execution is destructive

After a successful prompt-exec:

  • The canonical prompt artifact must be deleted
  • The system must return to a "no active prompt" state

4. Optional execution receipts

To preserve auditability without violating single-prompt rules:

  • prompt-exec may write an execution receipt
  • Receipts are immutable and never executable

Receipt location: .prompt-forge/receipts/<timestamp>-<hash>.yaml

Member Skills

SkillPurpose
prompt-forgeShape, refine, and stabilize intent into the canonical prompt artifact
prompt-execExecute the forged prompt exactly as written

No other prompt-related skills are permitted.

スコア

総合スコア

70/100

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

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

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