원클릭으로
remove-image-background
Remove backgrounds from existing images, producing transparent PNG files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Remove backgrounds from existing images, producing transparent PNG files.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
A test skill for validating secondary skill deployment.
List and manage user feedback items from the agent inbox. Use when the user asks about feedback, bug reports, feature requests, or inbox items.
Spawn a code review (architect) subagent for deep analysis, planning, and debugging. The architect specializes in strategic guidance rather than implementation. Architect should be called after building major features. Relies on `delegation` skill.
Create and manage Replit's built-in PostgreSQL databases, check status, execute SQL queries with safety checks, and run read-only queries against the production database.
Delegate tasks to specialized subagents. Use subagent for synchronous task execution, startAsyncSubagent for background task execution, messageSubagent for async follow-ups, or messageSubagentAndGetResponse for sync follow-ups.
Configure and publish your project. Use to set deployment settings and suggest publishing when the app is ready.
| name | remove-image-background |
| description | Remove backgrounds from existing images, producing transparent PNG files. |
Remove the background from an existing image file in the project, producing a transparent PNG.
Remove the background from an existing image file.
Parameters:
imagePath (str, required): Path to the input image fileoutputPath (str, optional): Path to save the result PNG. Defaults to replacing the extension with _no_bg.pngReturns: Dict with outputPath key containing the path to the saved result
Example:
const result = await removeImageBackground({
imagePath: "attached_assets/photo.jpg",
outputPath: "attached_assets/photo_no_bg.png"
});
console.log(`Result saved to: ${result.outputPath}`);
.png extension since transparency requires PNG formatoutputPath to automatically save as <original_name>_no_bg.png_no_bg.png suffix.png