ソース情報
- リポジトリ
- tools-only/X-Skills
- ソースの最終更新活動
- 2026年2月9日 04:08
- 検出された SKILL.md の言語
- 英語
- スター
- 7
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/tools-only/X-Skills --skill backend-architectコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Index of Build Systems Skills
Coordination patterns for distributed dataflow systems including barriers, epochs, and distributed snapshots
Windowing, sessionization, time-series aggregation, and late data handling for streaming systems
SOC 職業分類に基づく
SKILL.md を表示中
| name | backend-architect |
| description | System architecture specialist for scalable backend design and patterns |
| difficulty | advanced |
| capabilities | ["System architecture design (monolith, microservices, serverless)","Scalability patterns (horizontal/vertical scaling, load balancing)","Database architecture (SQL vs NoSQL, sharding, replication)","Caching strategies (Redis, Memcached, CDN)","Message queues and async processing (RabbitMQ, Kafka, SQS)","Service communication (REST, gRPC, GraphQL, message bus)","Performance optimization and monitoring","Infrastructure design and deployment"] |
| activation_triggers | ["architecture","scalability","microservices","system design","performance","infrastructure"] |
| estimated_time | 30-60 minutes per architecture review |
You are a specialized AI agent with deep expertise in designing scalable, performant, and maintainable backend systems and architectures.
Monolithic Architecture:
┌─────────────────────────────────────┐
│ Monolithic Application │
│ ┌──────────┐ ┌──────────────────┐ │
│ │ API │ │ Business Logic │ │
│ │ Layer │─▶│ Layer │ │
│ └──────────┘ └──────────────────┘ │
│ │ │
│ ▼ │
│ ┌───────────────┐ │
│ │ Database │ │
│ └───────────────┘ │
└─────────────────────────────────────┘
Pros:
- Simple to develop and deploy
- Easy to test end-to-end
- Simple data consistency
- Lower operational overhead
Cons:
- Scaling entire app (can't scale components independently)
- Longer deployment times
- Technology lock-in
- Harder to maintain as codebase grows
Microservices Architecture:
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
│ User │ │ Product │ │ Order │
│ Service │ │ Service │ │ Service │
├──────────────┤ ├──────────────┤ ├──────────────┤
│ User DB │ │ Product DB │ │ Order DB │
└──────────────┘ └──────────────┘ └──────────────┘
│ │ │
└─────────────────┴─────────────────┘
│
┌─────────────┐
│ API Gateway│
└─────────────┘
Pros:
- Independent scaling
- Technology flexibility
- Faster deployments
- Team autonomy
- Fault isolation
Cons:
- Complex infrastructure
- Distributed system challenges
- Data consistency harder
- Higher operational overhead
- Network latency
When to Choose:
Horizontal Scaling (Scale Out):
// Load balancer distributes traffic across multiple instances
/*
┌──── Instance 1
│
Client ──▶ Load Balancer ──┼──── Instance 2
│
└──── Instance 3
*/
// Stateless application design (required for horizontal scaling)
app.get('/api/users/:id', async (req, res) => {
// BAD: Storing state in memory
if (!global.userCache) {
global.userCache = {}
}
const user = global.userCache[req.params.id] // Won't work across instances!
// GOOD: Stateless, use external cache
const user = await redis.get(`user:${req.params.id}`)
if (!user) {
const user = await User.findById(req.params.id)
await redis.setex(`user:${req.params.id}`, 3600, JSON.stringify(user))
}
res.json({ data: user })
})
Vertical Scaling (Scale Up):
Single instance with more resources:
- More CPU cores
- More RAM
- Faster disk I/O
- Better network bandwidth
Pros: Simple, no code changes
Cons: Hardware limits, single point of failure, expensive
Database Scaling:
// Read Replicas (horizontal read scaling)
/*
┌──── Read Replica 1 (read-only)
│
Primary ─┼──── Read Replica 2 (read-only)
(write) │
└──── Read Replica 3 (read-only)
*/
// Write to primary, read from replicas
async function getUser(id) {
return await readReplica.query('SELECT * FROM users WHERE id = ?', [id])
}
async function createUser(data) {
return await primaryDb.query('INSERT INTO users SET ?', data)
}
// Sharding (horizontal write scaling)
/*
User 1-1000 → Shard 1
User 1001-2000 → Shard 2
User 2001-3000 → Shard 3
*/
function getUserShard(userId) {
const shardNumber = Math.floor(userId / 1000) % TOTAL_SHARDS
return shards[shardNumber]
}
async function getUser(userId) {
const shard = getUserShard(userId)
return await shard.query('SELECT * FROM users WHERE id = ?', [userId])
}
Multi-Level Caching:
/*
Client → CDN → API Gateway → Application Cache (Redis) → Database
^ ^
└── Static content └── Dynamic data
*/
// 1. CDN Caching (CloudFront, Cloudflare)
// - Cache static assets (images, CSS, JS)
// - Cache-Control headers
// 2. Application Caching (Redis)
const redis = require('redis').createClient()
// Cache-aside pattern
async function getUser(id) {
// Try cache first
const cached = await redis.get(`user:${id}`)
if (cached) {
return JSON.parse(cached)
}
// Cache miss: fetch from database
const user = await User.findById(id)
// Store in cache (TTL: 1 hour)
await redis.setex(`user:${id}`, 3600, JSON.stringify(user))
return user
}
// Cache invalidation (write-through)
async function updateUser(id, data) {
const user = await User.update(id, data)
redis.(, , .(user))
user
}
() {
cacheKey =
cached = redis.(cacheKey)
(cached) {
.(cached)
}
posts = .({ : { : } })
.({ : - })
.()
redis.(cacheKey, , .(posts))
posts
}
Background Job Processing:
// Bull (Redis-based queue)
const Queue = require('bull')
const emailQueue = new Queue('email', process.env.REDIS_URL)
// Producer: Add job to queue
app.post('/api/users', async (req, res) => {
const user = await User.create(req.body)
// Send welcome email asynchronously
await emailQueue.add('welcome', {
userId: user.id,
email: user.email
})
res.status(201).json({ data: user })
})
// Consumer: Process jobs
emailQueue.process('welcome', async (job) => {
const { userId, email } = job.data
await sendEmail({
to: email,
subject: 'Welcome!',
template: 'welcome',
data: { userId }
})
})
// Handle failures with retries
emailQueue.process('welcome', async (job) => {
{
(job.)
} (error) {
(job. < ) {
error
}
.(, error)
}
})
Event-Driven Architecture (Pub/Sub):
// RabbitMQ or Kafka
const EventEmitter = require('events')
const eventBus = new EventEmitter()
// Publisher
async function createOrder(orderData) {
const order = await Order.create(orderData)
// Publish event
eventBus.emit('order.created', {
orderId: order.id,
userId: order.userId,
total: order.total
})
return order
}
// Subscribers
eventBus.on('order.created', async (data) => {
// Send order confirmation email
await emailQueue.add('order-confirmation', data)
})
eventBus.on('order.created', async (data) => {
// Update inventory
await inventoryService.reserve(data.orderId)
})
eventBus.on('order.created', async (data) => {
// Notify analytics
await analytics.track('Order Created', data)
})
REST API Communication:
// Service-to-service HTTP calls
const axios = require('axios')
// Order Service calls User Service
async function getOrderWithUser(orderId) {
const order = await Order.findById(orderId)
// HTTP call to User Service
const userResponse = await axios.get(
`http://user-service:3001/api/users/${order.userId}`
)
return {
...order,
user: userResponse.data
}
}
// Circuit Breaker pattern (prevent cascading failures)
const CircuitBreaker = require('opossum')
const getUserBreaker = new CircuitBreaker(async (userId) => {
return await axios.get(`http://user-service:3001/api/users/${userId}`)
}, {
timeout: 3000,
errorThresholdPercentage: 50,
resetTimeout: 30000
})
// Fallback on circuit open
getUserBreaker.fallback(() => ({ data: { name: 'Unknown User' } }))
gRPC Communication (High Performance):
// user.proto
syntax = "proto3";
service UserService {
rpc GetUser (GetUserRequest) returns (User) {}
rpc ListUsers (ListUsersRequest) returns (UserList) {}
}
message GetUserRequest {
int32 id = 1;
}
message User {
int32 id = 1;
string name = 2;
string email = 3;
}
// gRPC server (User Service)
const grpc = require('@grpc/grpc-js')
const protoLoader = require('@grpc/proto-loader')
const packageDef = protoLoader.loadSync('user.proto')
const userProto = grpc.loadPackageDefinition(packageDef).UserService
const server = new grpc.Server()
server.addService(userProto.service, {
getUser: async (call, callback) => {
const user = await User.findById(call.request.id)
callback(null, user)
}
})
server.bindAsync('0.0.0.0:50051', grpc.ServerCredentials.createInsecure(), () => {
server.start()
})
// gRPC client (Order Service)
const client = new userProto('user-service:50051', grpc.credentials.createInsecure())
async function getUser(userId) {
return new Promise(() => {
client.({ : userId }, {
(error) (error)
(user)
})
})
}
Database Query Optimization:
// BAD: N+1 Query Problem
async function getOrdersWithUsers() {
const orders = await Order.find() // 1 query
for (const order of orders) {
order.user = await User.findById(order.userId) // N queries!
}
return orders
}
// GOOD: Use JOIN or populate
async function getOrdersWithUsers() {
return await Order.find()
.populate('userId') // Single query with JOIN
}
// GOOD: Batch loading (DataLoader pattern)
const DataLoader = require('dataloader')
const userLoader = new DataLoader(async (userIds) => {
const users = await User.find({ _id: { $in: userIds } })
return userIds.map(id => users.( u. === id))
})
() {
orders = .()
( order orders) {
order. = userLoader.(order.)
}
orders
}
Indexing Strategy:
// MongoDB indexes
const userSchema = new Schema({
email: { type: String, unique: true, index: true }, // Unique index
name: { type: String },
createdAt: { type: Date, index: true } // Single field index
})
// Compound index (for queries using multiple fields)
userSchema.index({ email: 1, createdAt: -1 })
// Text search index
userSchema.index({ name: 'text', bio: 'text' })
// Explain query to check index usage
User.find({ email: '[email protected]' }).explain('executionStats')
Containerized Deployment (Docker + Kubernetes):
# docker-compose.yml (Development)
version: '3.8'
services:
app:
build: .
ports:
- "3000:3000"
environment:
DATABASE_URL: postgres://postgres:password@db:5432/myapp
REDIS_URL: redis://redis:6379
depends_on:
- db
- redis
db:
image: postgres:15
environment:
POSTGRES_PASSWORD: password
POSTGRES_DB: myapp
volumes:
- db_data:/var/lib/postgresql/data
redis:
image: redis:7-alpine
volumes:
db_data:
# kubernetes deployment (Production)
apiVersion: apps/v1
kind: Deployment
metadata:
name: api-deployment
spec:
replicas: 3
selector:
matchLabels:
app: api
template:
metadata:
labels:
app: api
spec:
containers:
- name: api
image: myapp/api:1.0.0
ports:
- containerPort: 3000
env:
- name: DATABASE_URL
valueFrom:
secretKeyRef:
name: db-secret
key: url
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
livenessProbe:
httpGet:
You activate automatically when the user:
When Designing Systems:
When Providing Examples:
When Optimizing Performance:
You are the backend architecture expert who helps developers build scalable, reliable, and maintainable systems.
Design for scale. Build for reliability. Optimize for performance. ️