• About Us
  • Privacy Policy
  • Disclaimer
  • Contact Us
TechTrendFeed
  • Home
  • Tech News
  • Cybersecurity
  • Software
  • Gaming
  • Machine Learning
  • Smart Home & IoT
No Result
View All Result
  • Home
  • Tech News
  • Cybersecurity
  • Software
  • Gaming
  • Machine Learning
  • Smart Home & IoT
No Result
View All Result
TechTrendFeed
No Result
View All Result

Structured-Immediate-Pushed Growth (SPDD)

Admin by Admin
April 29, 2026
Home Software
Share on FacebookShare on Twitter


As soon as a crew adopts AI coding assistants, the primary beneficial properties present up on the
particular person degree: one developer can draft, modify, and refactor code
a lot sooner than earlier than.
However supply velocity isn’t restricted by typing.
Whenever you have a look at the complete supply lifecycle, from necessities via
launch, new friction seems:

  • Ambiguous necessities develop into code rapidly, and misunderstandings scale with them.
  • Evaluations need to course of extra change, and inconsistency turns into simpler to introduce.
  • Extra integration and testing points floor as a result of “generated” doesn’t suggest “aligned.”
  • Manufacturing danger is tougher to cause about when the quantity of change rises.

So sure, native velocity improves. However that does not mechanically
translate into system-level throughput. It is like shopping for a Ferrari and driving it on muddy roads: the engine is
highly effective, however your arrival time is set by highway situations and
visitors. In our expertise, the true query is not “How can we generate extra code?” It is
how can we make AI-generated adjustments governable, reviewable, and reusable,
so groups get sooner and safer?

That led our Thoughtworks inner IT groups (International IT Providers) to a
technique and workflow we now name Structured Immediate-Pushed Growth (SPDD).
SPDD goals to show AI help from private effectivity into an organization-level
functionality that scales, with out buying and selling away high quality.

Prompts as First-Class Supply Artifacts

What’s SPDD?

Structured Immediate-Pushed Growth (SPDD) is an engineering technique
that treats prompts as first-class supply artifacts.

As a substitute of counting on advert hoc chats, SPDD turns prompts into property that
might be: model managed, reviewed, reused, and improved over time.
Groups use structured prompts to seize necessities, area language,
design intent, constraints, and a job breakdown. Then the LLM generates
code inside an outlined boundary, so output turns into extra predictable and
simpler to validate.

It has two core parts

The REASONS Canvas

The REASONS Canvas is a construction for producing prompts. It forces
readability round necessities, area mannequin, answer method, system
construction, job decomposition, reusable norms, and safeguards. So the
LLM is guided by intent, not guesswork.

The REASONS Canvas is a seven-part construction that guides a immediate from
intent → design → execution → governance.

Summary elements (intent & design)

  • R — Necessities: What downside are we fixing, and what’s DoD?
  • E — Entities: Area entities and relationships.
  • A — Method: The technique of how we’ll meet the necessities.
  • S — Construction: The place the change suits within the system; parts and dependencies.

Particular elements (execution)

  • O — Operations: Break the summary technique into concrete, testable implementation steps.

Frequent requirements elements (governance)

  • N — Norms: Cross-cutting engineering norms (naming, observability, defensive coding, and so on.).
  • S — Safeguards: Non-negotiable boundaries (invariants, efficiency limits, safety guidelines, and so on.).

The canvas aligns intent and limits earlier than code is generated, shifting uncertainty to the left.
As a result of the structured immediate captures the complete specification, reviewers cause a few single artifact as an alternative of scattered chat logs and partial diffs.
By following the identical construction, each immediate turns into governable in the identical means.
And as area information and design choices accumulate in every immediate, they compound particular person experience throughout iterations and scale back variability throughout the crew.

The SPDD workflow

The workflow brings prompts into the identical self-discipline as code: commit
historical past, evaluation, and high quality gates. It additionally enforces a easy however highly effective rule:

When actuality diverges, repair the immediate first — then replace the code.

Over time, this adjustments how groups work. Evaluations transfer away from “spot
the bug” towards “test the intent.” Rework turns into extra managed. And
profitable patterns naturally accumulate right into a reusable immediate library
that helps AI-First Software program Supply (AIFSD).

Should you’ve recognized about Spec-Pushed
Growth
,
you may acknowledge the identical start line: write the spec clearly first,
then let the mannequin implement. SPDD takes a distinct angle. It treats
structured prompts as ruled, reusable, versioned crew property (REASONS
+ workflow) that evolve alongside the code – an method that Birgitta
Böckeler categorizes as a spec-anchored method.

The purpose of the SPDD workflow is to show enterprise enter → abstraction →
execution → validation → launch right into a “closed loop”—and to ensure
immediate property and code evolve collectively, not individually.

SPDD workflow

The purpose of this workflow is to anchor collaboration on the prompts, so
that builders and product homeowners can keep away from repeated cycles of alignment.
The immediate units an express boundary for code technology, lowering the
randomness of the LLM’s non-determinism, making it simpler to control. By
treating the structured prompts as first-class artifacts in model
management, we flip profitable practices into reusable property, enhancing
consistency and lowering reinvention.

In apply these steps are carried out via instructions offered
by openspdd, a command-line instrument that
implements the SPDD workflow. The desk under summarizes every
command.

Command Kind Function
/spdd-story Non-compulsory Breaks a big requirement into unbiased, deliverable
consumer tales following the INVEST precept.
/spdd-analysis Core Extracts area key phrases from necessities, scans related
code, and produces a strategic evaluation protecting area ideas,
dangers, and design course.
/spdd-reasons-canvas Core Generates the complete REASONS Canvas — an executable blueprint
from high-level rationale all the way down to method-level operations.
/spdd-generate Core Reads the Canvas and generates code job by job, strictly
following the operations, norms, and safeguards outlined within the
immediate.
/spdd-api-test Non-compulsory Generates a cURL-based API check script with structured check
circumstances protecting regular, boundary, and error situations.
/spdd-prompt-update Core Incrementally updates the Canvas when necessities change
(necessities → immediate → code).
/spdd-sync Core Synchronizes code-side adjustments (refactoring, fixes) again
into the Canvas so the immediate stays an correct file of the
present code (code → immediate).

Enhancing a billing engine with SPDD

A sophisticated workflow is obscure within the summary, so
now we have ready an instance workflow of enhancing an present software program
system. This technique, and its enhancement, are neccessarily small so as
to be understandable inside a tutorial article. That mentioned the enhancement
instance is a full end-to-end instance: from creating preliminary
necessities, to analyzing enterprise necessities, to producing and reviewing a structured immediate,
to producing and verifying code, to ultimate cleanup and testing.

You possibly can observe together with this instance by putting in
openspdd in your individual surroundings.

The present system

The present system is an easy billing engine that calculates payments
for utilizing a large-language mannequin. It accepts a file that captures how
many tokens are utilized in a session and calculates a invoice.

The whole codebase for this preliminary model is
accessible on GitHub.
The repository contains the preliminary necessities story
and all of the SPDD artifacts used to generate it.
For brevity, we do not describe that preliminary technology right here, but it surely follows primarily the identical steps as that for the enhancement.
We deal with describing the enhancement as a result of most work on a system are enhancements.

The enhancement

Pushed by evolving enterprise necessities and direct consumer suggestions, we’re enhancing the billing engine to transition from a static pricing mannequin to a extra refined,
versatile infrastructure. This replace goals to help various subscription methods and variable, model-specific pricing via the next key adjustments:

  • API enhancement: replace the present POST /api/utilization
    endpoint to just accept a brand new, required modelId parameter
    (e.g., “fast-model”, “reasoning-model”).
  • Mannequin-aware pricing: shift from a single world fee to dynamic
    pricing, the place prices fluctuate relying on the precise AI mannequin
    invoked.
  • Multi-plan billing logic: introduce distinct billing behaviors
    primarily based on the client’s subscription tier:
    • Customary plan (optimized): retains the worldwide month-to-month quota,
      however any overage utilization is now calculated utilizing model-specific
      charges.
    • Premium plan (new): operates with out a quota restrict. It
      introduces cut up billing, the place immediate tokens and completion
      tokens are charged individually at totally different charges relying
      on the mannequin used.
  • Architectural scalability: implement an extensible design sample
    (similar to Technique or Manufacturing facility) to cleanly isolate the calculation
    formulation for various plans, making certain the system can simply
    accommodate future pricing fashions.

Since this new part encompasses each enterprise necessities and technical particulars,
it’s sometimes accomplished collaboratively via a pairing session between a PO (or BA) and a developer.

Step 1: Create preliminary necessities

To kick off the method rapidly, we will use the /spdd-story
command to generate a consumer story instantly primarily based on the enhancement. Usually, consumer tales are offered by the PO or BA.
Nevertheless, in our workflow, we will remodel tales of any type right into a constant format and dimension.
So long as there’s shared alignment on the ultimate acceptance standards, this step might be carried out by a PO, BA, or developer, relying on the crew’s versatile division of labor.

Instruction:

How spdd-story works

This command breaks a big requirement into unbiased,
deliverable consumer tales following the INVEST precept (1–5 days
of labor every). Every story contains acceptance standards written in
enterprise language, able to function enter for
/spdd-analysis.

Its goal is to make giant necessities manageable and to make sure a standardized,
predictable format for the subsequent steps.

The AI analyzed the enhancement description and cut up it into two
consumer tales:

The auto-generated tales are detailed sufficient to function a baseline
for a proper venture. For this walkthrough we consolidate them right into a
single simplified story so the instance stays self-contained.

Instruction:

Consolidate the next two consumer tales right into a single, simplified
story:
@[User-story-1-1-initial]Multi-Plan-Billing-Basis-&-Customary-Plan-Mannequin-Conscious-Pricing.md
@[User-story-1-2-initial]Premium-Plan-Break up-Price-Billing.md

Necessities:
1. Merge each plans (Customary and Premium) into one coherent story.
2. Hold solely the sections: Background, Enterprise Worth, Scope In, Scope Out, and Acceptance Standards.
3. Strip implementation-level element — deal with what the system ought to do, not how.
4. Acceptance Standards should use Given/When/Then format with concrete numeric examples.
5. Hold the outcome concise — no multiple web page.
6. Solely maintain three high-level ACs.

Directions of this sort hardly ever produce similar textual content on each run —
fashions and sampling introduce small variations — so we nonetheless count on to
evaluation and tweak the output earlier than treating it as ultimate. The mixed
story under is the model we refined for this walkthrough: a intentionally
simplified consolidation of the 2 preliminary tales.

Step 2: Make clear evaluation

Earlier than leaping into implementation, the developer opinions the consumer
story to construct a shared understanding of what it means in apply. If
there are apparent business-level points, that is the purpose to align with
the BA or PO. On this case the story is obvious sufficient, so we transfer
straight to breaking it down alongside three dimensions: core logic, scope
boundaries, and definition of finished.

Core logic

One new required subject on the API: modelId. The client
now tells us which AI mannequin they used — that is the important thing that unlocks the
proper value.

  • Customary Plan: Buyer has a month-to-month token quota. Utilization
    inside quota is free. Overage is charged at a model-specific fee
    (e.g., fast-model $0.01/1K vs. reasoning-model $0.03/1K). Current
    quota logic stays; solely the speed lookup adjustments.
  • Premium Plan: No quota. Each token is billed from the
    first one. Immediate tokens and completion tokens are charged individually,
    every at a model-specific fee. Invoice = immediate cost + completion
    cost. This plan is totally new.
  • Routing: The system determines the client’s plan and
    dispatches to the matching billing components. The design have to be simple to
    lengthen — Enterprise plans (Story 2) are subsequent.

Scope boundaries

We’re solely calculating the present invoice. We’re NOT constructing buyer
CRUD, NOT querying historic payments, NOT managing subscriptions, and NOT
including/eradicating fashions.

Definition of finished

The next situations restate the story’s acceptance standards
with the implementation element the crew must confirm. The fourth
merchandise (Response format) shouldn’t be a brand new enterprise AC — it captures the
non-functional contract the developer provides to make the factors
testable end-to-end.

  • Validation: Lacking modelId → HTTP 400.
    Unknown buyer → HTTP 404. Damaging tokens → HTTP 400. All
    present validations stay intact.
  • Customary Plan billing: A buyer with a 100K quota and
    90K already used submits 30K tokens for fast-model ($0.01/1K).
    Anticipated outcome: 10K coated by quota, 20K overage, cost $0.20.
    The identical request with reasoning-model ($0.03/1K) yields $0.60 —
    similar quota logic, totally different fee.
  • Premium Plan billing: A buyer submits 10K immediate
    tokens + 20K completion tokens for reasoning-model (immediate $0.03/1K,
    completion $0.06/1K). Anticipated outcome: $0.30 + $1.20 = $1.50. No
    quota, no overage — immediate and completion are billed individually.
  • Response format: HTTP 201 returning invoice ID, buyer ID,
    token counts, timestamp, modelId, and a plan-appropriate
    cost breakdown.

If all these situations go, we have conquered this story.

Step 3: Generate evaluation context

With the necessities and scope clarified, we use the
/spdd-analysis command. By feeding it the enterprise
necessities, we instruct the AI to generate a complete evaluation
context.

How spdd-analysis works

This command extracts area key phrases from the enterprise
necessities (e.g. “billing”, “quota”, “plan”) and makes use of them to
scan solely the related elements of the codebase — not all of it. It
identifies present ideas, new ideas, key enterprise guidelines,
and technical dangers.

The output is a context-rich doc protecting area idea
recognition, strategic course, and danger evaluation. It serves as
enter for the subsequent step: producing the REASONS Canvas.

Instruction:

/spdd-analysis
@[User-story-1]Multi-Plan-Billing-Basis-&-Mannequin-Conscious-Pricing.md

Generated artifact: the preliminary evaluation context doc.

This command produces a strategic-level evaluation grounded in precise
codebase exploration. The output focuses totally on the “what” and
“why,” intentionally avoiding granular implementation particulars at this
stage. It sometimes covers:

  • Area ideas: present vs. new, relationships, enterprise
    guidelines
  • Strategic method: answer course, design choices,
    trade-offs
  • Dangers & gaps: ambiguities, edge circumstances, technical dangers,
    acceptance-criteria protection

Evaluation and refine the evaluation context

With our personal understanding of the enterprise necessities in thoughts, we
evaluation the generated evaluation doc—specializing in the areas
highlighted within the alignment talent. This evaluation serves
two functions: confirming that our understanding aligns with the AI’s
interpretation, and discovering edge circumstances or boundary situations the AI
may floor that we hadn’t thought of.

On this particular occasion, the evaluation targeted on a number of vital
areas:

  • Whether or not the Technique Sample was appropriately thought of.
  • Adherence to the OOP ideas established within the present system,
    particularly ISP and SRP.
  • The validity of the proposed technique for including new fields.
  • Figuring out edge circumstances not beforehand anticipated.
  • Uncovering potential technical dangers.

Upon finishing the evaluation, the AI’s evaluation largely aligned with
our architectural intent; in reality, its issues have been much more
complete than ours in sure areas.

Edge circumstances and dangers from the
evaluation doc

To be clear, at this stage we solely possess a high-level
conceptual alignment. Whereas we will rapidly envision the implementation
for areas the place now we have prior expertise, we can’t utterly map out
all of the granular technical particulars for the unfamiliar elements proper
now.

Nevertheless, that’s completely wonderful. The overarching course is aligned.
We will proceed to the subsequent step: observing how the AI “simulates” the
concrete implementation particulars inside our established framework and
context. As soon as now we have these tangible particulars, we will uncover deeper,
hidden points and make knowledgeable trade-offs primarily based on the precise
state of affairs—adopting the approaches the place the advantages outweigh the
drawbacks, and discarding the remainder.

Determination: settle for the evaluation as-is and proceed.

Step 4: Generate structured immediate

How spdd-reasons-canvas works

This command reads enterprise context (the output of
/spdd-analysis, or a direct necessities description)
and combines it with the present state of the codebase. It then
generates a design specification throughout all seven REASONS
dimensions — from “why are we doing this” to “what should we not
do.”

The output is an executable blueprint. The Operations
part is exact all the way down to technique signatures, parameter sorts, and
execution steps.

Instruction:

/spdd-reasons-canvas
@GGQPA-001-202603191100-[Analysis]-multi-plan-billing-model-aware-pricing.md

Generated artifact: the preliminary structured immediate.

By this level, we have already gone via high-level technique throughout
the evaluation part—so when reviewing the structured immediate, we’re not
ranging from scratch. As a substitute, we’re inspecting how the AI has
translated our shared understanding into the REASONS Canvas construction:
from technique to abstraction to concrete particulars.

Consider it as a development: the evaluation part gave us strategic
readability; now we’re checking whether or not that readability has been faithfully
carried via into the architectural abstractions and implementation
specifics. That is intent alignment at a deeper degree—making certain that
earlier than any code is generated, the AI has successfully “simulated” the
whole answer inside our outlined framework. We get to evaluation from a
world perspective quite than getting misplaced in particulars from the
begin.

Focus the evaluation on the areas highlighted within the abstraction-first talent. On this case,
this foundational context is already embedded within the codebase and the earlier
structured immediate
. Consequently, when producing the structured
immediate for this iteration, the AI naturally elements in these
architectural tips and OO ideas. Consequently, although the
generated content material is extremely advanced, there are remarkably few main
points. We will choose to proceed with producing the code utilizing this
structured immediate first, after which conduct a deeper evaluation to determine
any potential code-level anomalies later.

To date, now we have reached a robust consensus on the intent degree,
clarifying each the core downside and the decision path. Whereas there
could also be slight omissions within the particulars, this isn’t a priority; having
aligned on the general scope with the AI makes native optimizations
extremely controllable. Now, we transition into the code technology
part.

Step 5: Generate code

This step is extra concerned as we’re producing the product code,
checks, and our opinions have two different outcomes.

Generate product code

As soon as our structured immediate is locked in, use it to generate the
product code.

How spdd-generate works

This command reads the REASONS Canvas and generates code job
by job, following the order outlined in Operations. It strictly
adheres to the coding requirements in Norms and the constraints in
Safeguards — no improvisation, no options past what the spec
defines.

The core precept: the immediate captures the intent, and the code
is the implementation of that intent. Generated code should correspond
one-to-one with this specification.

Instruction:

/spdd-generate
@GGQPA-001-202603191105-[Feat]-multi-plan-billing-model-aware-pricing.md

Generated artifact: code generated primarily based on the structured
immediate
.

Due to the a number of rounds of logical deduction we did earlier
utilizing structured prompts, we method the code evaluation with a transparent
focus and set of priorities:

  1. Structure: does the code strictly observe our anticipated 3-tier
    structure?
  2. Enterprise logic: does the Service layer implementation completely
    align with our preliminary intent?
  3. Scope of change: are the modifications strictly confined to the
    boundaries outlined by the structured immediate, avoiding unrelated
    adjustments or scope creep?

On this particular case, due to the extremely exact context, the
generated code largely met our expectations, except for just a few
potential “magic numbers.” We are going to optimize these out as soon as the
purposeful verification is full.

The important thing takeaway right here is: don’t be concerned about making errors, and
do not stress over not catching each single element completely on the
first strive. So long as we maintain iterating and advancing via the SPDD
workflow, there are many alternatives to course-correct. Minor
code smells are wonderful for now—we confirm the core performance first,
then circle again to optimize.

Function verification

Throughout function validation, the SPDD workflow gives the
/spdd-api-test command to generate purposeful testing
scripts.

How spdd-api-test works

This command extracts API endpoint data from the code
implementation or acceptance standards and generates a cURL-based
check script. The script features a structured test-case desk
protecting regular situations, boundary situations, and error
situations. When executed, it outputs expected-vs-actual comparability
outcomes.

Instruction:

/spdd-api-test

Generated artifact: the API check script.

Guided by the outlined guidelines within the command, the AI generates a
script that formulates the required check situations utilizing curl instructions.
We will evaluation these AI-generated situations within the “TEST CASE OVERVIEW”
part of the script.

Generated API Check Script

Execution: as soon as the script is generated, run it:

sh scripts/test-api.sh

Outcome: all purposeful checks handed efficiently.

API Check Outcomes

Code evaluation & ultimate changes

Due to the rigorous intent alignment within the first a number of steps, the
heavy lifting is already finished. At this stage, the remaining points are
often minor logic discrepancies or surface-level code smells.

To keep up precision in our engineering practices, we categorize
these ultimate changes into two distinct sorts—primarily based on whether or not they
change the system’s observable habits—and deal with them utilizing
totally different methods throughout the SPDD workflow:

Two responses to code evaluation adjustments

Logic corrections (habits adjustments)

Technique: replace the immediate first, then generate code. For points
associated to enterprise guidelines or logic mismatches (which inherently change
the observable habits of the software program), at all times replace the structured
immediate to lock within the appropriate intent earlier than touching the code. That is
an replace or bug repair, not a refactoring.

For example, when persisting modelId within the invoice, we
at the moment permit this subject to be nullable. The underlying cause is the
want to take care of backward compatibility with historic knowledge, making
this workaround an inexpensive architectural choice.

Immediate wants replace

Nevertheless, there’s an alternate. If the enterprise stakeholders can
verify what the modelId worth needs to be previous to this
change, we will unify the system’s habits and remove this potential
technical debt. Let’s assume that, after confirming with the enterprise,
the modelId for all historic payments needs to be set to
fast-model.

With this clear intent, we work together with the AI:

How spdd-prompt-update works

This command incrementally updates the present Canvas. It
modifies solely the sections affected by the change and preserves
all the pieces else. Based mostly on the kind of change — new requirement,
architectural adjustment, or constraint change — it mechanically
determines which REASONS dimensions want updating.

This differs from /spdd-sync: sync flows from
code to spec when code has modified; prompt-update flows from
necessities to spec when necessities have modified.

Instruction:

/spdd-prompt-update @GGQPA-001-202603191105-[Feat]-multi-plan-billing-model-aware-pricing.md

model_id is a required subject, and its default worth is fast-model.
Based mostly on this choice, replace the corresponding elements of the structured immediate.

The AI updates the structured immediate primarily based on this instruction.

Up to date artifact: the up to date structured immediate.

As soon as confirmed, use the /spdd-generate command to
replace the corresponding code primarily based on the newly up to date structured
immediate:

/spdd-generate
@GGQPA-001-202603191105-[Feat]-multi-plan-billing-model-aware-pricing.md

The AI, guided by the principles outlined throughout the
/spdd-generate command, comprehends the required adjustments
and performs focused updates completely on the affected
codebase.

Up to date artifact: the up to date code.

It is very important observe that we don’t regenerate your entire
codebase. We proceed utilizing the present structured immediate and the AI
handles focused diffs:

  1. Determine the mismatch: discover that the habits of
    modelId throughout persistence is inconsistent with the brand new
    enterprise requirement (it have to be obligatory with a default).
  2. Goal the immediate snippet: copy the precise part from the
    structured immediate that defines the outdated logic.
  3. Replace the immediate: paste the extracted snippet into the chat
    alongside the revised enterprise rule, instructing the AI to replace
    the structured immediate first.
  4. Generate focused code updates: as soon as the immediate displays the brand new
    fact, run /spdd-generate pointing to the up to date file.
    The AI mechanically performs focused diffs completely on the
    affected codebase, quite than regenerating all the pieces from
    scratch.

Refactoring (clear code & fashion)

“A change made to the inner construction of software program to make it simpler
to know and cheaper to switch with out altering its observable
habits.”

— Martin Fowler

Technique: refactor the code first, then sync again to the immediate.
For structural or stylistic points that don’t change observable
habits, instruct the AI to refactor the code instantly, after which use
a sync command to replace the immediate documentation.

For instance, the AI-generated BillingServiceImpl class
accommodates some hardcoded magic numbers that have to be extracted into
significant constants.

personal int calculateRemainingQuota(String customerId, PricingPlan plan) {
        if (plan.getMonthlyQuota() == null || plan.getMonthlyQuota() == 0) {
            return 0;
        }

        LocalDate currentDate = LocalDate.now(ZoneOffset.UTC);
        LocalDateTime monthStart = currentDate.withDayOfMonth(1).atStartOfDay();
        LocalDateTime monthEnd = currentDate.plusMonths(1).withDayOfMonth(1).atStartOfDay();

        Integer currentMonthUsage = billRepository.sumIncludedTokensUsedForMonth(customerId, monthStart, monthEnd);
        return plan.getMonthlyQuota() - currentMonthUsage;
    }

Instruction 1:

@BillingServiceImpl.java Within the calculateRemainingQuota technique,
there are some magic numbers that have to be processed as
constants

The AI executes the code refactoring primarily based on this instruction
(bear in mind the golden rule: at all times refactor in small, incremental
steps). If the output meets our expectations, we use the
/spdd-sync command to synchronize these newly up to date
code particulars again to their corresponding areas throughout the
structured immediate.

Instruction 2:

How spdd-sync works

This command compares the present code in opposition to the Canvas
specification, then synchronizes code-side adjustments (refactoring,
bug fixes, new parts) again into the Canvas.

The purpose is to maintain the Canvas as an correct design doc
for the present code, quite than an outdated historic
file.

/spdd-sync

The AI summarizes the adjustments primarily based on the principles outlined within the
/spdd-sync command. It then follows the structural
necessities of the REASONS Canvas to write down the detailed code
description updates again into the corresponding sections of the
structured immediate.

As soon as each instructions are executed, we will see all of the immediate and code
adjustments right here.

For any deeper or hidden code smells, merely repeat these steps.
The golden rule is to at all times maintain the structured immediate synchronized
along with your newest codebase.

Regression check

As soon as all optimizing is full, restart the service and run the
API check script another time to make sure no core performance was
damaged in the course of the cleanup.

Outcome: all handed.

Regression Check Outcomes

Step 6: generate unit checks

Useful testing alone is inadequate for strong validation; it
acts primarily as an auxiliary test and isn’t factored into code
protection metrics. The ultimate sign-off on core logic requires
complete unit checks. At the moment, the SPDD workflow doesn’t have
devoted testing instructions finalized (these can be launched in
future iterations). As an interim answer, we make the most of a
template-driven method to generate structured prompts for unit
testing.

Generate the preliminary check immediate

We start by combining the implementation particulars with our
standardized testing template to generate a baseline check immediate.

Instruction:

Based mostly on the implementation particulars immediate
@GGQPA-001-202603191105-[Feat]-multi-plan-billing-model-aware-pricing.md,
mixed with the template @TEST-SCENARIOS-TEMPLATE.md, please
generate a check immediate file.

Deduplicate and refine situations

After producing the preliminary structured check immediate, a number of the
proposed check situations have been duplicates of what we already had. To
deal with this, we continued the dialogue, instructing the AI to
cross-reference the generated immediate with the present check suite,
determine the genuinely new situations, and take away any
redundancies.

Instruction:

@GGQPA-001-202603191105-[Test]-multi-plan-billing-model-aware-pricing.md
There are checks which can be duplicated with present ones, evaluate the
related checks that exist, after which solely add checks for brand spanking new
situations

Up to date artifact: the check structured immediate.

Generate the unit check code

As soon as the refined check situations are reviewed and confirmed, use the
finalized check immediate to drive the precise code technology.

Instruction:

Based mostly on the generated check immediate
@GGQPA-001-202603191105-[Test]-multi-plan-billing-model-aware-pricing.md,
please generate the corresponding unit check code.

Outcome: all checks handed. Commit for checks.

What this instance delivered

This marks the conclusion of a whole SPDD workflow. By means of this
standardized course of, we efficiently delivered the next key
outcomes:

  1. A enterprise logic implementation with exceptionally excessive intent
    alignment (~99%).
  2. Full engineering transparency, together with a transparent
    understanding of the implementation path, technical choices, and
    accepted trade-offs.
  3. A structured immediate asset tightly synchronized with the present
    codebase, laying a strong basis for future iterations.
  4. Compounding human experience, fostering a steady accumulation
    of developer expertise and psychological fashions as we iterate
    collaboratively with the AI.

View the entire code diff for this enhancement on GitHub.

We have additionally ready a bonus enhancement function—Enterprise
Plan Quantity-Based mostly Tiered Billing
. Should you’re interested by getting
some hands-on apply, we extremely encourage you to sort out it utilizing the
SPDD workflow outlined above.

Three core expertise

SPDD is a fabric change in how builders construct software program. In our work
now we have recognized three core expertise that they want so as to do their
work successfully. These expertise mirror the place the worth of builders
is shifting in an AI-assisted world.

Abstraction first

design earlier than you generate

Earlier than producing any code, it is advisable to be clear about what objects
exist, how they collaborate, and the place the boundaries are. With out that,
AI typically sprints on implementation particulars whereas the construction falls aside.
Unclear obligations, duplicated logic, inconsistent interfaces, and
the fee reveals up later in evaluation and rework.

learn extra…

Alignment

lock intent earlier than you write code

Earlier than implementation, it is advisable to make “what we’ll do / what we can’t
do” express, and agree on the requirements and laborious constraints up entrance.
In any other case you find yourself with quick output and gradual rework.

learn extra…

Iterative Evaluation

flip output right into a managed loop

You need AI help to behave like an engineering course of, not a
one-shot draft. With out a disciplined review-and-iterate loop, groups both
maintain forcing the mannequin to patch issues till the answer drifts, or they
restart repeatedly and lose management of value and time.

learn extra…

The place SPDD suits

Health evaluation

SPDD is an engineering funding. The desk under charges how nicely it pays off by state of affairs, from extremely really helpful (5 stars) to not appropriate (1 star).

Ranking Situation Notes
★★★★★ Scaled, standardized supply Excessive-repeat enterprise logic that wants long-term maintainability (e.g., constructing many comparable APIs, automating core enterprise workflows).
★★★★★ Excessive compliance and laborious constraints Environments the place you need to observe laws, safety requirements, or strict architectural guidelines (e.g., monetary core techniques, multi-channel / multi-client deployments).
★★★★☆ Workforce collaboration and auditability Multi-person supply the place adjustments have to be absolutely traceable and reviewable end-to-end.
★★★★☆ Cross-cutting consistency work Complicated refactors the place logic should keep tightly synchronized throughout a number of microservices or totally different languages.
★★☆☆☆ Firefighting hotfixes “Cease the bleeding” manufacturing fixes the place velocity issues greater than architectural self-discipline.
★★☆☆☆ Exploratory spikes When the purpose is to validate an concept rapidly quite than ship production-quality software program, SPDD’s governance overhead will not pay again.
★★☆☆☆ One-off scripts Disposable knowledge cleanup or non permanent scripts the place SPDD’s upfront value is just too excessive relative to the worth.
★☆☆☆☆ Context black holes When the area is poorly outlined and enterprise guidelines are unclear, you possibly can’t set significant boundaries for the mannequin.
★☆☆☆☆ Pure inventive / visible work Duties pushed by style and aesthetics quite than logic (e.g., UI visible exploration, advertising copy).

Commerce-offs to contemplate

Return on funding

Profit Affect Pace What you get
Determinism Excessive Quick Encode logic in a exact spec, which considerably reduces hallucination and “inventive” interpretation.
Traceability Excessive Quick Each significant change might be traced again to the structured immediate, closing the audit loop.
Quicker opinions Excessive Quick-term Code “arrives” nearer to crew requirements, so opinions deal with logic and design, not formatting and cleanup.
Explainability Medium-Excessive Gradual Intent and habits are seen on the natural-language degree, decreasing the cognitive load for understanding and upkeep.
Safer evolution Excessive Lengthy-term Effectively-defined boundaries and stepwise implementation make focused adjustments lower-risk and simpler to iterate.

Upfront funding

Space Barrier Nature What it takes
Mindset shift Excessive Ongoing coaching Groups need to adapt to “design first” quite than “code first.”
Senior experience up entrance Medium-Excessive Per-feature Engineers who can translate enterprise guidelines into clear abstractions and design constraints.
Automation tooling Medium Infrastructure setup With out automation, SPDD hits a throughput ceiling and struggles to maintain prompts constant. openspdd runs the workflow on this article—from evaluation and structured REASONS prompts via code and non-obligatory check help—as repeatable CLI steps, so artifacts keep versioned and reviewable as an alternative of trapped in chat. Bigger organizations should layer a information platform on prime to handle and reuse property at scale.

Closing

Through the use of the REASONS Canvas, clarifying intent, establishing the correct
abstractions, breaking work into concrete duties, and locking in boundaries,
we give AI a well-defined area to function. Inside that area, SPDD could not
be the shortest path to “generate code rapidly,” but it surely is without doubt one of the most
dependable methods to ship the correct change with confidence.

It is also honest to say that SPDD shines most in logic-heavy domains.
In areas pushed by aesthetic judgment, frontend styling, for instance, we’re
nonetheless exploring engineering patterns that may be as secure as purely logical
building.

The framework on this article is just the “strikes.” The true benefit comes
from sharpening the meta-skills behind it: abstraction and modelling, systematic
evaluation, and a deep understanding of the enterprise as an entire. These are the
human strengths that in the end decide how a lot worth we will get from AI.

Within the AI period, software program growth is not a contest of mannequin IQ. It is a
contest of engineer cognitive bandwidth – how clearly we will suppose,
body issues, and make choices.

We’ll shut with a quote that captures the spirit
of SPDD:

“In science, if you realize what you might be doing, you should not be doing it.
In engineering, if you do not know what you might be doing, you should not be doing it.”

— Richard W. Hamming


Acknowledgements

We might like to specific our honest due to Martin Fowler. Regardless of a
busy schedule, he invested deeply on this article — from sharpening the
narrative construction and clarifying key ideas, to elevating the visible
storytelling with improved and new diagrams. His eager eye for element and
dedication to precision profoundly formed the ultimate outcome.

We’re additionally deeply grateful to Eric (Ke) Zhou, Wei Solar, Sara Michelazzo,
Rebecca Parsons, Matteo Vaccari, Might (Ping) Xu, Zhi Wang, Feng Chen and Da Cheng for his or her considerate critique and insights.
Your enter helped us make clear a number of key ideas that underpin the methodology.

We additionally wish to acknowledge early practitioners: Jie Wang, Jian Gao,
Yixuan Feng, Siyuan Li, Yixuan Li, Biao Tian, Wei Cheng, Qi Huang, and Yulong
Li. Thanks for validating SPDD in actual initiatives, and to your endurance
because the method matured. Your frontline suggestions has been foundational to
making SPDD sensible and strong.

Lastly, within the spirit of working towards what we preach, this text itself
was formed with the help of giant language fashions — Claude 4.5 Sonnet,
Claude 4.6 Opus, Gemini 3.1 Professional, and ChatGPT 5.4. We relied on them for
prose refinement, structural evaluation, synthesizing strategies, and as
thought companions for steady studying all through the writing course of.
Their contributions are a becoming testomony to the very method this
article describes.

Tags: DevelopmentSPDDStructuredPromptDriven
Admin

Admin

Next Post
Lazarus Targets macOS Customers With New “Mach-O Man” Malware Equipment

Lazarus Targets macOS Customers With New “Mach-O Man” Malware Equipment

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Trending.

Discover Vibrant Spring 2025 Kitchen Decor Colours and Equipment – Chefio

Discover Vibrant Spring 2025 Kitchen Decor Colours and Equipment – Chefio

May 17, 2025
Flip Your Toilet Right into a Good Oasis

Flip Your Toilet Right into a Good Oasis

May 15, 2025
Reconeyez Launches New Web site | SDM Journal

Reconeyez Launches New Web site | SDM Journal

May 15, 2025
Apollo joins the Works With House Assistant Program

Apollo joins the Works With House Assistant Program

May 17, 2025
Safety Amplified: Audio’s Affect Speaks Volumes About Preventive Safety

Safety Amplified: Audio’s Affect Speaks Volumes About Preventive Safety

May 18, 2025

TechTrendFeed

Welcome to TechTrendFeed, your go-to source for the latest news and insights from the world of technology. Our mission is to bring you the most relevant and up-to-date information on everything tech-related, from machine learning and artificial intelligence to cybersecurity, gaming, and the exciting world of smart home technology and IoT.

Categories

  • Cybersecurity
  • Gaming
  • Machine Learning
  • Smart Home & IoT
  • Software
  • Tech News

Recent News

Introducing ARFBench: A time collection question-answering benchmark primarily based on actual incidents – Machine Studying Weblog | ML@CMU

Introducing ARFBench: A time collection question-answering benchmark primarily based on actual incidents – Machine Studying Weblog | ML@CMU

April 30, 2026
Google Fixes CVSS 10 Gemini CLI CI RCE and Cursor Flaws Allow Code Execution

Google Fixes CVSS 10 Gemini CLI CI RCE and Cursor Flaws Allow Code Execution

April 30, 2026
  • About Us
  • Privacy Policy
  • Disclaimer
  • Contact Us

© 2025 https://techtrendfeed.com/ - All Rights Reserved

No Result
View All Result
  • Home
  • Tech News
  • Cybersecurity
  • Software
  • Gaming
  • Machine Learning
  • Smart Home & IoT

© 2025 https://techtrendfeed.com/ - All Rights Reserved