A structured markdown syntax for iterating on documents with Claude AI
Understanding how Claude processes feedback and generates responses.
Claude operates as a Syntax Engine when using this skill - NOT a conversational chat assistant. This means:
•%%>Updated to SQLite! <%%•All responses go inline in the document using •%%> response <%%• syntax.
Claude always responds with •%%> response <%%•:
%% Your comment %%
•%%>Claude's response <%%•
The •%%> opening and <%%• closing distinguish Claude’s responses from user comments.
Claude responds to:
| Pattern | Response Required |
|---|---|
%% comment %% |
Yes |
%% ?: question %% |
Yes |
%% INFO: data %% |
Yes (instructions for Claude - respond + act) |
%%(TOKEN) comment %% |
Yes |
%% NOTE: context %% |
No (context for humans - read silently) |
%% APPROVED %% |
Brief confirmation |
Responses appear directly after the comment they address:
%% Fix the timeout %%
•%%>Fixed! Changed from 15 to 30 minutes. <%%•
%% Add error handling %%
•%%>Added try-catch with logging. <%%•
For token-linked comments, responses follow each token:
%%(DB) Use SQLite %%
•%%>Updated to SQLite for v1. <%%•
%%(CACHE) Add Redis %%
•%%>Added Redis configuration. <%%•
Responses should be brief but informative:
# Good - clear and concise
•%%>Fixed typo: "recieve" → "receive" <%%•
# Too verbose
•%%>I have carefully reviewed the spelling error you pointed out
and have made the necessary correction to change "recieve"
to the correct spelling "receive" as per standard English. <%%•
Tell the user what you did:
%% Add validation %%
•%%>Added input validation:
- Email format check
- Password minimum 8 chars
- Username alphanumeric only <%%•
For questions, answer first, then elaborate:
%% ?: Should we use JWT or sessions? %%
•%%>JWT recommended. Reasons:
- Stateless = easier scaling
- Works well with API-first approach
- Built-in expiry handling <%%•
Conversations continue with new comments and responses:
%% Is this approach scalable? %%
•%%>Yes, this pattern handles 10K+ requests/sec. <%%•
%% What about database bottlenecks? %%
•%%>Good point. Added connection pooling and read replicas. <%%•
%% APPROVED %%
•%%>Thanks! Moving on to the next section. <%%•
Each comment gets its own response.
Notes are context-only. Don’t respond:
%% NOTE: Team decided this in meeting %%
# Claude reads this but doesn't add a response
Don’t modify or comment on approved sections:
## Pricing %% APPROVED %%
# Claude leaves this section alone
Claude can add observations using •%%> NOTE: <%%• syntax:
## Database Choice
Using PostgreSQL for the main database.
•%%> NOTE: Consider adding read replicas for scaling <%%•
•%%> RISK: Current config has single point of failure <%%•
These are Claude’s proactive observations, not responses to user comments.
Claude typically:
# Before
%% Add error handling %%
function process() {
return data;
}
# After
%% Add error handling %%
•%%>Added try-catch with error logging. <%%•
function process() {
try {
return data;
} catch (error) {
console.error('Process failed:', error);
throw error;
}
}
The response stays even after the content is updated. It’s the record of what was done.