Chapter Overview: This chapter provides comprehensive coverage of cognitive-behavioral techniques for anxiety management, including cognitive restructuring, thought records, behavioral experiments, and digital implementation strategies. These evidence-based methods form the core of effective anxiety treatment.
The cognitive model, developed by Aaron Beck and colleagues, posits that psychological distress results not from situations themselves, but from how we interpret and think about those situations. In anxiety disorders, characteristic patterns of biased information processing maintain and exacerbate symptoms.
Unlike depression's negative triad about self, world, and future, anxiety involves a threat-focused cognitive triad:
This cognitive framework creates a vicious cycle: anxious thoughts trigger physiological arousal, which is interpreted as evidence of danger, further intensifying anxiety. Breaking this cycle requires identifying and modifying these maladaptive thought patterns.
| Bias Type | Description | Example in Anxiety | Digital Assessment |
|---|---|---|---|
| Attentional Bias | Selective attention toward threat-relevant stimuli | In social anxiety, immediately noticing any signs of negative evaluation | Dot-probe tasks; eye-tracking studies; visual search paradigms |
| Interpretation Bias | Tendency to interpret ambiguous situations as threatening | Friend doesn't respond to text = "They're angry at me" rather than "They're busy" | Ambiguous scenarios task; thought-listing exercises |
| Memory Bias | Enhanced recall of threat-related information | Remembering embarrassing moments in detail while forgetting successes | Recognition memory tasks; autobiographical memory assessment |
| Judgment Bias | Overestimation of threat probability and severity | Believing airplane travel is highly dangerous despite statistics | Probability estimation tasks; cost-benefit analysis |
| Reasoning Bias | Emotional reasoning; jumping to conclusions | "I feel anxious, therefore danger must be present" | Thought record analysis; logical reasoning tasks |
Cognitive distortions are systematic errors in thinking that maintain psychological distress. In anxiety disorders, specific distortions are particularly prevalent and problematic.
Imagining and believing the worst possible outcome will occur, despite low actual probability.
Example: "If I make a mistake in my presentation, everyone will think I'm incompetent, I'll be fired, and I'll never find another job."
Reality Check: Most mistakes are minor and quickly forgotten. Even significant errors rarely lead to catastrophic consequences.
Viewing situations in absolute, black-or-white categories without recognizing middle ground.
Example: "If I can't give a perfect presentation, it will be a complete failure."
Reality Check: Performance exists on a continuum. Most presentations are neither perfect nor complete failures.
Making predictions about the future with unwarranted certainty, typically predicting negative outcomes.
Example: "I know I'll panic during the meeting and everyone will notice."
Reality Check: The future is uncertain. Past panic doesn't guarantee future panic.
Assuming knowledge of others' thoughts, typically believing they're thinking negatively about you.
Example: "They're being quiet, which means they think I'm boring."
Reality Check: Many explanations exist for others' behaviors. We cannot know thoughts without asking.
Believing that emotions reflect reality: "I feel it, therefore it must be true."
Example: "I feel anxious, so this situation must be dangerous."
Reality Check: Feelings are not facts. Anxiety can occur even in objectively safe situations.
Rigid rules about how things "should" or "must" be, leading to distress when reality doesn't conform.
Example: "I should never feel anxious" or "I must always appear confident."
Reality Check: Anxiety is a normal human emotion. Universal "shoulds" create unrealistic expectations.
// Cognitive Distortion Detection System
interface ThoughtRecord {
recordId: string;
timestamp: Date;
situation: string;
automaticThought: string;
emotion: string;
emotionIntensity: number; // 0-100
physicalSensations: string[];
detectedDistortions?: CognitiveDistortion[];
}
interface CognitiveDistortion {
type: DistortionType;
confidence: number; // 0-1
explanation: string;
challenge: string;
}
enum DistortionType {
CATASTROPHIZING = 'catastrophizing',
ALL_OR_NOTHING = 'all_or_nothing',
FORTUNE_TELLING = 'fortune_telling',
MIND_READING = 'mind_reading',
EMOTIONAL_REASONING = 'emotional_reasoning',
SHOULD_STATEMENTS = 'should_statements',
OVERGENERALIZATION = 'overgeneralization',
PERSONALIZATION = 'personalization',
MENTAL_FILTER = 'mental_filter',
DISCOUNTING_POSITIVES = 'discounting_positives'
}
class DistortionDetector {
// Analyze thought for cognitive distortions using NLP
async detectDistortions(
thought: string
): Promise {
const distortions: CognitiveDistortion[] = [];
// Catastrophizing detection
if (this.isCatastrophizing(thought)) {
distortions.push({
type: DistortionType.CATASTROPHIZING,
confidence: this.calculateConfidence(thought, DistortionType.CATASTROPHIZING),
explanation: 'This thought involves imagining the worst possible outcome.',
challenge: 'What evidence do you have that this worst-case scenario will occur? What are more likely outcomes?'
});
}
// Fortune telling detection
if (this.isFortuneTelling(thought)) {
distortions.push({
type: DistortionType.FORTUNE_TELLING,
confidence: this.calculateConfidence(thought, DistortionType.FORTUNE_TELLING),
explanation: 'This thought makes a prediction about the future with unwarranted certainty.',
challenge: 'How can you know for certain what will happen? What other outcomes are possible?'
});
}
// Mind reading detection
if (this.isMindReading(thought)) {
distortions.push({
type: DistortionType.MIND_READING,
confidence: this.calculateConfidence(thought, DistortionType.MIND_READING),
explanation: 'This thought assumes you know what others are thinking without evidence.',
challenge: 'What concrete evidence do you have for what this person is thinking? Are there other possible explanations for their behavior?'
});
}
// All-or-nothing detection
if (this.isAllOrNothing(thought)) {
distortions.push({
type: DistortionType.ALL_OR_NOTHING,
confidence: this.calculateConfidence(thought, DistortionType.ALL_OR_NOTHING),
explanation: 'This thought views the situation in extreme, black-or-white terms.',
challenge: 'Is there any middle ground? Could the situation fall somewhere on a continuum rather than being all-or-nothing?'
});
}
return distortions;
}
// Pattern matching for catastrophizing
private isCatastrophizing(thought: string): boolean {
const catastrophizingPatterns = [
/will be (terrible|awful|disaster|catastrophe)/i,
/everything will (fall apart|be ruined)/i,
/never (recover|get over|be the same)/i,
/worst (thing|case|possible)/i,
/(complete|total|utter) (failure|disaster)/i
];
return catastrophizingPatterns.some(pattern =>
pattern.test(thought)
);
}
// Pattern matching for fortune telling
private isFortuneTelling(thought: string): boolean {
const fortunePatterns = [
/I (know|can tell) (it|I) will/i,
/definitely (going to|will|won't)/i,
/certain(ly)? (that|it will)/i,
/guarantee(d)? (to|that)/i,
/bound to (fail|go wrong)/i
];
return fortunePatterns.some(pattern =>
pattern.test(thought)
);
}
// Pattern matching for mind reading
private isMindReading(thought: string): boolean {
const mindReadingPatterns = [
/they (think|believe|are thinking) (I|that)/i,
/everyone (thinks|knows|can see)/i,
/(he|she|they) (must think|probably thinks)/i,
/I can tell (he|she|they) (think|believe)/i
];
return mindReadingPatterns.some(pattern =>
pattern.test(thought)
);
}
// Pattern matching for all-or-nothing thinking
private isAllOrNothing(thought: string): boolean {
const absolutePatterns = [
/(always|never|every|all|none|no one|everyone)/i,
/(complete|total|perfect|absolute)/i,
/(entirely|completely|totally) (good|bad|right|wrong)/i
];
return absolutePatterns.some(pattern =>
pattern.test(thought)
);
}
// Calculate confidence score for detected distortion
private calculateConfidence(
thought: string,
distortionType: DistortionType
): number {
// Machine learning model would be used in production
// This is simplified placeholder logic
let confidence = 0.5;
// Increase confidence based on multiple indicators
const indicators = this.getDistortionIndicators(thought, distortionType);
confidence += indicators.length * 0.1;
// Cap at 0.95 to avoid overconfidence
return Math.min(confidence, 0.95);
}
private getDistortionIndicators(
thought: string,
type: DistortionType
): string[] {
// Return linguistic features indicating distortion
// Implementation would use NLP techniques
return [];
}
}
The thought record (also called dysfunctional thought record or DTR) is the foundational cognitive-behavioral technique. It systematically captures the relationship between situations, thoughts, emotions, and behaviors, enabling identification and modification of maladaptive cognitions.
| Column | Purpose | Guiding Questions |
|---|---|---|
| 1. Situation | Describe the activating event | What happened? When and where? Who was involved? |
| 2. Automatic Thoughts | Identify immediate thoughts | What went through your mind? What did this mean about you? |
| 3. Emotions | Label emotional responses | What did you feel? How intense (0-100%)? |
| 4. Evidence For | Gather supporting evidence | What facts support this thought? |
| 5. Evidence Against | Gather contradicting evidence | What facts contradict this thought? What have you overlooked? |
| 6. Alternative Thought | Generate balanced perspective | What's a more balanced way to think about this? What would you tell a friend? |
| 7. Re-rate Emotion | Assess emotional change | How intense is the emotion now (0-100%)? |
Digital thought records offer several advantages over paper-based methods:
// Digital Thought Record Implementation
interface DigitalThoughtRecord {
recordId: string;
patientId: string;
timestamp: Date;
completionTime: number; // seconds
// Core thought record components
situation: {
description: string;
location?: string;
peoplePresent?: string[];
timeOfDay: string;
triggers?: string[];
};
automaticThoughts: {
thoughts: string[];
hotThought?: string; // Most distressing thought
believability: number; // 0-100 before challenge
};
emotions: {
primary: string;
intensity: number; // 0-100
additional?: Array<{
emotion: string;
intensity: number;
}>;
};
physicalSensations: string[];
evidence: {
supporting: string[];
contradicting: string[];
};
alternativeThought: {
thought: string;
believability: number; // 0-100
};
outcome: {
emotionIntensity: number; // 0-100 after challenge
thoughtBelievability: number; // 0-100 after challenge
behaviorChange?: string;
};
// Digital enhancements
aiSuggestions?: {
detectedDistortions: CognitiveDistortion[];
suggestedChallenges: string[];
alternativeThoughts: string[];
};
completionQuality: {
timeSpent: number;
depthScore: number; // 0-100
engagementMetrics: object;
};
}
class ThoughtRecordManager {
// Guide user through thought record completion
async completeThoughtRecord(
patientId: string
): Promise {
const record: Partial = {
recordId: generateUUID(),
patientId: patientId,
timestamp: new Date()
};
const startTime = Date.now();
// Step 1: Situation
record.situation = await this.gatherSituation();
// Step 2: Automatic thoughts
record.automaticThoughts = await this.identifyThoughts();
// Step 3: Emotions
record.emotions = await this.labelEmotions();
// Step 4: Physical sensations
record.physicalSensations = await this.identifySensations();
// Step 5: Evidence gathering
record.evidence = await this.gatherEvidence(
record.automaticThoughts.thoughts
);
// Step 6: Generate alternatives (with AI assistance)
const aiAssistance = await this.getAISuggestions(
record.automaticThoughts.thoughts[0]
);
record.alternativeThought = await this.developAlternative(
aiAssistance
);
// Step 7: Re-rate
record.outcome = await this.rerateEmotions(
record.emotions.intensity
);
// Calculate completion metrics
record.completionTime = (Date.now() - startTime) / 1000;
record.completionQuality = this.assessCompletionQuality(record);
// Store and analyze
await this.saveRecord(record as DigitalThoughtRecord);
await this.analyzePatterns(patientId);
return record as DigitalThoughtRecord;
}
// AI-powered challenge suggestions
private async getAISuggestions(
thought: string
): Promise<{
detectedDistortions: CognitiveDistortion[];
suggestedChallenges: string[];
alternativeThoughts: string[];
}> {
const detector = new DistortionDetector();
const distortions = await detector.detectDistortions(thought);
const challenges = this.generateChallenges(thought, distortions);
const alternatives = this.generateAlternatives(thought, distortions);
return {
detectedDistortions: distortions,
suggestedChallenges: challenges,
alternativeThoughts: alternatives
};
}
// Generate context-appropriate challenges
private generateChallenges(
thought: string,
distortions: CognitiveDistortion[]
): string[] {
const challenges: string[] = [];
distortions.forEach(distortion => {
switch (distortion.type) {
case DistortionType.CATASTROPHIZING:
challenges.push('What evidence do you have that this worst-case scenario will actually happen?');
challenges.push('What are more realistic outcomes?');
challenges.push('Even if the worst happened, how could you cope?');
break;
case DistortionType.FORTUNE_TELLING:
challenges.push('How can you know for certain what will happen?');
challenges.push('What has happened in similar situations before?');
challenges.push('What other outcomes are possible?');
break;
case DistortionType.MIND_READING:
challenges.push('What concrete evidence do you have for what they are thinking?');
challenges.push('Are there other explanations for their behavior?');
challenges.push('If you asked them, what might they actually say?');
break;
// Additional cases for other distortion types...
}
});
return challenges;
}
// Analyze patterns across multiple thought records
private async analyzePatterns(patientId: string): Promise {
const recentRecords = await this.getRecentRecords(patientId, 30); // Last 30 records
const analysis = {
mostCommonDistortions: this.identifyCommonDistortions(recentRecords),
recurringThoughts: this.identifyRecurringThemes(recentRecords),
triggerPatterns: this.identifyTriggers(recentRecords),
progressTrend: this.calculateProgressTrend(recentRecords),
skillImprovment: this.assessSkillImprovement(recentRecords)
};
await this.provideFeedback(patientId, analysis);
}
}
Behavioral experiments are structured activities designed to test the validity of anxious beliefs through real-world evidence gathering. Unlike exposure (which habituates anxiety), behavioral experiments explicitly test predictions.
An effective behavioral experiment follows a structured process:
| Anxious Belief | Experiment Design | Predicted Outcome | Actual Outcome (Common) |
|---|---|---|---|
| "If I don't check my work 10 times, I'll make terrible mistakes" | Check work only 3 times and submit | Multiple serious errors; negative consequences | Few or no errors; no negative consequences |
| "If I speak up in meetings, everyone will think I'm stupid" | Make one comment in next team meeting; observe reactions | Visible signs of judgment; negative comments | Neutral or positive reactions; normal continuation |
| "If I feel anxious, I won't be able to function" | Continue activity despite anxiety; rate functioning | Complete inability to perform tasks | Able to function despite discomfort; quality slightly reduced at most |
| "If I don't constantly monitor my heart rate, I'll have a heart attack" | Refrain from checking heart rate for 2 hours during moderate activity | Heart attack or serious cardiac event | No cardiac event; anxiety initially increases then habituates |
| "People can tell when I'm anxious and will judge me" | Ask trusted friend if they notice anxiety signs | Immediate recognition of anxiety; negative judgment | No observation of anxiety or neutral/supportive response |
弘益人間 · Benefit All Humanity
Through structured cognitive techniques, we empower individuals to become their own scientists—testing beliefs, gathering evidence, and discovering that anxiety's predictions rarely match reality. This liberation of thought serves all humanity.
Socratic questioning uses guided discovery to help individuals examine and challenge their anxious thoughts. Rather than directly disputing thoughts, this method asks questions that prompt independent insight.
The continuum technique addresses all-or-nothing thinking by helping individuals recognize that most qualities exist on a spectrum rather than as binary categories.
All-or-Nothing Thought: "My presentation was a complete failure."
Continuum Exercise:
Rate presentations on a 0-100 scale where:
Questions:
Outcome: Recognition that presentation was likely 40-60 range rather than 0.
Systematically examining worst-case scenarios to reduce their perceived awfulness and develop coping plans.
Steps:
For individuals with GAD who worry excessively, scheduled "worry time" can increase sense of control.
Protocol:
Mechanisms: Breaks pattern of chronic worry; demonstrates worry is controllable; many worries seem less urgent when postponed; reduces time spent worrying overall.
Korea operates its industrial ecosystem and standardization system through the following core infrastructure. Korea Top 5 Groups: Samsung, Hyundai Motor, LG, SK, Lotte. Each group operates standardization committees and ISO/IEC TC Korean secretariats. Samsung Electronics (semiconductors, displays, home appliances, telecom)·Hyundai Motor (automobiles, mobility)·LG Electronics (home appliances, displays, OLED)·SK hynix (memory)·LG Energy Solution·Samsung SDI (batteries)·POSCO Future M (materials)·Hyundai Mobis (parts). Korean IT Big Tech: NAVER (search, cloud, AI HyperCLOVA)·Kakao (messenger, payment, mobility, banking)·Coupang (e-commerce, logistics)·Karrot Market·Toss·Woowa Brothers. Korea Telcos: SK Telecom·KT·LG U+. 5G·5G dedicated networks·B2B cloud·AI businesses operating. Korea Top 7 Research Universities: Seoul National University·KAIST·POSTECH·Yonsei University·Korea University·UNIST·DGIST·GIST. All serve as standardization R&D bases and ISO/IEC/IEEE Korean chairs. Korea Government-affiliated National Research Institutes (26): KIST, KAERI, KIMM, KIER, KFRI, KRICT, KRIBB, KARI, KASI, KIGAM, KICT, KISTI, KETI, ETRI, NIMS, KIMS, KISDI, KOTRA, STEPI, KOEN, KICCE, KIET, KIPF, KIHASA, KICJ, KLRI. Korea Industrial Complexes / Tech Valleys: Pangyo Techno Valley·Dongtan·Gwanggyo·Songdo IBD·Yeouido·Gangnam·Sihwa·Banwol·Gumi·Ulsan·Changwon·Geoje·Yeosu·Onsan·Cheongju·Iksan·Gwangyang·POSCO Gwangyang Steel Mill·Asan Bay·Seosan·Songdo·Incheon Airport·Sejong·Cheongna·Geomdan. Korea Trade and Finance Infrastructure: Korea International Trade Association (KITA)·Korea Trade-Investment Promotion Agency (KOTRA)·Export-Import Bank of Korea (KEXIM)·Bank of Korea·Kookmin Bank·Shinhan·Hana·Woori·NH Nonghyup·IBK Industrial Bank·SC First Bank·Citi Bank Korea·HSBC Korea·DBS Korea — 14 Korean major banks and foreign banks. Korea K-POP / K-Content: HYBE·SM·YG·JYP 4 major entertainment companies·CJ ENM·tvN·MBC·KBS·SBS·EBS·YTN·Yonhap News TV·JTBC Korean broadcasting·NETFLIX Korea·Disney Plus·TVING·Wavve·Watcha·Coupang Play. Korea Gaming Industry: Nexon·NCsoft·Krafton·Netmarble·Kakao Games·Pearl Abyss·Com2uS·Gamevil·NHN·Smilegate·Webzen. Korea Automotive / Battery: Hyundai Motor·Kia·Genesis·LG Energy Solution·Samsung SDI·SK On·POSCO Future M·EcoPro·L&F battery cathode material suppliers. Korea Semiconductor: Samsung Electronics (HBM3E·HBM4)·SK hynix (HBM3E 12-Hi)·DB HiTek·SK siltron·SK Enpulse·Dongjin Semichem·Seoul Semiconductor·Simmtech·Samsung Display·LG Display.
Korea operates a comprehensive standards governance system through inter-ministerial cooperation. National Standards Council (under Prime Minister's Office, per Framework Act on National Standards Article 5) coordinates KATS (Korean Agency for Technology and Standards), MFDS (Ministry of Food and Drug Safety), MOTIE (Ministry of Trade, Industry and Energy), MSIT (Ministry of Science and ICT), MOIS (Ministry of the Interior and Safety), MOE (Ministry of Environment), MOHW (Ministry of Health and Welfare), MND (Ministry of National Defense), MCST (Ministry of Culture, Sports and Tourism), MOFA (Ministry of Foreign Affairs), MOJ (Ministry of Justice), and FSC (Financial Services Commission). Accreditation and Testing: KOLAS (Korea Laboratory Accreditation Scheme) accredits 800+ testing laboratories. KAS (Korea Accreditation System) accredits 50+ certification bodies. KTC (Korea Testing Certification), KTR (Korea Testing & Research Institute), KTL (Korea Testing Laboratory), and KCL (Korea Conformity Laboratories) provide conformance testing. Telecom and Cyber: KCC (Korea Communications Commission), KCA (Korea Communications Agency), TTA (Telecommunications Technology Association), IITP (Institute for Information & Communications Technology Planning & Evaluation), NIPA (National IT Industry Promotion Agency), KISA (Korea Internet & Security Agency), KCMVP (Korea Cryptographic Module Validation Program), NIS (National Intelligence Service), NSR (National Security Research Institute), and NCSC (National Cyber Security Center). National R&D Centers: KIST, ETRI, KAIST, Seoul National University, Yonsei University, Korea University, POSTECH, UNIST, GIST, DGIST, KISTI, KIER, KIMM, KRICT, KFRI, KRIBB. International Standards Cooperation: ISO TC/SC Korean secretariats, IEC TC/SC Korean secretariats, ITU-T Study Group Korean chairs, 3GPP RAN/SA Korean chairs, IEEE 802 Korean chairs, W3C Korea office, OASIS Korea office, IETF Korea cooperation, OECD CSTP, UN ESCAP, APEC SCSC Korean cooperation. Korean Industrial Standards (KS) Catalog: KS X (Information) 25,000+, KS A (Basic) 15,000+, KS B (Machinery) 25,000+, KS C (Electrical) 18,000+, KS D (Metallurgy) 12,000+, KS E (Mining) 5,000+, KS F (Construction) 18,000+, KS H (Food) 8,000+, KS I (Environment) 5,000+, KS J (Biology) 3,000+, KS K (Textile) 15,000+, KS L (Ceramics) 7,000+, KS M (Chemistry) 12,000+, KS P (Medical) 5,000+, KS Q (Quality Mgmt) 4,000+, KS R (Transport) 12,000+, KS S (Service) 3,000+, KS T (Packaging) 4,000+, KS V (Shipbuilding) 5,000+, KS W (Aerospace) 3,000+ — totaling 220,000+ Korean Industrial Standards. Key Acts: Personal Information Protection Act (Act 19234, effective Sept 15, 2024), Electronic Government Act, Electronic Signature Act, Act on Promotion of Information and Communications Network Utilization and Information Protection, Information and Communications Infrastructure Protection Act, Data Industry Act, Public Data Act, AI Framework Act (Act 20212, effective July 2026), Industrial Technology Innovation Promotion Act, Framework Act on Science and Technology — 70+ Korean standardization-related laws.
Korea operates digital transformation through a comprehensive governance system. Digital Government: Digital Platform Government Committee (established September 2022, under the President)·Ministry of the Interior and Safety Digital Government Bureau·e-Government Support Center·Gov.kr·National Citizen Service·KDIS (Korea Digital Information Society)·NIA (National Information Society Agency)·MOIS (Ministry of the Interior and Safety). K-DNS Infrastructure: Korea Internet & Security Agency (KISA) Korea Internet Center·KISA DNS Root Server·KRNIC (Korea Network Information Center)·BGP Korea·National Cyber Security Center (NCSC)·KCC (Korea Communications Commission)·MSIT (Ministry of Science and ICT)·NIA·NIPA. Korean Cloud Infrastructure: KT Cloud·NAVER Cloud (NCloud)·Samsung SDS Cloud·LG U+ Cloud·NHN Cloud·Kakao Enterprise Cloud·SK Telecom Cloud·KISA Cloud Security Assurance Program (CSAP)·KCMVP-validated cloud·ISMS-P (Information Security & Personal Information Management System). Korean Security Certifications: KISA ISMS-P certification·KCMVP (Korean Cryptographic Module Validation Program)·NIS (National Intelligence Service) "National Cryptographic Technology Operation Standards"·NCSC "National Cyber Security Strategy 2024-2028"·CC (Common Criteria) Korean evaluation bodies·EAL4·EAL5·KS X ISO/IEC 15408·19790·24759 Korean Profile. Korean Data Standards: NIA AI Hub·National Data Standardization Committee·Statistics Korea (KOSTAT)·MyData 4 Designated Combination Specialists (Samsung SDS, KICI, KOSTAT, KFTC)·National Institute of Korean Language·National Law Information Center·National Spatial Information Platform·National Spatial Data Center·Korean Spatial Information Standards. Finance and Fintech Standards: FSC (Financial Services Commission)·FSS (Financial Supervisory Service)·FIU (Financial Intelligence Unit)·BOK (Bank of Korea)·FSEC (Financial Security Institute)·KFTC (Korea Financial Telecommunications)·KSD (Korea Securities Depository)·KRX (Korea Exchange) 8-agency cooperation. 5G/6G Communications Infrastructure: 5G subscribers 35 million (2024)·5G base stations 350,000·6G commercialization target 2028·5G dedicated networks 16 operators·6G Acceleration Council (MSIT, 2024). K-Content: KOCCA (Korea Creative Content Agency)·MCST (Ministry of Culture, Sports and Tourism)·KCA (Korea Communications Agency)·Korea Culture Information Service Agency·Korean Film Archive·Korea Publishing Industry Promotion Agency. Data 3 Acts (Personal Information Protection Act·Credit Information Act·Telecommunications Network Act, 2020 enforcement)·Data Industry Act (2021)·Public Data Act (2013)·AI Framework Act (2026)·Digital Platform Government Framework Act (2024 proposed) — Korea digital transformation core legislation.