Sub-skill of web-artifacts-builder: Self-Contained Architecture (+1).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill self-contained-architecture --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Self Contained Architecture?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-self-contained-architecture)More formats (shields.io, HTML) on the badges page.
---
name: web-artifacts-builder-self-contained-architecture
description: 'Sub-skill of web-artifacts-builder: Self-Contained Architecture (+1).'
version: 2.0.0
category: _internal
type: reference
scripts_exempt: true
---
# Self-Contained Architecture (+1)
## Self-Contained Architecture
Everything in one HTML file:
- HTML structure
- CSS styles (inline or in `<style>` tags)
- JavaScript functionality (inline or in `<script>` tags)
- Data (embedded JSON or JavaScript objects)
- Assets (inline SVG, base64 images, or CDN links)
## No External Dependencies Required
```html
<!-- Use CDN for libraries when needed -->
<script src="https://cdn.jsdelivr.net/npm/library@version"></script>
<!-- Or embed everything inline -->
<script>
// All JavaScript here
</script>
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.