원클릭으로
civic-institution
Track institutional encounters, procedural justice, legitimacy, compliance, service access, and civic trust.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Track institutional encounters, procedural justice, legitimacy, compliance, service access, and civic trust.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Assess what actions are realistically available under environment, time, distance, access, money, body, and social constraints.
Maintain sleep-wake rhythm, circadian alertness, appetite rhythm, and chronotype-sensitive daily timing.
Produce emotion.json and intention.json from workspace context.
Model conversation intent, speech style, turn-taking, listening, repair, and nonverbal cues. Use before or after social interaction, dialogue, negotiation, apology, request, gossip, or conflict.
Apply cultural values, etiquette, rituals, symbols, taboos, and local meaning to perception and decisions.
Track sickness, pain, chronic condition, recovery, exercise, stress load, and long-term wellbeing.
| name | civic_institution |
| description | Track institutional encounters, procedural justice, legitimacy, compliance, service access, and civic trust. |
| script | scripts/update_civic_institution.py |
Model how agents interact with institutions such as government offices, schools, hospitals, courts, police, employers, landlords, banks, and public services. Institutions shape compliance, trust, rights, obligations, access, and stress.
Research basis: references/research_basis.md.
Read observation, norms, economy, identity, relationships, health, and prior institution state, then update institutional trust, procedural justice, access barriers, compliance pressure, and service outcomes in state/institutions.json.
Use when the agent encounters bureaucracy, public services, policing, school rules, workplace authority, healthcare systems, legal obligations, welfare benefits, voting, permits, debt collection, rent, or institutional discrimination.
state/observation.txt, state/norms.json, state/economy.json, state/identity.json, state/health.json, state/relationships.json, and state/institutions.json if present.state/institutions.json.state/institution_events.jsonl for high-stakes encounters.If deterministic baseline is preferred:
python skills/civic_institution/scripts/update_civic_institution.py --state-dir state --tick 120
Procedural justice is treated as a major driver of legitimacy:
procedural_justice = voice + neutrality + respect + trustworthy_motives
legitimacy_next = legitimacy + learning_rate * (procedural_justice - legitimacy)
Access barriers raise stress and lower perceived control:
access_barrier = cost + paperwork + wait_time + discrimination_risk + transport_or_health_limit
Always write state/institutions.json.
{
"_meta": {
"skill": "civic_institution",
"purpose": "Current institutional trust, access, obligations, and compliance context."
},
"_summary": "Hospital access is possible but waiting and cost barriers are high.",
"active_institution": "hospital",
"role": "patient",
"procedural_justice": 0.58,
"legitimacy": 0.62,
"institutional_trust": {
"hospital": 0.62,
"police": 0.41,
"employer": 0.55
},
"access_barriers": {
"cost": 0.46,
"paperwork": 0.31,
"wait_time": 0.72,
"discrimination_risk": 0.12,
"transport_or_health_limit": 0.2
},
"compliance_pressure": 0.68,
"rights_or_entitlements": ["ask for explanation"],
"obligations": ["wait for registration"],
"service_outcome": "pending"
}