-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Feat/calendar view #28912
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ssikder2
wants to merge
8
commits into
calcom:main
Choose a base branch
from
ssikder2:feat/calendar-view
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Feat/calendar view #28912
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
017ad07
chore: update generated files and improve formatting
ssikder2 9d3a491
Merge remote-tracking branch 'origin/main' into feat/calendar-view
ssikder2 df6860a
Update statistics.json with new message counts and markdown size
ssikder2 ccaefab
Update statistics.json with revised message counts and markdown size
ssikder2 07e4621
Implement calendar view feature in bookings module
ssikder2 48ce113
Update statistics.json and refactor booking components
ssikder2 87a8b72
Refactor booking components and update statistics.json
ssikder2 193bbaf
Add calendar view feature to bookings module
ssikder2 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "workspace_id": "92ba-da8f-bd9d-7d51", | ||
| "workspace_id_at": "2026-04-09T19:44:49Z", | ||
| "git_id": "c6cc-7972-0e7c-5ab9", | ||
| "git_id_at": "2026-04-09T19:44:49Z", | ||
| "project_name": "cal.com" | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| # SpecStory CLI Configuration | ||
| # | ||
| # This is the project-level config file for SpecStory CLI. | ||
| # All settings here apply to this project unless overridden by CLI flags. | ||
| # | ||
| # Uncomment (remove the #) the line and edit any setting below to change the default behavior. | ||
| # For more information, see: https://docs.specstory.com/integrations/terminal-coding-agents/usage | ||
|
|
||
| [local_sync] | ||
| # Write markdown files locally. (default: true) | ||
| # enabled = false # equivalent to --only-cloud-sync | ||
|
|
||
| # Custom output directory for markdown files. | ||
| # Default: ./.specstory/history (relative to the project directory) | ||
| # output_dir = "~/.specstory/history" # equivalent to --output-dir "~/.specstory/history" | ||
|
|
||
| # Use local timezone for file name and content timestamps (default: false, UTC) | ||
| # local_time_zone = true # equivalent to --local-time-zone | ||
|
|
||
| [cloud_sync] | ||
| # Sync session data to SpecStory Cloud. (default: true, when logged in to SpecStory Cloud) | ||
| # enabled = false # equivalent to --no-cloud-sync | ||
|
|
||
| [logging] | ||
| # Write logs to .specstory/debug/debug.log (default: false) | ||
| # log = true # equivalent to --log | ||
|
|
||
| # Debug-level output, requires console or log (default: false) | ||
| # debug = true # equivalent to --debug | ||
|
|
||
| # Custom output directory for debug data. | ||
| # Default: ./.specstory/debug (relative to the project directory) | ||
| # debug_dir = "~/.specstory/debug" # equivalent to --debug-dir "~/.specstory/debug" | ||
|
|
||
| # Error/warn/info output to stdout (default: false) | ||
| # console = true # equivalent to --console | ||
|
|
||
| # Suppress all non-error output (default: false) | ||
| # silent = true # equivalent to --silent | ||
|
|
||
| [version_check] | ||
| # Check for new versions of the CLI on startup. | ||
| # Default: true | ||
| # enabled = false # equivalent to --no-version-check | ||
|
|
||
| [analytics] | ||
| # Send anonymous product usage analytics to help improve SpecStory. | ||
| # Default: true | ||
| # enabled = false # equivalent to --no-usage-analytics | ||
|
|
||
| [telemetry] | ||
| # OTLP gRPC collector endpoint (e.g., "localhost:4317" or "http://localhost:4317") | ||
| # endpoint = "localhost:4317" | ||
|
|
||
| # Override the default service name (default: "specstory-cli") | ||
| # service_name = "my-service-name" | ||
|
|
||
| # Include user prompt text in telemetry spans (default: true) | ||
| # prompts = false | ||
|
|
||
| [providers] | ||
| # Agent execution commands by provider (used by specstory run) | ||
| # Pass custom flags (e.g. claude_cmd = "claude --allow-dangerously-skip-permissions") | ||
| # Use of these is equivalent to -c "custom command" | ||
|
|
||
| # Claude Code command | ||
| # claude_cmd = "claude" | ||
|
|
||
| # Codex CLI command | ||
| # codex_cmd = "codex" | ||
|
|
||
| # Cursor CLI command | ||
| # cursor_cmd = "cursor-agent" | ||
|
|
||
| # Droid CLI command | ||
| # droid_cmd = "droid" | ||
|
|
||
| # Gemini CLI command | ||
| # gemini_cmd = "gemini" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SpecStory metadata files should not be committed to version control.
The entire
.specstory/directory appears to contain auto-generated metadata and session history from the SpecStory/Cursor IDE development tool. These files are similar to other IDE artifacts (.idea/,.vs/, etc.) and should be excluded from version control.Recommend:
.specstory/to.gitignoregit rm -r --cached .specstory/This applies to all
.specstory/*files in this PR, including.project.json,statistics.json,history/*.md, andcli/config.toml.🤖 Prompt for AI Agents