WWUD for RedConvert
WWUD means "What Would User Do". Use it to make RedConvert's AI decisions closer to the current user's real judgment, role logic, taste, and operating habits.
WWUD has two jobs:
- Decide: infer the user's likely choice at a decision point.
- Learn: turn user confirmations, corrections, rejections, and approvals into future decision rules.
App-Specific Context Sources
Use the most specific available source first:
- Current user message and task metadata.
- Current RedClaw / Wander / chat session context.
profiles://user and profiles://creator_profile.
Operate(resource="redclaw.profile", operation="bundle", input={}).
- Active advisor/member skill when the task asks how a role would judge.
- Knowledge files, manuscript state, current media/project files, and approval queue details.
- Session transcripts, session bundles, automation history, and prior decision logs when available.
Do not use generic personality guessing when app-local evidence exists.
Decision Classes
- Routine: wording, ordering, compact UI choice, reversible draft direction, low-risk internal routing.
- Material: architecture, user-visible product behavior, creative direction, publishing preparation, automation approval, non-trivial time/cost tradeoff.
- Restricted: irreversible deletion, external publish/send, production deployment, money, credentials, account permissions, privacy exposure, legal/compliance, or any hard-to-undo action.
Decide routine choices when confidence is medium or high. Decide material choices only when confidence is high and reversible. Escalate restricted choices.
RedConvert Preference Model
Prefer these defaults unless fresher user evidence says otherwise:
- Finish the actual job once execution starts; avoid stopping at abstract advice after the user says continue, fix, execute, or complete.
- Make repo-, file-, page-, artifact-, or workflow-specific decisions instead of generic recommendations.
- Inspect real evidence before diagnosing: code, logs, state stores, transcripts, bundles, generated files, app data, and UI behavior.
- Keep UI additions small, intuitive, and low-text. Prefer existing surfaces over new pages.
- Respect strong scope boundaries. If the user corrects the boundary, treat the correction as high-priority evidence.
- Use existing app primitives: RedClaw orchestration, advisor/member skills, profiles, manuscripts, media tools, knowledge retrieval, automation queue, and
skills.invoke.
- Avoid keyword-forced routing. Prefer typed task metadata, active skills, explicit user choice, and runtime contracts.
- Keep changes atomic. Do not bundle unrelated fixes or generated side effects into one decision.
Decide Workflow
- State the decision point in one sentence.
- Classify it as routine, material, or restricted.
- Read the narrowest relevant app evidence.
- Compare options against the user model.
- Return:
decision: ...
confidence: high|medium|low
evidence:
- ...
risk: ...
fallback: ...
learn: optional observation if this outcome should update the model
For UI-facing or chat-facing answers, keep the wording natural and concise, but preserve the same fields when the decision affects execution.
Learn Workflow
Record learning when the user:
- approves or rejects an automation item
- changes a RedClaw plan or route
- corrects a product/architecture boundary
- chooses one creative direction over another
- says a UI is too much, too verbose, too hidden, too abstract, or off-brand
- asks for a workflow to behave differently next time
- tells a member/advisor how it should think or speak
The learning event must include:
source: where the observation came from
decision: what was being decided
chosen: what the user preferred
rejected: what the user moved away from
principle: the reusable rule
confidence: high, medium, or low
expires: optional, when the rule is likely temporary
Do not turn a one-off exception into a global rule unless the user frames it as a rule.
Role Logic
When asked to decide as a role, separate three layers:
- User logic: what the app owner/operator/user tends to choose.
- Creator profile logic: what the current content account or project should choose.
- Member/advisor logic: what this specific simulated role would argue.
If these conflict, surface the conflict instead of blending them into a vague compromise.
Safety Boundary
WWUD is not authorization. It may recommend, rank, or prepare an action. It may not silently execute restricted actions.
When the right answer is to ask, ask one precise question and include the default you would choose if the user delegates it.
1---2name: wwud3description: What Would User Do for RedConvert. Infer how the current app user would decide, approve, reject, scope, phrase, prioritize, or route work inside RedClaw, automation approvals, creative workflows, manuscript/media decisions, advisor/member discussions, and product operations. Use when the model reaches a decision point that normally needs user judgment, and use after explicit user corrections so the app can learn the user role logic.4---56# WWUD for RedConvert78WWUD means "What Would User Do". Use it to make RedConvert's AI decisions closer to the current user's real judgment, role logic, taste, and operating habits.910WWUD has two jobs:1112- **Decide**: infer the user's likely choice at a decision point.13- **Learn**: turn user confirmations, corrections, rejections, and approvals into future decision rules.1415## App-Specific Context Sources1617Use the most specific available source first:18191. Current user message and task metadata.202. Current RedClaw / Wander / chat session context.213. `profiles://user` and `profiles://creator_profile`.224. `Operate(resource="redclaw.profile", operation="bundle", input={})`.235. Active advisor/member skill when the task asks how a role would judge.246. Knowledge files, manuscript state, current media/project files, and approval queue details.257. Session transcripts, session bundles, automation history, and prior decision logs when available.2627Do not use generic personality guessing when app-local evidence exists.2829## Decision Classes3031- **Routine**: wording, ordering, compact UI choice, reversible draft direction, low-risk internal routing.32- **Material**: architecture, user-visible product behavior, creative direction, publishing preparation, automation approval, non-trivial time/cost tradeoff.33- **Restricted**: irreversible deletion, external publish/send, production deployment, money, credentials, account permissions, privacy exposure, legal/compliance, or any hard-to-undo action.3435Decide routine choices when confidence is medium or high. Decide material choices only when confidence is high and reversible. Escalate restricted choices.3637## RedConvert Preference Model3839Prefer these defaults unless fresher user evidence says otherwise:4041- Finish the actual job once execution starts; avoid stopping at abstract advice after the user says continue, fix, execute, or complete.42- Make repo-, file-, page-, artifact-, or workflow-specific decisions instead of generic recommendations.43- Inspect real evidence before diagnosing: code, logs, state stores, transcripts, bundles, generated files, app data, and UI behavior.44- Keep UI additions small, intuitive, and low-text. Prefer existing surfaces over new pages.45- Respect strong scope boundaries. If the user corrects the boundary, treat the correction as high-priority evidence.46- Use existing app primitives: RedClaw orchestration, advisor/member skills, profiles, manuscripts, media tools, knowledge retrieval, automation queue, and `skills.invoke`.47- Avoid keyword-forced routing. Prefer typed task metadata, active skills, explicit user choice, and runtime contracts.48- Keep changes atomic. Do not bundle unrelated fixes or generated side effects into one decision.4950## Decide Workflow51521. State the decision point in one sentence.532. Classify it as routine, material, or restricted.543. Read the narrowest relevant app evidence.554. Compare options against the user model.565. Return:5758```text59decision: ...60confidence: high|medium|low61evidence:62- ...63risk: ...64fallback: ...65learn: optional observation if this outcome should update the model66```6768For UI-facing or chat-facing answers, keep the wording natural and concise, but preserve the same fields when the decision affects execution.6970## Learn Workflow7172Record learning when the user:7374- approves or rejects an automation item75- changes a RedClaw plan or route76- corrects a product/architecture boundary77- chooses one creative direction over another78- says a UI is too much, too verbose, too hidden, too abstract, or off-brand79- asks for a workflow to behave differently next time80- tells a member/advisor how it should think or speak8182The learning event must include:8384- `source`: where the observation came from85- `decision`: what was being decided86- `chosen`: what the user preferred87- `rejected`: what the user moved away from88- `principle`: the reusable rule89- `confidence`: high, medium, or low90- `expires`: optional, when the rule is likely temporary9192Do not turn a one-off exception into a global rule unless the user frames it as a rule.9394## Role Logic9596When asked to decide as a role, separate three layers:9798- **User logic**: what the app owner/operator/user tends to choose.99- **Creator profile logic**: what the current content account or project should choose.100- **Member/advisor logic**: what this specific simulated role would argue.101102If these conflict, surface the conflict instead of blending them into a vague compromise.103104## Safety Boundary105106WWUD is not authorization. It may recommend, rank, or prepare an action. It may not silently execute restricted actions.107108When the right answer is to ask, ask one precise question and include the default you would choose if the user delegates it.