.claude/skills/ts-ember/SKILL.md
You are an expert in Ember.js, the opinionated frontend framework for ambitious web applications. You help developers build large-scale SPAs with Ember's convention-over-configuration approach, Glimmer components, tracked properties, Ember Data for data management, routing with nested layouts, services for shared state, and ember-cli for scaffolding — providing Rails-like productivity for frontend development.
npx skillsauth add eliferjunior/Claude emberInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are an expert in Ember.js, the opinionated frontend framework for ambitious web applications. You help developers build large-scale SPAs with Ember's convention-over-configuration approach, Glimmer components, tracked properties, Ember Data for data management, routing with nested layouts, services for shared state, and ember-cli for scaffolding — providing Rails-like productivity for frontend development.
// app/components/todo-list.ts
import Component from "@glimmer/component";
import { tracked } from "@glimmer/tracking";
import { action } from "@ember/object";
import { service } from "@ember/service";
interface TodoListArgs {
title: string;
}
export default class TodoList extends Component<TodoListArgs> {
@service declare store: any;
@tracked newTodoText = "";
@tracked filter: "all" | "active" | "done" = "all";
get filteredTodos() {
const todos = this.store.peekAll("todo");
switch (this.filter) {
case "active": return todos.filter(t => !t.completed);
case "done": return todos.filter(t => t.completed);
default: return todos;
}
}
get remaining() {
return this.store.peekAll("todo").filter(t => !t.completed).length;
}
@action async addTodo() {
if (!this.newTodoText.trim()) return;
const todo = this.store.createRecord("todo", {
text: this.newTodoText,
completed: false,
});
await todo.save();
this.newTodoText = "";
}
@action async toggleTodo(todo: any) {
todo.completed = !todo.completed;
await todo.save();
}
@action setFilter(filter: "all" | "active" | "done") {
this.filter = filter;
}
}
{{! app/components/todo-list.hbs }}
<div class="todo-list">
<h2>{{@title}} ({{this.remaining}} remaining)</h2>
<form {{on "submit" this.addTodo}}>
<input value={{this.newTodoText}}
{{on "input" (fn (mut this.newTodoText) (get event "target.value"))}}
placeholder="Add todo..." />
<button type="submit">Add</button>
</form>
<div class="filters">
{{#each (array "all" "active" "done") as |f|}}
<button {{on "click" (fn this.setFilter f)}}
class={{if (eq this.filter f) "active"}}>
{{f}}
</button>
{{/each}}
</div>
<ul>
{{#each this.filteredTodos as |todo|}}
<li {{on "click" (fn this.toggleTodo todo)}}
class={{if todo.completed "done"}}>
{{todo.text}}
</li>
{{/each}}
</ul>
</div>
// app/routes/todos.ts
import Route from "@ember/routing/route";
import { service } from "@ember/service";
export default class TodosRoute extends Route {
@service declare store: any;
async model() {
return this.store.findAll("todo");
}
}
// app/router.ts
Router.map(function () {
this.route("todos");
this.route("user", { path: "/users/:user_id" }, function () {
this.route("posts");
this.route("settings");
});
});
npm install -g ember-cli
ember new my-app --lang en --typescript
cd my-app && ember serve
ember generate component todo-list
ember generate route todos
ember generate model todo
@tracked for reactive state; Ember auto-rerenders when tracked properties change@servicemodel() hook; template receives it automatically, loading states handledthis.get()); lighter, faster than classic componentsember generate for scaffolding; ensures consistent file structuredevelopment
Expert guidance for Fireworks AI, the platform for running open-source LLMs (Llama, Mixtral, Qwen, etc.) with enterprise-grade speed and reliability. Helps developers integrate Fireworks' inference API, fine-tune models, and deploy custom model endpoints with function calling and structured output support.
development
Convert any website into clean, structured data with Firecrawl — API-first web scraping service. Use when someone asks to "turn a website into markdown", "scrape website for LLM", "Firecrawl", "extract website content as clean text", "crawl and convert to structured data", or "scrape website for RAG". Covers single-page scraping, full-site crawling, structured extraction, and LLM-ready output.
tools
Expert guidance for Firebase, Google's platform for building and scaling web and mobile applications. Helps developers set up authentication, Firestore/Realtime Database, Cloud Functions, hosting, storage, and analytics using Firebase's SDK and CLI.
development
When the user needs to build file upload functionality for a web application. Use when the user mentions "file upload," "image upload," "upload endpoint," "multipart upload," "presigned URL," "S3 upload," "file validation," "upload to cloud storage," or "accept user files." Handles upload endpoints, file validation (type, size, magic bytes), cloud storage integration, and upload status tracking. For image/video processing after upload, see media-transcoder.