원클릭으로
swedish-political-system
Swedish Riksdag structure, 8 parties, electoral system, government formation, coalition patterns, political culture
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Swedish Riksdag structure, 8 parties, electoral system, government formation, coalition patterns, political culture
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Master GitHub Agentic Workflows authoring - markdown syntax, natural language instructions, YAML frontmatter, compilation, and workflow patterns
Comprehensive expertise in GitHub Agentic Workflows (v0.68.1) — AI-powered repository automation with five-layer security, safe outputs, MCP tools, and Continuous AI patterns
Comprehensive guide for MCP (Model Context Protocol) server setup, transport protocols, configuration validation, lifecycle management, tool discovery, and error handling patterns
Comprehensive Hack23 threat modeling process using STRIDE, MITRE ATT&CK, attack trees, and quantitative risk assessment per ISMS Threat_Modeling.md policy
Fiscal policy, budget analysis, economic forecasting, monetary policy, trade policy for political journalists
Comprehensive guide to integrating agentic automation with GitHub Actions CI/CD pipelines, including workflow triggers, environment configuration, secrets management, matrix strategies, and deployment patterns for production-ready autonomous systems.
| name | swedish-political-system |
| description | Swedish Riksdag structure, 8 parties, electoral system, government formation, coalition patterns, political culture |
| license | Apache-2.0 |
Apply the AI FIRST principle: never accept first-pass quality. Minimum 2 iterations. Read all output, improve every section. No shortcuts.
This skill provides comprehensive knowledge of the Swedish political system, parliamentary procedures, party dynamics, electoral mechanisms, and coalition formation patterns essential for intelligence analysis in the Riksdagsmonitor platform. It enables accurate interpretation of political data, proper contextualization of voting patterns, and informed assessment of democratic accountability.
Apply this skill when:
Do NOT use for:
graph TB
subgraph "Legislative Branch"
A[Riksdagen<br/>349 Members<br/>4-year term]
A --> B[15 Standing Committees]
A --> C[Parliamentary Groups<br/>8 parties]
end
subgraph "Executive Branch"
D[Government<br/>Regering]
D --> E[Prime Minister<br/>Statsminister]
D --> F[Cabinet Ministers<br/>~22 ministers]
E --> G[11 Ministries]
end
subgraph "Judicial Branch"
H[Supreme Court<br/>Högsta Domstolen]
I[Supreme Administrative Court<br/>Högsta Förvaltningsdomstolen]
end
A -->|Elects| E
A -->|Confidence Vote| D
A -->|Legislative Control| D
D -->|Proposes Legislation| A
subgraph "Electoral System"
J[Voters] -->|Every 4 years| K[Proportional Representation<br/>4% threshold]
K --> A
end
style A fill:#e1f5ff
style D fill:#ffe6cc
style E fill:#ffeb99
style K fill:#ccffcc
Key Constitutional Principles:
Key Facts:
Current Parliamentary Composition (2022-2026):
-- Query current Riksdag composition from Riksdagsmonitor platform
SELECT
party,
COUNT(DISTINCT person_id) as seat_count,
ROUND(100.0 * COUNT(DISTINCT person_id) / 349, 2) as percentage,
CASE
WHEN party IN ('M', 'KD', 'L') THEN 'Center-Right Coalition'
WHEN party = 'SD' THEN 'External Support'
WHEN party IN ('S', 'V', 'MP') THEN 'Left Opposition'
WHEN party = 'C' THEN 'Unaligned'
END as bloc
FROM assignment_data
WHERE role_code = 'Riksdagsledamot'
AND from_date <= CURRENT_DATE
AND (to_date IS NULL OR to_date >= CURRENT_DATE)
GROUP BY party
ORDER BY COUNT(DISTINCT person_id) DESC;
Expected Output:
| Party | Seats | % | Bloc | Full Name | Ideology |
|---|---|---|---|---|---|
| S | 107 | 30.7% | Left Opposition | Socialdemokraterna (Social Democrats) | Social democracy, welfare state |
| M | 68 | 19.5% | Center-Right | Moderaterna (Moderates) | Liberal conservatism, free market |
| SD | 73 | 20.9% | External Support | Sverigedemokraterna (Sweden Democrats) | National conservatism, immigration restrictive |
| C | 24 | 6.9% | Unaligned | Centerpartiet (Center Party) | Agrarian liberalism, decentralization |
| V | 24 | 6.9% | Left Opposition | Vänsterpartiet (Left Party) | Democratic socialism, feminism |
| KD | 19 | 5.4% | Center-Right | Kristdemokraterna (Christian Democrats) | Christian democracy, social conservatism |
| L | 16 | 4.6% | Center-Right | Liberalerna (Liberals) | Social liberalism, individualism |
| MP | 18 | 5.2% | Left Opposition | Miljöpartiet (Green Party) | Green politics, environmentalism |
Founded: 1889
Ideology: Social democracy, democratic socialism
Historical Role: Dominant party 1932-2006 (except 1976-1982, 1991-1994)
Core Policies:
Electoral Performance (Recent):
SELECT
election_year,
percentage,
parliament_seats,
percentage - LAG(percentage) OVER (ORDER BY election_year) as vote_change
FROM sweden_political_party
WHERE party_name = 'Socialdemokraterna'
AND election_year >= 2006
ORDER BY election_year;
| Year | Vote % | Seats | Change |
|---|---|---|---|
| 2006 | 35.0% | 130 | -4.6% |
| 2010 | 30.7% | 112 | -4.3% |
| 2014 | 31.0% | 113 | +0.3% |
| 2018 | 28.3% | 100 | -2.7% |
| 2022 | 30.3% | 107 | +2.0% |
Coalition Patterns:
Founded: 1904 (as Allmänna valmansförbundet)
Ideology: Liberal conservatism, fiscal conservatism
Historical Role: Main opposition party, led center-right governments 2006-2014
Core Policies:
Electoral Trend:
SELECT
election_year,
percentage,
parliament_seats
FROM sweden_political_party
WHERE party_name = 'Moderaterna'
AND election_year >= 2006
ORDER BY election_year;
Coalition Patterns:
Founded: 1988 (roots in nationalist movements)
Ideology: National conservatism, right-wing populism
Historical Role: Parliamentary breakthrough 2010, kingmaker 2018-
Core Policies:
Electoral Growth:
SELECT
election_year,
percentage,
parliament_seats,
percentage - LAG(percentage) OVER (ORDER BY election_year) as vote_growth
FROM sweden_political_party
WHERE party_name = 'Sverigedemokraterna'
AND election_year >= 2010
ORDER BY election_year;
| Year | Vote % | Seats | Growth |
|---|---|---|---|
| 2010 | 5.7% | 20 | NEW |
| 2014 | 12.9% | 49 | +7.2% |
| 2018 | 17.5% | 62 | +4.6% |
| 2022 | 20.5% | 73 | +3.0% |
Strategic Position:
Founded: 1913 (as Bondeförbundet - Farmers' League)
Ideology: Agrarian liberalism, rural interests
Core Policies:
Coalition Patterns:
Founded: 1917 (as Sveriges Kommunistiska Parti)
Ideology: Democratic socialism, feminism
Core Policies:
Coalition Patterns:
Founded: 1964
Ideology: Christian democracy, social conservatism
Core Policies:
Coalition Patterns:
Founded: 1934 (as Folkpartiet)
Ideology: Social liberalism, secularism
Core Policies:
Electoral Challenges:
Coalition Patterns:
Founded: 1981
Ideology: Green politics, environmentalism
Core Policies:
Coalition Patterns:
Allocation Formula:
def allocate_seats(votes_per_party, total_seats=349):
"""
Modified Sainte-Laguë method used in Swedish elections
"""
seats_allocated = {party: 0 for party in votes_per_party}
# Apply 4% threshold
total_votes = sum(votes_per_party.values())
qualified_parties = {
party: votes for party, votes in votes_per_party.items()
if votes / total_votes >= 0.04
}
for seat in range(total_seats):
# Calculate quotient for each party
quotients = {}
for party, votes in qualified_parties.items():
divisor = 1.4 if seats_allocated[party] == 0 else (2 * seats_allocated[party] + 1)
quotients[party] = votes / divisor
# Award seat to party with highest quotient
winning_party = max(quotients, key=quotients.get)
seats_allocated[winning_party] += 1
return seats_allocated
Seat Allocation:
4% Threshold Rule:
gantt
title Swedish Electoral Cycle (2022-2026)
dateFormat YYYY-MM-DD
section Election
Election Day 2022 :milestone, 2022-09-11, 0d
Election Day 2026 :milestone, 2026-09-13, 0d
section Government Formation
Negotiations :active, 2022-09-12, 30d
Government Formed :milestone, 2022-10-18, 0d
section Parliamentary Sessions
Autumn Session 2022 :2022-09-11, 2022-12-15
Spring Session 2023 :2023-01-15, 2023-06-15
Autumn Session 2023 :2023-09-11, 2023-12-15
Spring Session 2024 :2024-01-15, 2024-06-15
Key Principle: Prime Minister does not need majority support, only must NOT have majority AGAINST.
Process:
Example: 2022 Government Formation
-- Simulate 2022 PM vote scenarios
WITH party_seats AS (
SELECT
'M' as party, 68 as seats, 'Coalition' as position
UNION ALL SELECT 'KD', 19, 'Coalition'
UNION ALL SELECT 'L', 16, 'Coalition'
UNION ALL SELECT 'SD', 73, 'External Support'
UNION ALL SELECT 'S', 107, 'Opposition'
UNION ALL SELECT 'V', 24, 'Opposition'
UNION ALL SELECT 'MP', 18, 'Opposition'
UNION ALL SELECT 'C', 24, 'Abstain'
),
vote_scenarios AS (
SELECT
'Ulf Kristersson (M)' as candidate,
SUM(CASE WHEN position = 'Opposition' THEN seats ELSE 0 END) as votes_against,
SUM(CASE WHEN position IN ('Coalition', 'External Support') THEN seats ELSE 0 END) as votes_for,
SUM(CASE WHEN position = 'Abstain' THEN seats ELSE 0 END) as abstentions
FROM party_seats
)
SELECT
candidate,
votes_against,
votes_for,
abstentions,
CASE
WHEN votes_against >= 175 THEN '❌ REJECTED'
ELSE '✅ APPROVED'
END as result
FROM vote_scenarios;
Result:
Historical Coalitions (1970-present):
-- Map historical government coalitions
SELECT
government_period,
prime_minister,
coalition_parties,
total_seats,
type
FROM (
VALUES
('2022-', 'Ulf Kristersson', 'M-KD-L', 103, 'Minority (SD support)'),
('2021-2022', 'Magdalena Andersson', 'S', 100, 'Minority'),
('2014-2021', 'Stefan Löfven', 'S-MP', 116, 'Minority'),
('2014', 'Stefan Löfven', 'S-MP', 138, 'Minority'),
('2010-2014', 'Fredrik Reinfeldt', 'M-C-L-KD', 173, 'Minority'),
('2006-2010', 'Fredrik Reinfeldt', 'M-C-L-KD', 178, 'Majority'),
('1994-2006', 'Göran Persson', 'S', 131-161, 'Minority'),
('1991-1994', 'Carl Bildt', 'M-C-L-KD', 170, 'Minority')
) AS coalitions(government_period, prime_minister, coalition_parties, total_seats, type);
Coalition Viability Matrix (2022):
| Coalition | Parties | Seats | Viable? | Obstacle |
|---|---|---|---|---|
| Center-Right + SD | M-KD-L-SD | 176 | ✅ YES | L uncomfortable with SD |
| Center-Right Minority | M-KD-L | 103 | ✅ YES | Requires SD external support |
| Left Bloc | S-V-MP | 149 | ❌ NO | Only 149 seats, needs 175 to block PM |
| Grand Coalition | S-M | 175 | ❌ NO | Politically impossible (polar opposites) |
| Sweden Democrat-led | SD-M-KD | 160 | ❌ NO | M refuses SD PM |
graph TB
A[Bill Introduction] --> B{Source?}
B -->|Government| C[Government Bill<br/>Proposition]
B -->|MP/Committee| D[Private Member Bill<br/>Motion]
C --> E[Committee Review<br/>Utskottsbehandling]
D --> E
E --> F[Committee Report<br/>Betänkande]
F --> G[Plenary Debate<br/>Kammarens debatt]
G --> H[Vote<br/>Votering]
H --> I{Result?}
I -->|Ja majority| J[Passed<br/>Antagen]
I -->|Nej majority| K[Rejected<br/>Avslagen]
J --> L{Government Bill?}
L -->|Yes| M[Becomes Law<br/>Lag]
L -->|No| N[Government Action Required]
style C fill:#ffe6cc
style D fill:#e1f5ff
style J fill:#ccffcc
style K fill:#ffcccc
Committee Structure:
| Committee | Swedish Name | Members | Policy Area |
|---|---|---|---|
| 1. Constitutional | Konstitutionsutskottet (KU) | 17 | Constitutional law, media |
| 2. Finance | Finansutskottet (FiU) | 17 | Budget, taxation |
| 3. Taxation | Skatteutskottet (SkU) | 17 | Tax policy |
| 4. Justice | Justitieutskottet (JuU) | 17 | Criminal law, courts |
| 5. Foreign Affairs | Utrikesutskottet (UU) | 17 | Foreign policy, EU |
| 6. Defense | Försvarsutskottet (FöU) | 17 | Military, national security |
| 7. Social Insurance | Socialförsäkringsutskottet (SfU) | 17 | Social security, pensions |
| 8. Health & Welfare | Socialutskottet (SoU) | 17 | Healthcare, social services |
| 9. Cultural Affairs | Kulturutskottet (KrU) | 17 | Culture, media, sports |
| 10. Education | Utbildningsutskottet (UbU) | 17 | Schools, universities |
| 11. Traffic | Trafikutskottet (TU) | 17 | Transport, infrastructure |
| 12. Environment & Agriculture | Miljö- och jordbruksutskottet (MJU) | 17 | Environment, farming |
| 13. Civil Affairs | Civilutskottet (CU) | 17 | Housing, consumer affairs |
| 14. Labor Market | Arbetsmarknadsutskottet (AU) | 17 | Employment, labor law |
| 15. EU Affairs | EU-nämnden (EU) | 17 | EU legislation coordination |
Committee Assignment Analysis:
-- Analyze committee membership distribution
SELECT
c.committee_name,
COUNT(DISTINCT ca.person_id) as total_members,
STRING_AGG(DISTINCT ca.party, ', ' ORDER BY ca.party) as party_distribution
FROM committee_assignment ca
JOIN committee c ON ca.committee_id = c.committee_id
WHERE ca.from_date <= CURRENT_DATE
AND (ca.to_date IS NULL OR ca.to_date >= CURRENT_DATE)
GROUP BY c.committee_name
ORDER BY c.committee_name;
Vote Types:
Vote Recording in CIA Platform:
-- Analyze voting patterns by type
SELECT
vote,
COUNT(*) as vote_count,
ROUND(100.0 * COUNT(*) / SUM(COUNT(*)) OVER (), 2) as percentage
FROM vote_data
WHERE vote_date >= CURRENT_DATE - INTERVAL '12 months'
GROUP BY vote
ORDER BY vote_count DESC;
Expected Distribution:
Characteristics:
Remiss System (Remissförfarande):
The Swedish Model (Den svenska modellen):
graph LR
A[Government] <--> B[Employers<br/>Svenskt Näringsliv]
A <--> C[Labor Unions<br/>LO, TCO, SACO]
B <--> C
style A fill:#ffe6cc
style B fill:#e1f5ff
style C fill:#ffcccc
Key Organizations:
Formal Address:
Question Time:
document_element tableA.5.10 - Acceptable Use of Information
A.5.33 - Protection of Records
IDENTIFY (ID)
GOVERN (GV)
CIS Control 1: Inventory and Control of Enterprise Assets
CIS Control 3: Data Protection
Information Security Policy
Data Classification Policy
Privacy Policy
Official Documentation:
CIA Platform Documentation:
Academic Sources:
This skill is consumed by the 11 agentic news workflows in .github/workflows/news-*.md. The authoritative contract lives in .github/prompts/README.md; this skill supplies domain expertise on top of that contract.
ai-driven-analysis-guide.md + every template in analysis/templates/.analysis/daily/$ARTICLE_DATE/$SUBFOLDER/; 05-analysis-gate.md is the single blocking gate.