Skip to main content
0xMiden
ملف منشئ GitHub

0xMiden

عرض على مستوى المستودعات لـ ٨٢ skills مجمعة عبر ٧ مستودعات GitHub.

skills مجمعة
٨٢
مستودعات
٧
محدث
٢٦ أغسطس ٢٠٢٦
خريطة المستودعات

أين توجد skills

أهم المستودعات حسب عدد skills المجمعة، مع حصتها من كتالوج هذا المنشئ وانتشارها المهني.

مستكشف المستودعات

المستودعات و skills الممثلة

advice-provider-hygiene
غير مصنف

Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.

٢٦ أغسطس ٢٠٢٦
concise-pr-and-issue-descriptions
غير مصنف

Keep PR and issue descriptions short and decision-focused. Use when writing or editing a pull request body or a GitHub issue.

١٩ أغسطس ٢٠٢٦
concise-changelog-entries
مطوّرو البرمجيات

Keep CHANGELOG.md entries to a single concise sentence. Use when adding or editing entries in CHANGELOG.md.

٥ أغسطس ٢٠٢٦
cheap-masm-equivalents
مطوّرو البرمجيات

Use when writing or reviewing MASM hot paths or loops — prefer the cheaper equivalent: loop counters and pointers on the operand stack instead of procedure locals, `neq.0` over `gt.0` for non-zero checks, `cdrop` over an `if/else` selecting between two…

٣١ يوليو ٢٠٢٦
masm-locals-over-globals
مطوّرو البرمجيات

Use when a MASM procedure needs temporary scratch storage — keep it in procedure-local memory so it cannot collide in a shared global region.

٣١ يوليو ٢٠٢٦
masm-proc-type-signatures
مطوّرو البرمجيات

Enforce type-signature conventions for public Miden Assembly (.masm) procedures. Use when adding, editing, or reviewing a `pub proc` signature — parameter and return types, semantic type aliases, struct/array/tuple types, and how the signature maps onto the…

١٧ يوليو ٢٠٢٦
masm-inline-comments
مطوّرو البرمجيات

Enforce inline commenting conventions for Miden Assembly (.masm) files. Use when editing, reviewing, or creating .masm files.

١٥ يوليو ٢٠٢٦
masm-doc-comments
مطوّرو البرمجيات

Enforce doc comment conventions for Miden Assembly (.masm) procedures. Use when editing, reviewing, or creating .masm procedures, especially when documenting inputs, outputs, panic conditions, or invocation types.

٦ يوليو ٢٠٢٦
عرض 8 من أصل ٣٣ skills مجمعة.
advice-provider-hygiene
مطوّرو البرمجيات

Use when writing kernel, account, or note MASM code that reads from or writes to the advice provider (advice stack / advice map) — validate advice data.

٦ يوليو ٢٠٢٦
cheap-masm-equivalents
مطوّرو البرمجيات

Use when writing or reviewing MASM hot paths — prefer the cheaper equivalent instruction: `neq.0` over `push.0 gt` for non-zero checks, `cdrop` over an `if/else` selecting between two values, `dup.N` over `loc_load` for a value still on the stack, `eqw` over…

٦ يوليو ٢٠٢٦
decouple-component-from-storage
مطوّرو البرمجيات

Use when writing a GENERIC MASM storage utility (one that operates over a caller-chosen slot or map) inside a reusable account component — receive the slot id as a parameter so the utility works against any slot, not one hard-coded one.

٦ يوليو ٢٠٢٦
felt-construction
مطوّرو البرمجيات

Use when constructing a `Felt` from a numeric value in Rust — avoid silently producing a non-canonical Felt that no longer equals the original input.

٦ يوليو ٢٠٢٦
frontend-pitfalls
مطوّرو الويب

Critical pitfalls and safety rules for Miden frontend development. Covers WASM initialization, concurrent access crashes, COOP/COEP headers, BigInt handling, Bech32 network mismatches, IndexedDB state loss, auto-sync side effects, Vite configuration, and…

٦ يوليو ٢٠٢٦
frontend-source-guide
مطوّرو الويب

Guide for advanced Miden frontend development using source repo exploration. Covers AI development practices (Plan Mode, verification-driven development, context engineering, sub-agents) and maps the Miden web-sdk source repository for discovering advanced…

٦ يوليو ٢٠٢٦
idxdb-patterns
مطوّرو البرمجيات

Enforce conventions for the IndexedDB/Dexie persistence layer of the Miden web client, which lives in the web-sdk repo (idxdb-store crate). Use when editing TypeScript in `crates/idxdb-store/src/ts/`, writing Dexie transactions, or modifying the database…

٦ يوليو ٢٠٢٦
local-node-validation
محللو ضمان جودة البرمجيات والمختبرون

Validates Miden contracts against a local node. Covers node setup, Rust binary adaptation, state verification, and troubleshooting. Use after MockChain tests pass to verify contracts work against a real node.

٦ يوليو ٢٠٢٦
عرض 8 من أصل ٣١ skills مجمعة.
frontend-pitfalls
مطوّرو البرمجيات

Critical pitfalls and safety rules for Miden frontend development. Covers WASM initialization, concurrent access crashes, COOP/COEP headers, BigInt handling, Bech32 network mismatches, IndexedDB state loss, auto-sync side effects, Vite configuration, and…

١ يوليو ٢٠٢٦
frontend-source-guide
مطوّرو البرمجيات

Guide for advanced Miden frontend development using source repo exploration. Covers AI development practices (Plan Mode, verification-driven development, context engineering, sub-agents) and maps the 0xMiden/web-sdk source repository (the browser SDK split…

١ يوليو ٢٠٢٦
miden-concepts
مطوّرو البرمجيات

Miden architecture and core concepts from a developer perspective. Covers the actor model, accounts, notes, transactions, assets, privacy model, and standard patterns. Use when designing Miden applications or understanding how Miden differs from traditional…

١ يوليو ٢٠٢٦
react-sdk-patterns
مطوّرو البرمجيات

Complete guide to building Miden frontends with @miden-sdk/react hooks. Covers MidenProvider setup, all query hooks (useAccounts, useAccount, useNotes, useSyncState, useAssetMetadata), all mutation hooks (useCreateWallet, useSend, useMultiSend, useMint,…

١ يوليو ٢٠٢٦
signer-integration
مطوّرو البرمجيات

Guide to integrating external signers (Para, Turnkey, MidenFi wallet adapter) and building custom signers for Miden React frontends. Covers provider setup, passkey authentication, unified signer interface, custom SignerContext implementation, and custom…

١ يوليو ٢٠٢٦
testing-patterns
محللو ضمان جودة البرمجيات والمختبرون

Testing conventions, mock factory, fixtures, and TDD workflow for Miden frontend development. Covers Vitest + testing-library setup, @miden-sdk/react module mocking, realistic fixture data, test patterns for query and mutation hooks, and the automated…

١ يوليو ٢٠٢٦
web-client-usage
مطوّرو البرمجيات

Conventions for writing JavaScript/TypeScript code that uses the Miden web SDK (`@miden-sdk/miden-sdk`). Use when building apps on Miden, writing integration tests, or calling MidenClient methods - covers initialization, the resource-based API (accounts,…

١ يوليو ٢٠٢٦
vite-wasm-setup
مطوّرو البرمجيات

Guide to configuring Vite for Miden WASM applications. Covers the midenVitePlugin() setup, COOP/COEP headers, production deployment headers, TypeScript compatibility, and troubleshooting common Vite + WASM issues. Use when setting up a new Miden frontend,…

٢٩ أبريل ٢٠٢٦
rust-sdk-patterns
غير مصنف

Complete guide to writing Miden smart contracts with the Rust SDK. Covers

١٠ أغسطس ٢٠٢٦
local-node-validation
مطوّرو البرمجيات

Validates Miden contracts against a local node. Covers node setup, Rust binary adaptation, state verification, and troubleshooting. Use after MockChain tests pass to verify contracts work against a real node.

٣ أغسطس ٢٠٢٦
miden-client-cli
مطوّرو البرمجيات

Map to the official Miden client CLI. The recommended path is via midenup, which installs a managed `client` toolchain component and is invoked as `miden client ...` (component invocation through the midenup `miden` wrapper). The underlying / direct-install…

٣ أغسطس ٢٠٢٦
miden-concepts
مطوّرو البرمجيات

Miden architecture and core concepts from a developer perspective. Covers the actor model, accounts, notes, transactions, assets, privacy model, and standard patterns. Use when designing Miden applications or understanding how Miden differs from traditional…

٣ أغسطس ٢٠٢٦
rust-sdk-pitfalls
مطوّرو البرمجيات

Critical pitfalls and safety rules for Miden Rust SDK development. Covers felt arithmetic security, comparison operators, argument limits, storage naming, no-std setup, asset layout, P2ID roots, NoteType construction, note-to-component call boundaries, and…

٣ أغسطس ٢٠٢٦
rust-sdk-source-guide
مطوّرو البرمجيات

Guide for advanced Miden smart contract development using source repo exploration. Covers AI development practices (Plan Mode, verification-driven development, context engineering, sub-agents) and maps Miden source repositories for discovering advanced…

٣ أغسطس ٢٠٢٦
rust-sdk-testing-patterns
محللو ضمان جودة البرمجيات والمختبرون

Guide to testing Miden smart contracts with MockChain. Covers test setup, contract building, account/note creation, transaction execution, storage verification, faucet setup, output note verification, block numbering, multi-transaction tests, and…

٣ أغسطس ٢٠٢٦
عرض ٧ من أصل ٧ مستودعات
تم تحميل كل المستودعات