원클릭으로
legacy-modernization
Modernize legacy applications and codebases. Use for COBOL conversion, framework upgrades, and technical debt reduction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Modernize legacy applications and codebases. Use for COBOL conversion, framework upgrades, and technical debt reduction.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
WCAG compliance checking and accessibility improvements. Use for auditing websites, fixing a11y issues, and implementing inclusive design.
Android development patterns for Kotlin/Java including MediaProjection, Accessibility Service, Socket.IO, and foreground services. Use when working on TitanMirror or other Android projects.
Design RESTful APIs with proper routes, validation, error handling, and documentation. Use when building backend services for PSI Engine or other server applications.
Automate browser interactions including form filling, clicking, typing, navigation, and screenshot capture. Use this skill when testing web apps, automating uploads, or validating UI on TikTok, YouTube, or other web platforms.
Build Chrome Extensions with Manifest V3, background service workers, content scripts, and message passing. Use when developing TikTok Uploader extension or any browser extensions.
Automated CI/CD pipeline setup with GitHub Actions, deployment strategies, and automation workflows. Use for build automation, testing, and deployment.
| name | legacy-modernization |
| description | Modernize legacy applications and codebases. Use for COBOL conversion, framework upgrades, and technical debt reduction. |
1. Create new service alongside legacy
2. Route new features to modern service
3. Gradually migrate existing features
4. Eventually retire legacy system
// Legacy API returns old format
const legacyResponse = await legacyApi.getUser(id);
// { usr_id: 1, usr_nm: 'John', usr_email: 'john@example.com' }
// Transform to modern format
const modernUser = {
id: legacyResponse.usr_id,
name: legacyResponse.usr_nm,
email: legacyResponse.usr_email
};
// ES5 → ES6+
// var → const/let
var name = 'John'; // ❌
const name = 'John'; // ✅
// function → arrow
function add(a, b) { return a + b; } // Old
const add = (a, b) => a + b; // Modern
// Callback → Promise → Async/Await
// Callback
getData(function(err, data) { ... });
// Promise
getData().then(data => ...).catch(err => ...);
// Async/Await
const data = await getData();
// jQuery
$('.button').click(function() { ... });
$('#result').html(data);
// Vanilla JS
document.querySelector('.button').addEventListener('click', () => { ... });
document.getElementById('result').innerHTML = data;
// Class Component
class Counter extends Component {
state = { count: 0 };
componentDidMount() { ... }
render() { return <div>{this.state.count}</div>; }
}
// Functional + Hooks
function Counter() {
const [count, setCount] = useState(0);
useEffect(() => { ... }, []);
return <div>{count}</div>;
}
| From | To | Strategy |
|---|---|---|
| SQL Server | PostgreSQL | pg_chameleon |
| MySQL | PostgreSQL | pgloader |
| Oracle | PostgreSQL | ora2pg |
| MongoDB → SQL | Prisma | Custom scripts |