Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ae0a0a1
Standalone Activity concept docs
dandavison Jan 27, 2026
89da3f5
Simplify
dandavison Jan 27, 2026
369e0da
job queue one pager draft
jsundai Feb 10, 2026
7b8467e
refine standalone activity encyclopedia and evaluate pages
prasek Feb 25, 2026
ab05047
Python docs
jsundai Feb 23, 2026
524a996
Go docs
dandavison Feb 27, 2026
04fc645
Fix bugs
dandavison Feb 27, 2026
e5fe1fb
Link to job queue, edits
dandavison Feb 27, 2026
097622e
change run the dev server header to get started with standalone activ…
jsundai Mar 2, 2026
c5f94fd
comment out TODO header
jsundai Mar 2, 2026
bd4fb91
command and adding isolated id space info
jsundai Mar 4, 2026
f3435d6
Streamline GetStarted
dandavison Mar 6, 2026
0ac9ccb
use envconfig in all samples, collapse Cloud section
dandavison Mar 8, 2026
4dae2ca
Document ID space inline
dandavison Mar 9, 2026
1295da4
Tweaks
dandavison Mar 9, 2026
9a65e3a
Insert real prerelease CLI links
dandavison Mar 9, 2026
5febbbc
Tweak links
dandavison Mar 9, 2026
27f66da
Set TEMPORAL_ADDRESS in Python
dandavison Mar 9, 2026
8c4aafa
Merge branch 'main' into standalone-activity-encyclopedia-entry
jsundai Mar 9, 2026
9550749
Update docs links
dandavison Mar 10, 2026
c2674c8
Tweak TEMPORAL_ADDRESS instructions
dandavison Mar 10, 2026
cd28657
Set default server address
dandavison Mar 10, 2026
0410111
Get rid of confusing samples-python clone step
dandavison Mar 10, 2026
c48ad0d
Print from worker
dandavison Mar 10, 2026
70bdd8c
Code tweaks
dandavison Mar 10, 2026
25ea596
Remove mention of listing activities via CLI
dandavison Mar 10, 2026
fb528b2
Remove statement about envconfig defaulting to localhost:7233
dandavison Mar 10, 2026
7f39bb1
Tweak order
dandavison Mar 10, 2026
0c7af83
Make it non-`async def`
dandavison Mar 10, 2026
2adb05f
docs refinement
prasek Mar 11, 2026
376082b
standalone activity docs cleanup
prasek Mar 11, 2026
f7ff3d3
revert yarn.lock to upstream/main
prasek Mar 11, 2026
8d9bcbd
Follow sample explicitly
dandavison Mar 11, 2026
f8c8097
add CLI commands to Go SDK guide for Standalone Activities
prasek Mar 11, 2026
a3b73a9
Add CLI links
dandavison Mar 11, 2026
50d7a4c
Merge branch 'main' into standalone-activity-encyclopedia-entry
dandavison Mar 11, 2026
8dc33ed
Merge branch 'main' into standalone-activity-encyclopedia-entry
jsundai Mar 11, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/cli/activity.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ This file is generated from https://github.com/temporalio/cli/blob/main/internal

This page provides a reference for the `temporal` CLI `activity` command. The flags applicable to each subcommand are presented in a table within the heading for the subcommand. Refer to [Global Flags](#global-flags) for flags that you can use with every subcommand.

To use the CLI with Standalone Activities, see the CLI commands in the [Go](/docs/develop/go/standalone-activities.mdx) and [Python](/docs/develop/python/standalone-activities.mdx) Standalone Activity guides.

## complete

Complete an Activity, marking it as successfully finished. Specify the
Expand Down
8 changes: 8 additions & 0 deletions docs/develop/go/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,14 @@ Complete Activities asynchronously.

- [How to asynchronously complete an Activity](/develop/go/asynchronous-activity-completion)

## [Standalone Activities](/develop/go/standalone-activities)

Execute Activities independently without a Workflow using the Temporal Client.

- [How to execute a Standalone Activity](/develop/go/standalone-activities#execute-activity)
- [How to get the result of a Standalone Activity](/develop/go/standalone-activities#get-activity-result)
- [How to get a handle to an existing Standalone Activity](/develop/go/standalone-activities#get-activity-handle)

## [Versioning](/develop/go/versioning)

Change Workflow Definitions without causing non-deterministic behavior in running Workflows.
Expand Down
Loading
Loading