name: plan-goal description: >- Turn a fuzzy task into a verifier-first goal. Instead of planning how to do X, first write a self-contained prompt that CHECKS whether X is actually done, make that verifier the standing goal, then run plan→do→verify cycles against it until it passes. Use this whenever starting a non-trivial, multi-step task where "done" is ambiguous or premature success is a risk — especially when the user says "plan-goal", "verify-first", "define done", "set the goal", "how will we know this worked", or asks you to plan something substantial. Prefer this over jumping
| # License: MIT | |
| import random | |
| import typing as t | |
| import logging | |
| from abc import ABC | |
| from dataclasses import dataclass | |
| from anyio import create_memory_object_stream, create_task_group, fail_after | |
| from anyio.streams.memory import MemoryObjectReceiveStream, MemoryObjectSendStream |
| {"version":1,"resource":"file:///Users/knrz/Git/shaman-ai/office-intern-ai/.tool-versions","entries":[{"id":"rstl","timestamp":1691971194860}]} |
For context, read CAP for VCM first.
In our collective efforts to address climate change and promote ecological regeneration, CAP and Regen Network are pioneering solutions that leverage blockchain technology to bring trust, transparency, and efficiency to the carbon and ecological credit markets. This piece aims to highlight the unique value propositions of both CAP and Regen Network, and proposes a collaborative framework to leverage the strengths of both platforms for mutual benefit.
Regen Network, a Cosmos app-chain, has been a trailblazer in the ecological credit marketplace. Through its marketplace, corporations can buy, trade, and retire digital carbon and ecological credits to meet their climate commitments. They've developed their own nature-based methodologies that incorporate holistic, systems-level thinking to tackling climate change.
While Regen Network offers a valuable solution within its ecosystem
For context, read CAP for VCM first.
As the world grapples with the urgency of climate change, innovative solutions like CAP and Toucan are stepping up to the plate, providing key infrastructure to digitize and tokenize carbon credits, and revolutionizing the voluntary carbon market. This piece aims to explore the unique propositions of both CAP and Toucan, and proposes a collaborative framework that could enhance the effectiveness and reach of both systems.
Toucan is carving out its niche by providing substantial liquidity to digitized carbon credits from various registries through its Uniswap V2 Liquidity Pools. This is a major accomplishment for the carbon markets and opens them to the world of decentralized finance. This unique approach is democratizing the carbon market, making it accessible and transparent.
Where Toucan offers liquidity and a transparent blockchain-powered database for carbon credits, CAP provides
For context, read CAP for VCM first.
In the evolving world of sustainability and carbon markets, CAP and Hedera Guardian provide unique solutions to the challenges of digitizing and tokenizing ecological assets. This piece aims to explore their distinct roles and propose a collaborative framework that could enhance the effectiveness and reach of both systems.
Hedera Guardian is an enterprise solution designed to bring trust and transparency to carbon markets. It uses the Hedera public distributed ledger network to create auditable, traceable, and reproducible records that document the emission process and lifecycle of carbon credits. This reduction of fraud in Environmental, Social, and Governance (ESG) markets is a significant step forward in making sustainability assets more credible and reliable.
Both Guardian and CAP enable a wide range of applications. But whereas Guardian is grounded on the Hedera blockch
For context, read CAP for VCM first.
While both CAP and Hypercerts are pushing the envelope on impact verification and tokenization, they each bring a unique set of strengths to the table. This writing aims to explore these strengths, highlight the complementarity of CAP and Hypercerts, and propose a collaborative framework to amplify their collective impact.
At first glance, Hypercerts and CAP might seem like two systems serving the same purpose. However, a closer look reveals that they are more like complementary tools in a toolkit: Hypercerts is a spoon, versatile and suitable for a broad range of applications, while CAP is a knife, finely honed for a specific task.
Hypercerts is addressing the critical issue of rewarding public goods retroactively. It operates on the premise that rewarding projects based on their actual impact, rather than mere predictions, can lead to more efficient resource allocation, increas
The Claim Accreditation Protocol's power must be turned from potential into material by harnessing the protocol to create a variety of impactful applications. CAP serves as a baseplate, a foundation upon which an entire ecosystem of carbon credit applications can be built. These applications can address a wide range of needs, from project financing to carbon credit verification, and can be created by a variety of players, from project developers to methodology designers to evaluating bodies.
The following document explores a series of potential applications that could be built on top of CAP. These are not prescriptive or definitive; they are illustrative, intended to spark ideas and inspire innovation. The actual applications built on CAP, and their success, will be determined by the creativity, dedication, and resourcefulness of the developers and organizations that build them.
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.17; | |
| import "forge-std/Test.sol"; | |
| import "solady/utils/LibString.sol"; | |
| abstract contract DiamondTest is Test { | |
| using LibString for string; | |
| function _facetSelectors( |