public/SKILLS/Web3 & Blockchain/framework/SKILL.md
Expert on Aptos Framework (0x1 standard library) modules including account, coin, fungible_asset, object, timestamp, table, smart_table, event, randomness, aggregator, and resource_account. Essential for all Aptos development.
npx skillsauth add eric861129/skills_all-in-one aptos-frameworkInstall 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.
Expert on the Aptos Framework (0x1 address) - the standard library of core modules.
aptos_framework/
├── account.move - Account management
├── coin.move - Fungible token standard (v1)
├── fungible_asset.move - Fungible asset standard (v2)
├── object.move - Object model primitives
├── timestamp.move - Block timestamp access
├── table.move - Key-value storage
├── smart_table.move - Auto-split table
├── event.move - Event emission
├── randomness.move - Secure randomness (VRF)
├── aggregator_v2.move - Parallel execution
├── resource_account.move - Deterministic deployment
move-stdlib/
├── vector.move - Dynamic arrays
├── option.move - Optional values
├── string.move - UTF8 strings
├── signer.move - Signer operations
├── error.move - Error codes
use aptos_framework::account;
// Create account
account::create_account(new_address);
// Get sequence number
account::get_sequence_number(addr);
// Check existence
account::exists_at(addr);
// SignerCapability pattern
let (resource_signer, signer_cap) = account::create_resource_account(deployer, b"SEED");
use aptos_framework::table::{Self, Table};
struct Registry has key {
data: Table<address, UserData>
}
table::add(&mut t, key, value);
table::borrow(&t, key);
table::borrow_mut(&mut t, key);
table::remove(&mut t, key);
table::contains(&t, key);
#[event]
struct TransferEvent has drop, store {
from: address,
to: address,
amount: u64,
}
event::emit(TransferEvent { from, to, amount });
use aptos_framework::timestamp;
timestamp::now_seconds();
timestamp::now_microseconds();
use aptos_framework::randomness;
#[randomness]
public entry fun random_mint(user: &signer) {
let random_value = randomness::u64_integer();
let amount = randomness::u64_range(100, 1000);
}
use aptos_framework::aggregator_v2::{Self, Aggregator};
struct Stats has key {
total: Aggregator<u64> // Parallel-safe counter
}
aggregator_v2::create_aggregator(0);
aggregator_v2::add(&mut agg, 1);
aggregator_v2::read(&agg);
// Deterministic address: hash(creator_address, seed)
let (resource_signer, signer_cap) = account::create_resource_account(deployer, b"SEED");
// Store capability for later use
move_to(&resource_signer, Data { signer_cap });
// Use later
let signer = account::create_signer_with_capability(&signer_cap);
struct TimeLock has key {
unlock_time: u64,
}
public fun withdraw() acquires TimeLock {
assert!(timestamp::now_seconds() >= timelock.unlock_time, ERROR_LOCKED);
}
struct Registry<K: copy + drop, V: store> has key {
data: Table<K, V>,
count: u64,
}
#[event]
struct StateChanged has drop, store {
old_state: u8,
new_state: u8,
timestamp: u64,
}
event::emit(StateChanged { old_state, new_state, timestamp: timestamp::now_seconds() });
development
Run structured What-If scenario analysis with multi-branch possibility exploration. Use this skill when the user asks speculative questions like "what if...", "what would happen if...", "what are the possibilities", "explore scenarios", "scenario analysis", "possibility space", "what could go wrong", "best case / worst case", "risk analysis", "contingency planning", "strategic options", or any question about uncertain futures. Also trigger when the user faces a fork-in-the-road decision, wants to stress-test an idea, or needs to think through consequences before committing.
development
Access comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
development
Use when challenging ideas, plans, decisions, or proposals using structured critical reasoning. Invoke to play devil's advocate, run a pre-mortem, red team, or audit evidence and assumptions.
tools
Core skill for the deep research and writing tool. Write scientific manuscripts in full paragraphs (never bullet points). Use two-stage process with (1) section outlines with key points using research-lookup then (2) convert to flowing prose. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), for research papers and journal submissions.