MCPcopy Create free account

hub / github.com/atomicdotdev/atomic / functions

Functions14,282 in github.com/atomicdotdev/atomic

↓ 7 callersMethodwith_count
Builder: set the count limit.
atomic-cli/src/commands/log/command.rs:129
↓ 7 callersMethodwith_deleted
(mut self, files: Vec<PathBuf>)
atomic-agent/src/event.rs:501
↓ 7 callersMethodwith_format
Builder: set the output format.
atomic-cli/src/commands/log/command.rs:153
↓ 7 callersMethodwith_old_line_num
Set the old line number.
atomic-core/src/record/workflow/crdt/builder/branch.rs:101
↓ 7 callersMethodwith_prefix
Set the path prefix filter. Only files under this prefix will be processed. # Arguments `prefix` - Path prefix (e.g., "src/", "tests/") # Example
atomic-core/src/record/workflow/options.rs:209
↓ 7 callersMethodwith_recursive
Builder: set the `--recursive` flag.
atomic-cli/src/commands/add.rs:236
↓ 7 callersMethodwith_short
Builder: set short output mode.
atomic-cli/src/commands/status.rs:219
↓ 7 callersMethodwith_stat
Builder: set the stat flag.
atomic-cli/src/commands/diff/command.rs:131
↓ 7 callersMethodwith_view
Builder: set the view name.
atomic-cli/src/commands/log/command.rs:135
↓ 7 callersMethodwrite
(&mut self, buf: &[u8])
atomic-core/src/output/memory.rs:207
↓ 7 callersMethodwrite_to
Write the hash table to a writer. Writes `len() × 32` bytes: each hash in index order, raw (no compression). The caller is responsible for writing th
atomic-core/src/change/format_v3/hash_table.rs:584
↓ 6 callersMethodadd
Add an entry to the manifest.
atomic-repository/src/archive.rs:507
↓ 6 callersMethodadd_added
Add an added file to the result.
atomic-core/src/record/workflow/detect/types.rs:299
↓ 6 callersMethodadd_branch_inserted
(&mut self)
atomic-core/src/crdt/apply/context.rs:151
↓ 6 callersMethodadd_dependency_by_id
Add a dependency by node ID, looking up the hash. # Arguments `node_id` - Internal ID of the change # Returns Ok(()) if the dependency was added,
atomic-core/src/record/workflow/globalize/context.rs:161
↓ 6 callersMethodadd_hunk
Add a graph_op to this file.
atomic-core/src/record/workflow/record/types.rs:307
↓ 6 callersMethodadd_leaf_inserted
(&mut self)
atomic-core/src/crdt/apply/context.rs:171
↓ 6 callersMethodadd_line
Add a line credit (will merge with adjacent ranges if possible).
atomic-core/src/change/credit.rs:633
↓ 6 callersMethodadd_node
Add a node to the graph.
atomic-core/src/change/provenance_graph/builder.rs:95
↓ 6 callersMethodadd_token
Adds a token to this line.
atomic-core/src/output/crdt.rs:144
↓ 6 callersMethodalign_to_view
Align the view pointer without materializing the working copy. This persists the new view name to `.atomic/current_view` so that subsequent `status()
atomic-repository/src/repository/mod.rs:661
↓ 6 callersMethodallocate_inode
Allocate a new unique inode. Each call returns a different inode value. # Example ```rust use atomic_core::output::Memory; let wc = Memory::new();
atomic-core/src/output/memory.rs:293
↓ 6 callersMethodarchive
This exports the working copy state at the current (or specified) Merkle state to the given destination. # Arguments `destination` - Path to the out
atomic-repository/src/repository/archive.rs:29
↓ 6 callersMethodas_bytes
Get the raw bytes of the public key
atomic-identity/src/keypair.rs:33
↓ 6 callersMethodas_directory
Mark this entry as a directory.
atomic-core/src/record/workflow/collect.rs:134
↓ 6 callersFunctionassert_content_matches
Assert that the content retrieved via overlay matches the expected bytes.
atomic-repository/tests/content_roundtrip_fidelity_test.rs:49
↓ 6 callersMethodbegin_turn
Mark the start of a new turn.
atomic-agent/src/turn/session.rs:350
↓ 6 callersFunctionbranch
(change: u64, idx: u32)
atomic-core/src/crdt/queries.rs:155
↓ 6 callersFunctionbuild_decision_edges
Build edges connecting a decision node to the surrounding context. The decision node gets: - An edge from the most recent goal (if any precedes the s
atomic-agent/src/provenance/consolidate.rs:676
↓ 6 callersFunctioncompare_content
Compare two byte slices and produce diff operations. This function handles the actual diffing of file content. # Arguments `old_content` - Content
atomic-core/src/record/detect.rs:721
↓ 6 callersFunctioncosine_similarity
Compute cosine similarity between two vectors. Returns 0.0 if the vectors have different lengths, are empty, or if either has zero magnitude.
atomic-core/src/pristine/txn/write/embeddings.rs:19
↓ 6 callersMethodcrdt_ops
(&self)
atomic-core/src/record/workflow/record/types.rs:412
↓ 6 callersFunctioncreate_test_change
Create a simple test change with the given message.
atomic-repository/src/repository/tests/mod.rs:30
↓ 6 callersFunctioncreate_test_entry_without_header
()
atomic-cli/src/commands/log/tests.rs:397
↓ 6 callersFunctioncreate_test_identities
()
atomic-identity/src/delegation.rs:588
↓ 6 callersMethoddecode
Decode a `SessionEnvelope` from `HashedChange.metadata` bytes. Validates the magic prefix and schema version before deserializing. # Errors Returns
atomic-agent/src/envelope.rs:254
↓ 6 callersFunctiondecode_embedding_key
(key: &str)
atomic-core/src/pristine/tables.rs:749
↓ 6 callersFunctiondecode_leaf_value
(bytes: &[u8; 22])
atomic-core/src/crdt/tables.rs:646
↓ 6 callersMethoddel_directory
(&mut self, inode: Inode)
atomic-core/src/pristine/txn/write/mod.rs:1042
↓ 6 callersMethoddel_inode
(&mut self, inode: Inode)
atomic-core/src/pristine/txn/write/mod.rs:937
↓ 6 callersFunctionderive_agent_author
Derive the agent author from the user's identity. Constructs: `{agent_name}+{session_short} <{user_email}>` If the user has no email, uses the agent
atomic-agent/src/identity.rs:115
↓ 6 callersMethodembed_sync
Synchronous embed using a throwaway tokio runtime (for use in non-async contexts). When called from within an existing Tokio runtime (e.g., from hook
atomic-repository/src/ai/mod.rs:163
↓ 6 callersFunctionencode_position
(change_id: u64, pos: u64)
atomic-core/src/pristine/tables.rs:823
↓ 6 callersMethodensure_metadata_complete
Ensure that the required metadata sections (HEADER + DEPS) have been written.
atomic-core/src/change/format_v3/writer/helpers.rs:25
↓ 6 callersFunctionevaluate_push_credentials
Pure decision core for [`check_push_credentials`], split out so it can be unit-tested without touching the on-disk identity store. `identity_name` —
atomic-cli/src/commands/auth.rs:345
↓ 6 callersFunctionextract_file
Extract a file path from a node's detail or summary.
atomic-agent/src/provenance/consolidate.rs:601
↓ 6 callersMethodformat_default
Format entries for default output. # Arguments `entries` - History entries to format `hash_length` - Number of hash characters to display # Returns
atomic-cli/src/commands/log/command.rs:239
↓ 6 callersFunctionformat_hash_with_length
Format a hash for display with custom length. Like [`format_hash`], but allows specifying the truncation length. # Arguments `hash` - The hash to f
atomic-cli/src/commands/mod.rs:416
↓ 6 callersMethodformat_json
Format entries for JSON output. # Arguments `entries` - History entries to format # Returns Formatted JSON string.
atomic-cli/src/commands/log/command.rs:394
↓ 6 callersMethodformat_short
Format entries for short output. # Arguments `entries` - History entries to format `hash_length` - Number of hash characters to display # Returns
atomic-cli/src/commands/log/command.rs:308
↓ 6 callersMethodget_change_at_seq
( &self, _view: &ViewState, _seq: u64, )
atomic-core/src/record/context.rs:915
↓ 6 callersMethodget_changelist
Get the changelist for a view starting from a position. # Arguments `view` - The name of the view to query. `from` - The starting position (sequence
atomic-remote/src/http/queries.rs:79
↓ 6 callersMethodget_crdt_branch
( &self, key: &[u8; 12], )
atomic-core/src/pristine/txn/read.rs:1170
↓ 6 callersMethodget_tracking_options
Convert command options to TrackingOptions.
atomic-cli/src/commands/add.rs:251
↓ 6 callersMethodget_view
(&self, _name: &str)
atomic-core/src/record/context.rs:899
↓ 6 callersMethodinode
(&self)
atomic-core/src/crdt/trunk.rs:193
↓ 6 callersMethodinstall
(&self, repo_root: &Path)
atomic-agent/src/hooks/claude_code/mod.rs:209
↓ 6 callersMethodis_clean
Returns `true` if the outcome is [`Clean`](Self::Clean).
atomic-core/src/merge/mod.rs:70
↓ 6 callersMethodis_draft
(self)
atomic-core/src/pristine/traits/view.rs:73
↓ 6 callersMethodis_empty
Returns `true` if the graph has no nodes.
atomic-agent/src/provenance/accumulator/mod.rs:266
↓ 6 callersMethodis_empty
(&self)
atomic-core/src/diff/inline.rs:244
↓ 6 callersMethodis_replaced
(&self)
atomic-core/src/diff/semantic/types.rs:195
↓ 6 callersFunctionis_supported
Check if a file path is supported for AST extraction.
atomic-semantic/src/parsers/mod.rs:156
↓ 6 callersMethoditer_changes
Iterate over all change hashes stored in the repository. This scans the changes directory and yields the hash of each change file found. The iteratio
atomic-repository/src/repository/changes.rs:570
↓ 6 callersMethoditer_tree
( &self, )
atomic-core/src/record/context.rs:860
↓ 6 callersMethodlen
(&self)
atomic-core/src/diff/semantic/config.rs:200
↓ 6 callersMethodlines
Iterate through all lines with their display status. Lines are yielded in the order they would appear in a unified diff: - Unchanged lines appear onc
atomic-core/src/diff/display.rs:308
↓ 6 callersMethodload
Load an identity by ID.
atomic-identity/src/store.rs:493
↓ 6 callersMethodload_change
Load a full `Change` from the redb store. This reads all tables for the change and reassembles a `Change` object. Equivalent to deserializing a compl
atomic-repository/src/redb_change_store/queries.rs:306
↓ 6 callersFunctionlongest_increasing_subsequence
Find the Longest Increasing Subsequence of matches by new_idx. Given matches sorted by old_idx, find the longest subsequence where new_idx values are
atomic-core/src/diff/patience.rs:227
↓ 6 callersFunctionmake_change
Create a test change with content
atomic-core/src/output/repo/content.rs:755
↓ 6 callersFunctionmake_vertex
(change: u64, start: u64, end: u64)
atomic-core/src/output/repo/fork.rs:184
↓ 6 callersMethodmark_resolved
Marks this conflict as resolved with optional notes.
atomic-core/src/crdt/apply/conflict.rs:358
↓ 6 callersMethodmark_rooted
Mark a position as verified rooted.
atomic-core/src/apply/workspace.rs:641
↓ 6 callersMethodmax_vertices
Set maximum span count.
atomic-core/src/record/workflow/retrieve.rs:92
↓ 6 callersMethodmax_vertices
Set the maximum number of vertices to retrieve. This provides a safety limit for retrieval. If the graph exceeds this size, retrieval will stop and t
atomic-core/src/output/alive/retrieve/options.rs:104
↓ 6 callersFunctionmerge_parallel_results
Merge parallel results into the aggregate vectors needed by `Repository::record()`. This extracts the `RecordedFile` values from the parallel results
atomic-repository/src/parallel_record/aggregate.rs:25
↓ 6 callersMethodmessage
Get the commit message if a header is loaded.
atomic-repository/src/history/types.rs:168
↓ 6 callersMethodmodel
Get the effective model name.
atomic-agent/src/transcript/generator.rs:177
↓ 6 callersMethodname
(&self)
atomic-agent/src/hooks/mod.rs:467
↓ 6 callersMethodname
Create a new name conflict. Name conflicts occur when a file has been renamed by concurrent changes.
atomic-core/src/output/mod.rs:289
↓ 6 callersMethodnew_line_num
(&self)
atomic-core/src/record/workflow/crdt/builder/branch.rs:157
↓ 6 callersFunctionnext_id
Generate the next node ID.
atomic-agent/src/provenance/consolidate.rs:713
↓ 6 callersMethodnext_id
Generate the next unique node ID and increment the counter.
atomic-agent/src/provenance/accumulator/mod.rs:285
↓ 6 callersFunctionno_untracked
()
atomic-agent/src/record/tests.rs:81
↓ 6 callersMethodnodes
All nodes in insertion order.
atomic-agent/src/provenance/accumulator/mod.rs:251
↓ 6 callersMethodnormalize_intent_id
Normalize an intent ID — accept "PIMO-1", "pimo-1", or just "1".
atomic-repository/src/repository/vault_intent.rs:702
↓ 6 callersFunctionopen_pristine
()
atomic-core/src/crdt/queries.rs:148
↓ 6 callersMethodoperation
(&self)
atomic-core/src/record/workflow/crdt/builder/leaf.rs:42
↓ 6 callersFunctionoutput_graph_content_resolved
Output graph content with semantic-merge resolution. This is the merge-aware counterpart of [`output_graph_content`]. For every SCC whose lead verte
atomic-core/src/output/repo/content.rs:502
↓ 6 callersMethodoutput_line
(&mut self, node: GraphNode<NodeId>, get_contents: F)
atomic-core/src/output/traits.rs:657
↓ 6 callersFunctionparallel_record_files
Process files in parallel using rayon, returning per-file results. This is the core of the parallel recording pipeline (Phase 2). It takes a list of
atomic-repository/src/parallel_record/mod.rs:434
↓ 6 callersMethodpath
(self, path: impl Into<String>)
atomic-core/src/crdt/apply/conflict.rs:458
↓ 6 callersMethodpermissions
Get the permission bits. # Returns The Unix permission bits.
atomic-core/src/record/item.rs:378
↓ 6 callersMethodprint_long_format
Print the status in long (human-readable) format.
atomic-cli/src/commands/status.rs:246
↓ 6 callersMethodprocess_diff_op
Process a diff operation. This is the main entry point for processing diff output. Call this for each diff operation in sequence. # Arguments `op`
atomic-core/src/record/workflow/graph_op/builder.rs:160
↓ 6 callersMethodprocess_insert
Process an insertion. # Arguments `old_index` - Position in old content (insertion point) `new_index` - Starting line in new content `new_len` - Num
atomic-core/src/record/workflow/graph_op/builder.rs:216
↓ 6 callersMethodprovision_sandbox
Provision an agent's private working tree as a copy-on-write clone of this repository's working tree. Copies every tracked-or-untracked working file
atomic-repository/src/repository/sandbox.rs:182
↓ 6 callersMethodpush_node
Push a node onto the graph, updating stats and last_node cursor.
atomic-agent/src/provenance/accumulator/mod.rs:291
↓ 6 callersMethodput
PUT request with JSON body, unwrap `ApiResponse` envelope.
atomic-remote/src/storage.rs:143
← previousnext →701–800 of 14,282, ranked by callers