index

index is a cursor rule for Cursor from claire-gong-18/awesome-cursorrules. It costs 0 tokens per session (512 once invoked), scanned A, original, from a forked repository, CC0-1.0.

A Go-based language for describing Temporal workflows as structured data, with steps that can run in sequence or in parallel and pass values between them.

In plain words
What is it for?
Use it to define Temporal workflows with Go structs, activity calls, sequential steps, parallel steps, and shared values.
Why use it?
It separates the workflow's definition from the code that performs each activity, making process structure easier to inspect and change.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Good fit Use it to define Temporal workflows with Go structs, activity calls, sequential steps, parallel steps, and shared values.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/claire-gong-18/awesome-cursorrules/index
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/claire-gong-18/awesome-cursorrules

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for index

README.md
[![agentmods](https://agentmods.dev/badge/rules/claire-gong-18/awesome-cursorrules/index/github.svg)](https://agentmods.dev/rules/claire-gong-18/awesome-cursorrules/index)
Your own site
<a href="https://agentmods.dev/rules/claire-gong-18/awesome-cursorrules/index"><img src="https://agentmods.dev/badge/rules/claire-gong-18/awesome-cursorrules/index/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for index

Your own site · 80×15
<a href="https://agentmods.dev/rules/claire-gong-18/awesome-cursorrules/index"><img src="https://agentmods.dev/badge/rules/claire-gong-18/awesome-cursorrules/index.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 512 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin fork From a forked repository.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.00512
Opus 5 $0.00000 $0.00256
Sonnet 5 $0.00000 $0.00102
Haiku 4.5 $0.00000 $0.00051

Measured 9d ago against content hash c435444c018b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

index scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

rules/go-temporal-dsl-prompt-file/index.mdc · 51 lines

How it starts

The opening of the file, as written. The whole thing — 51 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Go Temporal DSL for Workflow Definition

A lightweight, declarative DSL in Go for defining Temporal workflows. This approach uses Go structs to represent workflow logic, separating the definition from the activity implementation.

  • Declarative: Define workflows using Go structs for Sequence, Parallel, and ActivityInvocation.
  • Separation of Concerns: Keep workflow logic (Workflow struct) separate from activity execution code (Activity methods).
  • Data Flow: Manage state and pass data between steps using a shared bindings map.

Core DSL Structures

We model the workflow using Go structs defined in the dsl package:

  • Workflow: Top-level struct holding initial Variables and the Root Statement.
  • Statement: Represents a single step, containing either an ActivityInvocation, Sequence, or Parallel.
  • ActivityInvocation: Defines how to call a specific Temporal Activity (Name, Arguments, Result).
  • Sequence: A slice of Statements executed sequentially.
  • Parallel: A slice of Statements executed concurrently.

Execution Flow

Workflows defined with this DSL are executed by the SimpleDSLWorkflow function:

  • Takes workflow.Context and the dsl.Workflow struct as input.
  • Initializes a bindings map from Workflow.Variables.
  • Recursively executes the Statements starting from Root.
  • Uses workflow.ExecuteActivity to invoke activities based on ActivityInvocation.
  • Handles sequential execution for Sequence and concurrent execution (with cancellation) for Parallel.

Data Handling (bindings)

  • The bindings map[string]string acts as the shared state.
  • Initial values come from Workflow.Variables.
  • ActivityInvocation.Arguments specifies which keys from bindings provide input.
  • ActivityInvocation.Result specifies the key in bindings to store the activity's output.

Activity Implementation

  • Activities are standard Go functions/methods registered with Temporal (see activities.mdc).
  • They accept context.Context and input arguments, returning a result and an error.
  • Use activity.GetLogger(ctx) for logging within activities.
  • The DSL invokes activities by their registered string Name.

Read the full file on GitHub · 51 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 51 lines · 0 tokens per session scan A c435444c018b

Subscribe to this mod's changes

index is a cursor rule published in the GitHub repository claire-gong-18/awesome-cursorrules (0 stars, last pushed 1y ago), licensed CC0-1.0. It costs nothing until one of its globs matches a file; then it loads 512 tokens. A static security scan graded it A with 0 findings. It comes from a forked repository.