Skip to main content
تشغيل أي مهارة في Manus
بنقرة واحدة
مستودع GitHub

forge

يحتوي forge على 93 من skills المجمعة من reliant-labs، مع تغطية مهنية على مستوى المستودع وصفحات skill داخل الموقع.

skills مجمعة
93
Stars
4
محدث
2026-07-15
Forks
1
التغطية المهنية
9 فئات مهنية · 100% مصنفة
مستكشف المستودعات

Skills في هذا المستودع

design
مصممو واجهات الويب والرقمية

Visual-design discipline for forge frontends — brief the work before building (never invent an aesthetic without user input), declare the design system before coding, lean on the component library, use restrained color/type systems, never hand-draw complex SVGs, and verify visually before declaring done.

2026-07-15
frontend
مطوّرو الويب

Write Next.js frontends — generated hooks, component library, Tailwind v4, visual verification, and Connect RPC clients.

2026-07-15
adapter
مطوّرو البرمجيات

Outbound boundary translators. One adapter per third-party system / queue / storage backend; narrow interface, vendor-neutral callers.

2026-07-08
api
مطوّرو البرمجيات

Write Connect RPC handlers — proto-driven codegen, the thin-translation handler pattern (validate, extract auth, convert proto↔internal, call service, wrap errors via `svcerr.Wrap`), middleware, and testing. Business logic lives in `internal/handlers/<svc>/contract.go`, never in handlers.

2026-07-08
architecture
مطوّرو البرمجيات

Forge project conventions and architecture — project structure, generated vs hand-written code, the generate pipeline, proto annotations, contracts, wiring, and naming.

2026-07-08
interactor
مطوّرو البرمجيات

Use-case orchestrators that compose two or more adapters/services. Deps are interfaces only — designed for unit tests with all-mock collaborators.

2026-07-08
proto
مطوّرو البرمجيات

Proto file reference — annotations, CRUD conventions, field rules, and common mistakes.

2026-07-08
proto-split
مطوّرو البرمجيات

Split a multi-service proto file into per-service files — when to split, how to identify shared types, and the commit-per-phase discipline that keeps each step shippable.

2026-07-08
service-layer
مطوّرو البرمجيات

Business logic behind an interface — Service interface in domain types, Deps struct for collaborators, sentinel errors at the storage edge.

2026-07-08
investigate
مطوّرو البرمجيات

Investigate bugs — hypothesis formation, code tracing, and common Forge failure patterns.

2026-07-01
multi-cluster-e2e
مديرو الشبكات وأنظمة الحاسوب

Debug a k3d multi-cluster e2e env — read the pod status before theorizing the network, hold the pod up on failure, and the nested-cluster gotchas (image pull, host-gateway DNS, path-MTU) that bite only across clusters.

2026-07-01
reproduce
محللو ضمان جودة البرمجيات والمختبرون

Reproduce bugs — diagnostic logging, runtime evidence collection, and e2e reproduction.

2026-07-01
debug
مطوّرو البرمجيات

Debug methodology — triage, parallel investigation, and synthesis.

2026-07-01
observability
مديرو الشبكات وأنظمة الحاسوب

Observability — forge doctor, Grafana dashboards, querying logs/traces/metrics.

2026-07-01
e2e
محللو ضمان جودة البرمجيات والمختبرون

End-to-end tests — full stack, multi-service flows, browser testing.

2026-06-24
testing
محللو ضمان جودة البرمجيات والمختبرون

Testing methodology — the test pyramid, mock vs real, harness patterns, flakiness prevention, and discipline.

2026-06-24
integration
محللو ضمان جودة البرمجيات والمختبرون

Integration tests — real database, build tags, transaction isolation.

2026-06-23
unit
محللو ضمان جودة البرمجيات والمختبرون

Unit tests — hermetic, fast, handler-level tests using generated mocks.

2026-06-23
testing-methodology
محللو ضمان جودة البرمجيات والمختبرون

Testing methodology — test harness design, mock strategies, flakiness prevention, and structured test planning

2026-06-23
dev
مطوّرو البرمجيات

Local-cluster dev loop primitives — cluster lifecycle, status, logs, ingress URLs, host/cluster split. Compose with project-specific bash for sibling-repo deploys, helm bootstraps, and webhook listeners.

2026-06-22
v0-x-to-serverkit-composed
مطوّرو البرمجيات

Migrate serverkit from Run(ctx, cfg, hooks, args) — where args were service NAMES matched through a string registry — to Run(ctx, cfg, serverkit.Server{...}) with FULLY TYPED service selection. The Application interface, Hooks, string-keyed BootstrapOnly selection, the string→inventory mount lookup, AND the generated cmd/otel.go shim are all gone. The cmd layer becomes a real cobra command tree under cmd/<bin>/cmd (devspace idiom), dir-nested by category; each service gets a typed (*app.Components).Mount<Svc> method and its own cmd/<bin>/cmd/services/<name>.go subcommand that passes that method EXPRESSION to a shared cmd.Serve() helper. serverkit OWNS OTel. Use when bumping across the typed-composed-server release.

2026-06-22
v0-x-to-typed-di
مطوّرو البرمجيات

Migrate DI from wire_gen.go name-matching + the appkit string-keyed DI table to a GENERATED type-topological composition (internal/app/compose.go, func NewComponents(infra) (*Components, error)) that resolves each Deps field BY TYPE from constructed components or fields on an OWNED Infra struct (internal/app/providers.go, OpenInfra). The old pkg/app DI unit is fully removed; a missing required provider is now a loud error (generate-time when provable, compile-time otherwise), not a silent nil. Move setup.go infra construction into Infra/OpenInfra; two-phase setters (e.g. billing.WithReliantAPIKeyIssuer(llm)) are wired by `forge disown internal/app/compose.go` and editing the construction site. Use when bumping across the typed-DI release.

2026-06-22
api-rest
مطوّرو البرمجيات

REST URLs on top of Connect handlers via connectrpc.com/vanguard — opt-in runtime transcoding (no parallel codegen), default annotations on CRUD RPCs, and composition with api.openapi.

2026-06-22
audit-json
مطوّرو البرمجيات

Reading `forge audit --json` and `forge map --json` — the JSON shapes, common jq queries, CI integration patterns, and the additive-extension contract that keeps consumers stable as new finding types appear.

2026-06-22
binaries
مطوّرو البرمجيات

Non-server long-running binaries — when to use `forge add binary` vs `forge add worker` vs `forge add service`, plus the lifecycle and deploy story.

2026-06-22
getting-started
مطوّرو البرمجيات

Create a new Forge project, add components, and understand the development workflow.

2026-06-22
migration-cli
مطوّرو البرمجيات

Migrate a CLI / library project to forge — --kind cli, second binaries, when contract.go isn't worth it.

2026-06-22
migration-service
مطوّرو البرمجيات

Migrate a server-shaped project to forge — services, operators, workers, webhooks, packs, multi-binary cmd/, k8s manifests.

2026-06-22
migration
مطوّرو البرمجيات

Migrate an existing project to forge — pre-flight, project shape, module path strategy, package porting order, common gotchas.

2026-06-22
pack-development
مطوّرو البرمجيات

Write a forge pack — when to use packs vs. scaffold code, the manifest schema, the install lifecycle, conventions.

2026-06-22
services
مطوّرو البرمجيات

Scaffold and wire new services, packages, and frontends in a Forge project.

2026-06-22
workers
مطوّرو البرمجيات

Background workers — adding, implementing, and testing workers (including cron-scheduled).

2026-06-22
auth
مطوّرو البرمجيات

Authentication, authorization, and multi-tenancy — forge.yaml config, JWT, API keys, RBAC, dev mode, and tenant scoping.

2026-06-22
contracts
مطوّرو البرمجيات

Using forge's contract system — when to use contract.go, how to write one, what forge generate produces, integrating with tests.

2026-06-22
forge-libraries
مطوّرو البرمجيات

One-page index of every forge/pkg/* subpackage. Read this BEFORE porting a utility from an existing codebase — the equivalent may already exist.

2026-06-22
migration-upgrade
مطوّرو البرمجيات

Upgrade a forge project to a newer forge binary version — version pinning in forge.yaml, per-version migration skills, and the deprecation cycle policy.

2026-06-22
v0-1-to-v0-2
مطوّرو البرمجيات

TOMBSTONE — retired migration. v0.2's name-matched wire_gen.go DI (pkg/app/{wire_gen,app_gen,app_extras}.go, AppExtras exact-name resolution) was itself removed. Do NOT migrate toward this shape. To arrive at the current explicit composition root, use v0.x-to-typed-di (and v0.x-to-serverkit-composed for the typed-mount cmd layer).

2026-06-22
my-project
مطوّرو البرمجيات

Migrate a multi-service forge project from binary=per-service (one Application per service in KCL, one image build per service) to binary=shared (one Go binary, cobra subcommand per service, one Docker image, MultiServiceApplication for KCL deploy). Use when CI image builds dominate cycle time or when services share substantial internal libraries.

2026-06-21
v0-x-to-internal-layout
مطوّرو البرمجيات

Migrate top-level handlers/, workers/, operators/ into internal/handlers/, internal/workers/, internal/operators/. The packages are app-internal (no external importers), so they belong under internal/ where the compiler enforces privacy. This is a mechanical move + import-path rewrite; the pkg/ → internal/ fold is a SEPARATE later migration. Use when bumping across the layout-collapse release.

2026-06-21
db
مصممو قواعد البيانات

Database work — SQL migrations are the single schema source of truth; forge generate projects the applied schema into entity structs, ORM, CRUD wiring, and frontend pages.

2026-06-20
عرض أهم 40 من أصل 93 skills مجمعة في هذا المستودع.