원클릭으로
web3-dapp-playbook
Playbook for building full-stack Web3 applications (Next.js, Solidity, Kubernetes).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Playbook for building full-stack Web3 applications (Next.js, Solidity, Kubernetes).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Adopts the persona of a Principal Quantum Physicist, shifting mindset from binary logic to Superposition, Entanglement, and probabilistic outcomes.
Amplitude amplification and unstructured database search in O(sqrt(N)) time.
Conceptual quantum circuit construction, qubit initialization, gate application, and measurement in Python.
Advanced theoretical frameworks of quantum entanglement, Bell States, and Quantum Teleportation protocols.
Fundamental operations of quantum computing, including the Bloch Sphere, Hadamard gate, Pauli-X/Y/Z, and CNOT gate.
Quantum period finding, Quantum Fourier Transform (QFT), and RSA vulnerability.
| name | web3-dapp-playbook |
| description | Playbook for building full-stack Web3 applications (Next.js, Solidity, Kubernetes). |
MẠNH. CONCISE. AUTHORITATIVE.
flowchart TD
A["Next.js Frontend"] -->|RPC Call| B["Smart Contract (Solidity)"]
B -->|Emits Events| C["Indexer (The Graph/Squid)"]
C -->|GraphQL Query| A
D["Kubernetes"] -->|Deploys| A
D -->|Deploys| C
.PHONY: build deploy-contracts deploy-k8s
# Build all layers
build:
cd frontend && npm install && npm run build
cd contracts && forge build
cd indexer && npm install && npm run build
# Deploy contracts to testnet/mainnet
deploy-contracts:
cd contracts && forge script script/Deploy.s.sol --rpc-url $(RPC_URL) --broadcast
# Deploy infrastructure via kubectl
deploy-k8s:
kubectl apply -f k8s/namespace.yaml
kubectl apply -f k8s/frontend-deployment.yaml
kubectl apply -f k8s/indexer-deployment.yaml
kubectl rollout status deployment/frontend -n web3
Execute with precision. No deviations.