├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── docker-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── app ├── .dockerignore ├── .gitignore ├── clear_local.sh ├── cli │ ├── api │ │ ├── clients.go │ │ ├── errors.go │ │ ├── methods.go │ │ └── stream.go │ ├── auth │ │ ├── account.go │ │ ├── api.go │ │ ├── auth.go │ │ ├── org.go │ │ ├── state.go │ │ └── trial.go │ ├── cmd │ │ ├── apply.go │ │ ├── archive.go │ │ ├── billing.go │ │ ├── branches.go │ │ ├── browser.go │ │ ├── build.go │ │ ├── cd.go │ │ ├── chat.go │ │ ├── checkout.go │ │ ├── claude_max.go │ │ ├── clear.go │ │ ├── config.go │ │ ├── connect.go │ │ ├── context_show.go │ │ ├── continue.go │ │ ├── convo.go │ │ ├── current.go │ │ ├── debug.go │ │ ├── delete_branch.go │ │ ├── delete_plan.go │ │ ├── diffs.go │ │ ├── invite.go │ │ ├── load.go │ │ ├── log.go │ │ ├── ls.go │ │ ├── model_helpers.go │ │ ├── model_packs.go │ │ ├── model_providers.go │ │ ├── models.go │ │ ├── new.go │ │ ├── plan_exec_helpers.go │ │ ├── plan_start_helpers.go │ │ ├── plans.go │ │ ├── ps.go │ │ ├── reject.go │ │ ├── rename.go │ │ ├── repl.go │ │ ├── revoke.go │ │ ├── rewind.go │ │ ├── rm.go │ │ ├── root.go │ │ ├── set_config.go │ │ ├── set_model.go │ │ ├── sign_in.go │ │ ├── stop.go │ │ ├── summary.go │ │ ├── tell.go │ │ ├── unarchive.go │ │ ├── update.go │ │ ├── usage.go │ │ ├── users.go │ │ └── version.go │ ├── dev.sh │ ├── format │ │ ├── file.go │ │ └── time.go │ ├── fs │ │ ├── fs.go │ │ ├── paths.go │ │ ├── projects.go │ │ └── utils.go │ ├── go.mod │ ├── go.sum │ ├── install.sh │ ├── lib │ │ ├── active_stream.go │ │ ├── apply.go │ │ ├── apply_cgroup_linux.go │ │ ├── apply_cgroup_other.go │ │ ├── apply_proc.go │ │ ├── build.go │ │ ├── claude_max.go │ │ ├── context_auto_load.go │ │ ├── context_conflict.go │ │ ├── context_display.go │ │ ├── context_load.go │ │ ├── context_paths.go │ │ ├── context_shared.go │ │ ├── context_update.go │ │ ├── current.go │ │ ├── custom_models.go │ │ ├── editor.go │ │ ├── git.go │ │ ├── legacy_files.go │ │ ├── log_format.go │ │ ├── model_credentials.go │ │ ├── model_settings.go │ │ ├── models_sync.go │ │ ├── org_user_config.go │ │ ├── plan_config.go │ │ ├── plans.go │ │ ├── repl.go │ │ └── rewind.go │ ├── main.go │ ├── nodemon.json │ ├── plan.json │ ├── plan_exec │ │ ├── action_menu.go │ │ ├── apply_exec.go │ │ ├── build.go │ │ ├── params.go │ │ └── tell.go │ ├── schema │ │ ├── json-schemas │ │ │ ├── definitions │ │ │ │ ├── auto-modes.schema.json │ │ │ │ ├── local-providers.schema.json │ │ │ │ └── model-providers.schema.json │ │ │ ├── model-config.schema.json │ │ │ ├── model-pack-base-config.schema.json │ │ │ ├── model-pack-config.schema.json │ │ │ ├── model-pack-inline.schema.json │ │ │ ├── model-pack-roles.schema.json │ │ │ ├── model-provider-config.schema.json │ │ │ ├── model-role-config.schema.json │ │ │ ├── models-input.schema.json │ │ │ └── plan-config.schema.json │ │ └── schemas.go │ ├── stream │ │ └── stream.go │ ├── stream_tui │ │ ├── debouncer.go │ │ ├── model.go │ │ ├── run.go │ │ ├── update.go │ │ └── view.go │ ├── term │ │ ├── color.go │ │ ├── errors.go │ │ ├── format.go │ │ ├── help.go │ │ ├── os.go │ │ ├── prompt.go │ │ ├── repl.go │ │ ├── select.go │ │ ├── spinner.go │ │ └── utils.go │ ├── types │ │ ├── api.go │ │ ├── apply.go │ │ ├── exec.go │ │ ├── fs.go │ │ └── types.go │ ├── ui │ │ └── ui.go │ ├── upgrade.go │ ├── url │ │ └── url.go │ ├── utils │ │ └── utils.go │ ├── version.txt │ └── version │ │ └── version.go ├── docker-compose.yml ├── plans │ ├── credits-cmd.txt │ ├── credits-log-cmd.txt │ ├── json-prompts-to-xml.md │ └── plan-config.md ├── reset_local.sh ├── scripts │ ├── cmd │ │ ├── gen │ │ │ └── gen.go │ │ └── provider │ │ │ └── gen_provider.go │ ├── dev.sh │ ├── litellm_deps.sh │ └── wait-for-it.sh ├── server │ ├── .gitignore │ ├── Dockerfile │ ├── db │ │ ├── account_helpers.go │ │ ├── ai_model_helpers.go │ │ ├── auth_helpers.go │ │ ├── branch_helpers.go │ │ ├── build_helpers.go │ │ ├── context_helpers_conflicts.go │ │ ├── context_helpers_get.go │ │ ├── context_helpers_load.go │ │ ├── context_helpers_map.go │ │ ├── context_helpers_remove.go │ │ ├── context_helpers_store.go │ │ ├── context_helpers_update.go │ │ ├── convo_helpers.go │ │ ├── data_models.go │ │ ├── db.go │ │ ├── diff_helpers.go │ │ ├── fs.go │ │ ├── git.go │ │ ├── invite_helpers.go │ │ ├── locks.go │ │ ├── models.go │ │ ├── org_helpers.go │ │ ├── plan_config_helpers.go │ │ ├── plan_helpers.go │ │ ├── project_helpers.go │ │ ├── queue.go │ │ ├── rbac_helpers.go │ │ ├── result_helpers.go │ │ ├── settings_helpers.go │ │ ├── stream_helpers.go │ │ ├── subtask_helpers.go │ │ ├── summary_helpers.go │ │ ├── transactions.go │ │ ├── user_helpers.go │ │ └── utils.go │ ├── diff │ │ └── diff.go │ ├── email │ │ ├── email.go │ │ ├── invite.go │ │ └── verification.go │ ├── go.mod │ ├── go.sum │ ├── handlers │ │ ├── accounts.go │ │ ├── auth_helpers.go │ │ ├── branches.go │ │ ├── client_helper.go │ │ ├── context_helper.go │ │ ├── err_helper.go │ │ ├── file_maps.go │ │ ├── file_maps_queue.go │ │ ├── invites.go │ │ ├── models.go │ │ ├── org_helpers.go │ │ ├── orgs.go │ │ ├── plan_config.go │ │ ├── plans_changes.go │ │ ├── plans_context.go │ │ ├── plans_convo.go │ │ ├── plans_crud.go │ │ ├── plans_exec.go │ │ ├── plans_versions.go │ │ ├── projects.go │ │ ├── proxy_helper.go │ │ ├── sessions.go │ │ ├── settings.go │ │ ├── stream_helper.go │ │ └── users.go │ ├── hooks │ │ └── hooks.go │ ├── host │ │ └── ip.go │ ├── litellm_proxy.py │ ├── main.go │ ├── migrations │ │ ├── 2023120500_init.down.sql │ │ ├── 2023120500_init.up.sql │ │ ├── 2024011700_rbac.down.sql │ │ ├── 2024011700_rbac.up.sql │ │ ├── 2024012400_streams.down.sql │ │ ├── 2024012400_streams.up.sql │ │ ├── 2024012500_locks.down.sql │ │ ├── 2024012500_locks.up.sql │ │ ├── 2024013000_plan_build_convo_ids.down.sql │ │ ├── 2024013000_plan_build_convo_ids.up.sql │ │ ├── 2024020800_heartbeats.down.sql │ │ ├── 2024020800_heartbeats.up.sql │ │ ├── 2024022000_revert_plan_build_convo_ids.down.sql │ │ ├── 2024022000_revert_plan_build_convo_ids.up.sql │ │ ├── 2024032700_remove_billing_admin.down.sql │ │ ├── 2024032700_remove_billing_admin.up.sql │ │ ├── 2024032701_drop_users_projects.down.sql │ │ ├── 2024032701_drop_users_projects.up.sql │ │ ├── 2024040400_add_orgs_users_unique.down.sql │ │ ├── 2024040400_add_orgs_users_unique.up.sql │ │ ├── 2024041500_model_sets_models.down.sql │ │ ├── 2024041500_model_sets_models.up.sql │ │ ├── 2024042600_default_plan_settings.down.sql │ │ ├── 2024042600_default_plan_settings.up.sql │ │ ├── 2024091800_sign_in_codes.down.sql │ │ ├── 2024091800_sign_in_codes.up.sql │ │ ├── 2024092100_remove_trial_fields.down.sql │ │ ├── 2024092100_remove_trial_fields.up.sql │ │ ├── 2024100900_update_locks.down.sql │ │ ├── 2024100900_update_locks.up.sql │ │ ├── 2024121400_plan_config.down.sql │ │ ├── 2024121400_plan_config.up.sql │ │ ├── 2025012600_update_custom_models.down.sql │ │ ├── 2025012600_update_custom_models.up.sql │ │ ├── 2025021101_locks_unique.down.sql │ │ ├── 2025021101_locks_unique.up.sql │ │ ├── 2025022700_remove_models_col.down.sql │ │ ├── 2025022700_remove_models_col.up.sql │ │ ├── 2025031300_add_model_roles.down.sql │ │ ├── 2025031300_add_model_roles.up.sql │ │ ├── 2025031900_add_custom_model_cols.down.sql │ │ ├── 2025031900_add_custom_model_cols.up.sql │ │ ├── 2025032400_sign_in_codes_on_delete.down.sql │ │ ├── 2025032400_sign_in_codes_on_delete.up.sql │ │ ├── 2025051600_custom_models_refactor.down.sql │ │ ├── 2025051600_custom_models_refactor.up.sql │ │ ├── 2025052200_model_pack_cols.down.sql │ │ ├── 2025052200_model_pack_cols.up.sql │ │ ├── 2025070200_add_org_user_config.down.sql │ │ └── 2025070200_add_org_user_config.up.sql │ ├── model │ │ ├── client.go │ │ ├── client_stream.go │ │ ├── litellm.go │ │ ├── model_error.go │ │ ├── model_request.go │ │ ├── name.go │ │ ├── parse │ │ │ ├── subtasks.go │ │ │ └── subtasks_test.go │ │ ├── plan │ │ │ ├── activate.go │ │ │ ├── build_exec.go │ │ │ ├── build_finish.go │ │ │ ├── build_load.go │ │ │ ├── build_race.go │ │ │ ├── build_state.go │ │ │ ├── build_structured_edits.go │ │ │ ├── build_validate_and_fix.go │ │ │ ├── build_whole_file.go │ │ │ ├── commit_msg.go │ │ │ ├── exec_status.go │ │ │ ├── shutdown.go │ │ │ ├── state.go │ │ │ ├── stop.go │ │ │ ├── tell_build_pending.go │ │ │ ├── tell_context.go │ │ │ ├── tell_exec.go │ │ │ ├── tell_load.go │ │ │ ├── tell_missing_file.go │ │ │ ├── tell_prompt_message.go │ │ │ ├── tell_stage.go │ │ │ ├── tell_state.go │ │ │ ├── tell_stream_error.go │ │ │ ├── tell_stream_finish.go │ │ │ ├── tell_stream_main.go │ │ │ ├── tell_stream_processor.go │ │ │ ├── tell_stream_processor_test.go │ │ │ ├── tell_stream_status.go │ │ │ ├── tell_stream_store.go │ │ │ ├── tell_stream_usage.go │ │ │ ├── tell_subtasks.go │ │ │ ├── tell_summary.go │ │ │ ├── tell_sys_prompt.go │ │ │ └── utils.go │ │ ├── prompts │ │ │ ├── apply_exec.go │ │ │ ├── architect_context.go │ │ │ ├── build_helpers.go │ │ │ ├── build_validation_replacements.go │ │ │ ├── build_whole_file.go │ │ │ ├── chat.go │ │ │ ├── code_block_langs.go │ │ │ ├── describe.go │ │ │ ├── exec_status.go │ │ │ ├── explanation_format.go │ │ │ ├── file_ops.go │ │ │ ├── implement.go │ │ │ ├── missing_file.go │ │ │ ├── name.go │ │ │ ├── planning.go │ │ │ ├── shared.go │ │ │ ├── summary.go │ │ │ ├── update_format.go │ │ │ └── user_prompt.go │ │ ├── summarize.go │ │ └── tokens.go │ ├── notify │ │ └── errors.go │ ├── routes │ │ └── routes.go │ ├── setup │ │ └── setup.go │ ├── shutdown │ │ └── shutdown.go │ ├── syntax │ │ ├── comments.go │ │ ├── file_map │ │ │ ├── cli │ │ │ │ ├── .gitignore │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── main.go │ │ │ ├── examples │ │ │ │ ├── bash_example.sh │ │ │ │ ├── c_example.c │ │ │ │ ├── cpp_example.cpp │ │ │ │ ├── csharp_example.cs │ │ │ │ ├── css_example.css │ │ │ │ ├── cue_example.cue │ │ │ │ ├── dockerfile_example │ │ │ │ ├── elixir_example.ex │ │ │ │ ├── elm_example.elm │ │ │ │ ├── go_example.go │ │ │ │ ├── groovy_example.groovy │ │ │ │ ├── hcl_example.hcl │ │ │ │ ├── html_example.html │ │ │ │ ├── java_example.java │ │ │ │ ├── javascript_example.js │ │ │ │ ├── kotlin_example.kt │ │ │ │ ├── lua_example.lua │ │ │ │ ├── markdown_example.md │ │ │ │ ├── ocaml_example.ml │ │ │ │ ├── php_example.php │ │ │ │ ├── protobuf_example.proto │ │ │ │ ├── python_example.py │ │ │ │ ├── ruby_example.rb │ │ │ │ ├── rust_example.rs │ │ │ │ ├── scala_example.scala │ │ │ │ ├── svelte_example.svelte │ │ │ │ ├── swift_example.swift │ │ │ │ ├── toml_example.toml │ │ │ │ ├── tsx_example.tsx │ │ │ │ ├── typescript_example.ts │ │ │ │ └── yaml_example.yaml │ │ │ ├── map.go │ │ │ ├── markup.go │ │ │ ├── multi.go │ │ │ ├── nodes_config.go │ │ │ ├── nodes_find.go │ │ │ └── svelte.go │ │ ├── map.txt │ │ ├── parsers.go │ │ ├── structured_edits_apply.go │ │ ├── structured_edits_generic.go │ │ ├── structured_edits_sections.go │ │ ├── structured_edits_test.go │ │ ├── structured_edits_tree_sitter.go │ │ ├── unique_replacement.go │ │ ├── unique_replacement_test.go │ │ └── validate.go │ ├── types │ │ ├── active_plan.go │ │ ├── active_plan_pending_builds.go │ │ ├── auth.go │ │ ├── convo_message_desc.go │ │ ├── exec_status.go │ │ ├── message.go │ │ ├── model.go │ │ ├── reply.go │ │ ├── reply_test.go │ │ ├── reply_test_examples │ │ │ ├── 1.md │ │ │ ├── 10.md │ │ │ ├── 2.md │ │ │ ├── 3.md │ │ │ ├── 4.md │ │ │ ├── 5.md │ │ │ ├── 6.md │ │ │ ├── 7.md │ │ │ ├── 8.md │ │ │ └── 9.md │ │ ├── safe_map.go │ │ └── trial.go │ ├── utils │ │ ├── whitespace.go │ │ ├── whitespace_test.go │ │ └── xml.go │ └── version.txt ├── shared │ ├── ai_models_available.go │ ├── ai_models_compatibility.go │ ├── ai_models_config.go │ ├── ai_models_credentials.go │ ├── ai_models_custom.go │ ├── ai_models_data_models.go │ ├── ai_models_errors.go │ ├── ai_models_large_context.go │ ├── ai_models_openrouter.go │ ├── ai_models_packs.go │ ├── ai_models_providers.go │ ├── ai_models_roles.go │ ├── auth.go │ ├── context.go │ ├── convo_message.go │ ├── data_models.go │ ├── email.go │ ├── file_maps.go │ ├── go.mod │ ├── go.sum │ ├── images.go │ ├── org_user_config.go │ ├── plan_config.go │ ├── plan_model_settings.go │ ├── plan_result.go │ ├── plan_result_exec_history.go │ ├── plan_result_pending_summary.go │ ├── plan_result_replacements.go │ ├── plan_status.go │ ├── rbac.go │ ├── req_res.go │ ├── stream.go │ ├── streamed_change.go │ ├── syntax.go │ ├── tokens.go │ ├── tygo.yaml │ ├── utils.go │ └── utils_struct.go └── start_local.sh ├── docs ├── .gitignore ├── README.md ├── babel.config.js ├── blog │ ├── 2019-05-28-first-blog-post.md │ ├── 2019-05-29-long-blog-post.md │ ├── 2021-08-01-mdx-blog-post.mdx │ ├── 2021-08-26-welcome │ │ ├── docusaurus-plushie-banner.jpeg │ │ └── index.md │ ├── authors.yml │ └── tags.yml ├── docs │ ├── cli-reference.md │ ├── core-concepts │ │ ├── _category_.json │ │ ├── autonomy.md │ │ ├── background-tasks.md │ │ ├── branches.md │ │ ├── configuration.md │ │ ├── context-management.md │ │ ├── conversations.md │ │ ├── execution-and-debugging.md │ │ ├── orgs.md │ │ ├── plans.md │ │ ├── prompts.md │ │ ├── reviewing-changes.md │ │ └── version-control.md │ ├── development.md │ ├── environment-variables.md │ ├── hosting │ │ ├── _category_.json │ │ ├── cloud.md │ │ └── self-hosting │ │ │ ├── _category_.json │ │ │ ├── advanced-self-hosting.md │ │ │ └── local-mode-quickstart.md │ ├── install.md │ ├── models │ │ ├── _category_.json │ │ ├── built-in │ │ │ ├── _category_.json │ │ │ ├── built-in-models.md │ │ │ └── built-in-packs.md │ │ ├── claude-subscription.md │ │ ├── custom-models.md │ │ ├── model-providers.md │ │ ├── model-settings.md │ │ ├── models-overview.md │ │ ├── ollama.md │ │ └── roles.md │ ├── quick-start.md │ ├── repl.md │ └── security.md ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ └── css │ │ └── custom.css ├── static │ ├── .nojekyll │ ├── _redirects │ └── img │ │ ├── favicon.ico │ │ ├── plandex-logo-dark.png │ │ ├── plandex-logo-light.png │ │ ├── plandex-logo-thumb.png │ │ └── plandex-social-preview.png └── tsconfig.json ├── images ├── plandex-browser-debug-yt.png ├── plandex-intro-vimeo.png ├── plandex-logo-dark-bg.png ├── plandex-logo-dark-v2.png ├── plandex-logo-dark.png ├── plandex-logo-light-v2.png ├── plandex-logo-light.png ├── plandex-logo-thumb.png ├── plandex-v2-yt.png └── plandex-workflow.png ├── plans ├── invite-commands.txt ├── model-sets-custom-models-crud.txt ├── pdx-file.md └── race_cond_chatgpt.txt ├── releases ├── cli │ ├── CHANGELOG.md │ └── versions │ │ ├── 0.7.1.md │ │ ├── 0.7.2.md │ │ ├── 0.7.3.md │ │ ├── 0.8.0.md │ │ ├── 0.8.1.md │ │ ├── 0.8.2.md │ │ ├── 0.8.3.md │ │ ├── 0.9.0.md │ │ ├── 0.9.1.md │ │ ├── 1.0.0.md │ │ ├── 1.1.0.md │ │ ├── 1.1.1.md │ │ ├── 1.1.2.md │ │ ├── 2.0.0.md │ │ ├── 2.0.1.md │ │ ├── 2.0.2.md │ │ ├── 2.0.3.md │ │ ├── 2.0.4.md │ │ ├── 2.0.5.md │ │ ├── 2.0.6.md │ │ ├── 2.0.7+1.md │ │ ├── 2.0.7.md │ │ ├── 2.0.8.md │ │ ├── 2.1.0+1.md │ │ ├── 2.1.0.md │ │ ├── 2.1.1.md │ │ ├── 2.1.2.md │ │ ├── 2.1.3.md │ │ ├── 2.1.5.md │ │ ├── 2.1.6+1.md │ │ ├── 2.1.6.md │ │ ├── 2.2.0.md │ │ └── 2.2.1.md ├── images │ └── cli │ │ ├── 0.9.0 │ │ ├── plandex-archive.gif │ │ ├── plandex-commit.png │ │ ├── plandex-diff.gif │ │ └── plandex-models.gif │ │ ├── 1.1.0 │ │ ├── plandex-images.gif │ │ └── plandex-reject.gif │ │ ├── 1.1.1 │ │ └── claude-3-5-sonnet.gif │ │ └── 2.2.0 │ │ ├── custom-models-json.gif │ │ ├── model-settings-json.gif │ │ ├── new-providers.gif │ │ └── ollama.gif └── server │ ├── CHANGELOG.md │ └── versions │ ├── 0.7.0.md │ ├── 0.7.1.md │ ├── 0.8.0.md │ ├── 0.8.1.md │ ├── 0.8.2.md │ ├── 0.8.3.md │ ├── 0.8.4.md │ ├── 0.9.0.md │ ├── 0.9.1.md │ ├── 1.0.0.md │ ├── 1.0.1.md │ ├── 1.1.0.md │ ├── 1.1.1.md │ ├── 2.0.0+1.md │ ├── 2.0.0+2.md │ ├── 2.0.0.md │ ├── 2.0.2.md │ ├── 2.0.3.md │ ├── 2.0.4.md │ ├── 2.0.5.md │ ├── 2.0.6.md │ ├── 2.1.0+1.md │ ├── 2.1.0.md │ ├── 2.1.1+1.md │ ├── 2.1.1.md │ ├── 2.1.2.md │ ├── 2.1.3.md │ ├── 2.1.4.md │ ├── 2.1.5.md │ ├── 2.1.6+1.md │ ├── 2.1.6.md │ ├── 2.1.7.md │ ├── 2.1.8.md │ ├── 2.2.0.md │ └── 2.2.1.md ├── scripts └── merge_from_reflog.sh └── test ├── _test_apply.sh ├── error-test.html ├── evals └── promptfoo-poc │ ├── README.md │ ├── build │ ├── assets │ │ ├── build │ │ │ ├── changes.md │ │ │ └── post_build.go │ │ └── shared │ │ │ └── pre_build.go │ ├── build.config.properties │ ├── build.parameters.json │ ├── build.prompt.txt │ ├── build.provider.yml │ ├── promptfooconfig.yaml │ └── tests │ │ └── build.test.yml │ ├── evals.md │ ├── fix │ ├── assets │ │ ├── removal │ │ │ ├── changes.md │ │ │ ├── post_build.go │ │ │ └── problems.txt │ │ └── shared │ │ │ └── pre_build.go │ ├── fix.config.properties │ ├── fix.parameters.json │ ├── fix.prompt.txt │ ├── fix.provider.yml │ ├── promptfooconfig.yaml │ └── tests │ │ └── fix.test.yml │ ├── templates │ └── provider.template.yml │ └── verify │ ├── assets │ ├── removal │ │ ├── changes.md │ │ ├── diff.txt │ │ └── post_build.go │ ├── shared │ │ └── pre_build.go │ └── valid │ │ ├── changes.md │ │ ├── diff.txt │ │ └── post_build.go │ ├── promptfooconfig.yaml │ ├── tests │ ├── removal.test.yml │ └── validate.test.yml │ ├── verify.config.properties │ ├── verify.parameters.json │ ├── verify.prompt.txt │ └── verify.provider.yml ├── plan_deletion_test.sh ├── pong ├── .gitignore ├── Makefile ├── README.md ├── ball.c ├── ball.h ├── install_dependencies.sh ├── main.c ├── paddle.c ├── paddle.h ├── prompt.txt ├── render.c └── render.h ├── project └── react-redux-foobar │ ├── action.ts │ ├── component.ts │ ├── lib │ ├── constants.ts │ └── utils.ts │ ├── package.json │ ├── reducer.ts │ ├── tests │ ├── action.test.ts │ └── component.test.ts │ └── tsconfig.json ├── smoke_test.sh ├── test_custom_models.sh ├── test_prompts ├── aws-infra.txt ├── pong.txt ├── robust-logging.txt ├── stripe-plan.txt └── tic-tac-toe.txt └── test_utils.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/README.md -------------------------------------------------------------------------------- /app/.dockerignore: -------------------------------------------------------------------------------- 1 | cli/ 2 | plandex-server -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /app/clear_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/clear_local.sh -------------------------------------------------------------------------------- /app/cli/api/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/api/clients.go -------------------------------------------------------------------------------- /app/cli/api/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/api/errors.go -------------------------------------------------------------------------------- /app/cli/api/methods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/api/methods.go -------------------------------------------------------------------------------- /app/cli/api/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/api/stream.go -------------------------------------------------------------------------------- /app/cli/auth/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/auth/account.go -------------------------------------------------------------------------------- /app/cli/auth/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/auth/api.go -------------------------------------------------------------------------------- /app/cli/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/auth/auth.go -------------------------------------------------------------------------------- /app/cli/auth/org.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/auth/org.go -------------------------------------------------------------------------------- /app/cli/auth/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/auth/state.go -------------------------------------------------------------------------------- /app/cli/auth/trial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/auth/trial.go -------------------------------------------------------------------------------- /app/cli/cmd/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/apply.go -------------------------------------------------------------------------------- /app/cli/cmd/archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/archive.go -------------------------------------------------------------------------------- /app/cli/cmd/billing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/billing.go -------------------------------------------------------------------------------- /app/cli/cmd/branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/branches.go -------------------------------------------------------------------------------- /app/cli/cmd/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/browser.go -------------------------------------------------------------------------------- /app/cli/cmd/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/build.go -------------------------------------------------------------------------------- /app/cli/cmd/cd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/cd.go -------------------------------------------------------------------------------- /app/cli/cmd/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/chat.go -------------------------------------------------------------------------------- /app/cli/cmd/checkout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/checkout.go -------------------------------------------------------------------------------- /app/cli/cmd/claude_max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/claude_max.go -------------------------------------------------------------------------------- /app/cli/cmd/clear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/clear.go -------------------------------------------------------------------------------- /app/cli/cmd/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/config.go -------------------------------------------------------------------------------- /app/cli/cmd/connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/connect.go -------------------------------------------------------------------------------- /app/cli/cmd/context_show.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/context_show.go -------------------------------------------------------------------------------- /app/cli/cmd/continue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/continue.go -------------------------------------------------------------------------------- /app/cli/cmd/convo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/convo.go -------------------------------------------------------------------------------- /app/cli/cmd/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/current.go -------------------------------------------------------------------------------- /app/cli/cmd/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/debug.go -------------------------------------------------------------------------------- /app/cli/cmd/delete_branch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/delete_branch.go -------------------------------------------------------------------------------- /app/cli/cmd/delete_plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/delete_plan.go -------------------------------------------------------------------------------- /app/cli/cmd/diffs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/diffs.go -------------------------------------------------------------------------------- /app/cli/cmd/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/invite.go -------------------------------------------------------------------------------- /app/cli/cmd/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/load.go -------------------------------------------------------------------------------- /app/cli/cmd/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/log.go -------------------------------------------------------------------------------- /app/cli/cmd/ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/ls.go -------------------------------------------------------------------------------- /app/cli/cmd/model_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/model_helpers.go -------------------------------------------------------------------------------- /app/cli/cmd/model_packs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/model_packs.go -------------------------------------------------------------------------------- /app/cli/cmd/model_providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/model_providers.go -------------------------------------------------------------------------------- /app/cli/cmd/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/models.go -------------------------------------------------------------------------------- /app/cli/cmd/new.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/new.go -------------------------------------------------------------------------------- /app/cli/cmd/plan_exec_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/plan_exec_helpers.go -------------------------------------------------------------------------------- /app/cli/cmd/plan_start_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/plan_start_helpers.go -------------------------------------------------------------------------------- /app/cli/cmd/plans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/plans.go -------------------------------------------------------------------------------- /app/cli/cmd/ps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/ps.go -------------------------------------------------------------------------------- /app/cli/cmd/reject.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/reject.go -------------------------------------------------------------------------------- /app/cli/cmd/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/rename.go -------------------------------------------------------------------------------- /app/cli/cmd/repl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/repl.go -------------------------------------------------------------------------------- /app/cli/cmd/revoke.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/revoke.go -------------------------------------------------------------------------------- /app/cli/cmd/rewind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/rewind.go -------------------------------------------------------------------------------- /app/cli/cmd/rm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/rm.go -------------------------------------------------------------------------------- /app/cli/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/root.go -------------------------------------------------------------------------------- /app/cli/cmd/set_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/set_config.go -------------------------------------------------------------------------------- /app/cli/cmd/set_model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/set_model.go -------------------------------------------------------------------------------- /app/cli/cmd/sign_in.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/sign_in.go -------------------------------------------------------------------------------- /app/cli/cmd/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/stop.go -------------------------------------------------------------------------------- /app/cli/cmd/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/summary.go -------------------------------------------------------------------------------- /app/cli/cmd/tell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/tell.go -------------------------------------------------------------------------------- /app/cli/cmd/unarchive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/unarchive.go -------------------------------------------------------------------------------- /app/cli/cmd/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/update.go -------------------------------------------------------------------------------- /app/cli/cmd/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/usage.go -------------------------------------------------------------------------------- /app/cli/cmd/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/users.go -------------------------------------------------------------------------------- /app/cli/cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/cmd/version.go -------------------------------------------------------------------------------- /app/cli/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/dev.sh -------------------------------------------------------------------------------- /app/cli/format/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/format/file.go -------------------------------------------------------------------------------- /app/cli/format/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/format/time.go -------------------------------------------------------------------------------- /app/cli/fs/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/fs/fs.go -------------------------------------------------------------------------------- /app/cli/fs/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/fs/paths.go -------------------------------------------------------------------------------- /app/cli/fs/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/fs/projects.go -------------------------------------------------------------------------------- /app/cli/fs/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/fs/utils.go -------------------------------------------------------------------------------- /app/cli/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/go.mod -------------------------------------------------------------------------------- /app/cli/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/go.sum -------------------------------------------------------------------------------- /app/cli/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/install.sh -------------------------------------------------------------------------------- /app/cli/lib/active_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/active_stream.go -------------------------------------------------------------------------------- /app/cli/lib/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/apply.go -------------------------------------------------------------------------------- /app/cli/lib/apply_cgroup_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/apply_cgroup_linux.go -------------------------------------------------------------------------------- /app/cli/lib/apply_cgroup_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/apply_cgroup_other.go -------------------------------------------------------------------------------- /app/cli/lib/apply_proc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/apply_proc.go -------------------------------------------------------------------------------- /app/cli/lib/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/build.go -------------------------------------------------------------------------------- /app/cli/lib/claude_max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/claude_max.go -------------------------------------------------------------------------------- /app/cli/lib/context_auto_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/context_auto_load.go -------------------------------------------------------------------------------- /app/cli/lib/context_conflict.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/context_conflict.go -------------------------------------------------------------------------------- /app/cli/lib/context_display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/context_display.go -------------------------------------------------------------------------------- /app/cli/lib/context_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/context_load.go -------------------------------------------------------------------------------- /app/cli/lib/context_paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/context_paths.go -------------------------------------------------------------------------------- /app/cli/lib/context_shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/context_shared.go -------------------------------------------------------------------------------- /app/cli/lib/context_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/context_update.go -------------------------------------------------------------------------------- /app/cli/lib/current.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/current.go -------------------------------------------------------------------------------- /app/cli/lib/custom_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/custom_models.go -------------------------------------------------------------------------------- /app/cli/lib/editor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/editor.go -------------------------------------------------------------------------------- /app/cli/lib/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/git.go -------------------------------------------------------------------------------- /app/cli/lib/legacy_files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/legacy_files.go -------------------------------------------------------------------------------- /app/cli/lib/log_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/log_format.go -------------------------------------------------------------------------------- /app/cli/lib/model_credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/model_credentials.go -------------------------------------------------------------------------------- /app/cli/lib/model_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/model_settings.go -------------------------------------------------------------------------------- /app/cli/lib/models_sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/models_sync.go -------------------------------------------------------------------------------- /app/cli/lib/org_user_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/org_user_config.go -------------------------------------------------------------------------------- /app/cli/lib/plan_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/plan_config.go -------------------------------------------------------------------------------- /app/cli/lib/plans.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/plans.go -------------------------------------------------------------------------------- /app/cli/lib/repl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/repl.go -------------------------------------------------------------------------------- /app/cli/lib/rewind.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/lib/rewind.go -------------------------------------------------------------------------------- /app/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/main.go -------------------------------------------------------------------------------- /app/cli/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/nodemon.json -------------------------------------------------------------------------------- /app/cli/plan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/plan.json -------------------------------------------------------------------------------- /app/cli/plan_exec/action_menu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/plan_exec/action_menu.go -------------------------------------------------------------------------------- /app/cli/plan_exec/apply_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/plan_exec/apply_exec.go -------------------------------------------------------------------------------- /app/cli/plan_exec/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/plan_exec/build.go -------------------------------------------------------------------------------- /app/cli/plan_exec/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/plan_exec/params.go -------------------------------------------------------------------------------- /app/cli/plan_exec/tell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/plan_exec/tell.go -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/definitions/auto-modes.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/definitions/auto-modes.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/definitions/local-providers.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/definitions/local-providers.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/definitions/model-providers.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/definitions/model-providers.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/model-config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/model-config.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/model-pack-base-config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/model-pack-base-config.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/model-pack-config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/model-pack-config.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/model-pack-inline.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/model-pack-inline.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/model-pack-roles.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/model-pack-roles.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/model-provider-config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/model-provider-config.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/model-role-config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/model-role-config.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/models-input.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/models-input.schema.json -------------------------------------------------------------------------------- /app/cli/schema/json-schemas/plan-config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/json-schemas/plan-config.schema.json -------------------------------------------------------------------------------- /app/cli/schema/schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/schema/schemas.go -------------------------------------------------------------------------------- /app/cli/stream/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/stream/stream.go -------------------------------------------------------------------------------- /app/cli/stream_tui/debouncer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/stream_tui/debouncer.go -------------------------------------------------------------------------------- /app/cli/stream_tui/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/stream_tui/model.go -------------------------------------------------------------------------------- /app/cli/stream_tui/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/stream_tui/run.go -------------------------------------------------------------------------------- /app/cli/stream_tui/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/stream_tui/update.go -------------------------------------------------------------------------------- /app/cli/stream_tui/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/stream_tui/view.go -------------------------------------------------------------------------------- /app/cli/term/color.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/color.go -------------------------------------------------------------------------------- /app/cli/term/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/errors.go -------------------------------------------------------------------------------- /app/cli/term/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/format.go -------------------------------------------------------------------------------- /app/cli/term/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/help.go -------------------------------------------------------------------------------- /app/cli/term/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/os.go -------------------------------------------------------------------------------- /app/cli/term/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/prompt.go -------------------------------------------------------------------------------- /app/cli/term/repl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/repl.go -------------------------------------------------------------------------------- /app/cli/term/select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/select.go -------------------------------------------------------------------------------- /app/cli/term/spinner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/spinner.go -------------------------------------------------------------------------------- /app/cli/term/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/term/utils.go -------------------------------------------------------------------------------- /app/cli/types/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/types/api.go -------------------------------------------------------------------------------- /app/cli/types/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/types/apply.go -------------------------------------------------------------------------------- /app/cli/types/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/types/exec.go -------------------------------------------------------------------------------- /app/cli/types/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/types/fs.go -------------------------------------------------------------------------------- /app/cli/types/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/types/types.go -------------------------------------------------------------------------------- /app/cli/ui/ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/ui/ui.go -------------------------------------------------------------------------------- /app/cli/upgrade.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/upgrade.go -------------------------------------------------------------------------------- /app/cli/url/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/url/url.go -------------------------------------------------------------------------------- /app/cli/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/utils/utils.go -------------------------------------------------------------------------------- /app/cli/version.txt: -------------------------------------------------------------------------------- 1 | 2.2.1 2 | -------------------------------------------------------------------------------- /app/cli/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/cli/version/version.go -------------------------------------------------------------------------------- /app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/docker-compose.yml -------------------------------------------------------------------------------- /app/plans/credits-cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/plans/credits-cmd.txt -------------------------------------------------------------------------------- /app/plans/credits-log-cmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/plans/credits-log-cmd.txt -------------------------------------------------------------------------------- /app/plans/json-prompts-to-xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/plans/json-prompts-to-xml.md -------------------------------------------------------------------------------- /app/plans/plan-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/plans/plan-config.md -------------------------------------------------------------------------------- /app/reset_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/reset_local.sh -------------------------------------------------------------------------------- /app/scripts/cmd/gen/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/scripts/cmd/gen/gen.go -------------------------------------------------------------------------------- /app/scripts/cmd/provider/gen_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/scripts/cmd/provider/gen_provider.go -------------------------------------------------------------------------------- /app/scripts/dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/scripts/dev.sh -------------------------------------------------------------------------------- /app/scripts/litellm_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/scripts/litellm_deps.sh -------------------------------------------------------------------------------- /app/scripts/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/scripts/wait-for-it.sh -------------------------------------------------------------------------------- /app/server/.gitignore: -------------------------------------------------------------------------------- 1 | cloud/ -------------------------------------------------------------------------------- /app/server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/Dockerfile -------------------------------------------------------------------------------- /app/server/db/account_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/account_helpers.go -------------------------------------------------------------------------------- /app/server/db/ai_model_helpers.go: -------------------------------------------------------------------------------- 1 | package db 2 | -------------------------------------------------------------------------------- /app/server/db/auth_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/auth_helpers.go -------------------------------------------------------------------------------- /app/server/db/branch_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/branch_helpers.go -------------------------------------------------------------------------------- /app/server/db/build_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/build_helpers.go -------------------------------------------------------------------------------- /app/server/db/context_helpers_conflicts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/context_helpers_conflicts.go -------------------------------------------------------------------------------- /app/server/db/context_helpers_get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/context_helpers_get.go -------------------------------------------------------------------------------- /app/server/db/context_helpers_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/context_helpers_load.go -------------------------------------------------------------------------------- /app/server/db/context_helpers_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/context_helpers_map.go -------------------------------------------------------------------------------- /app/server/db/context_helpers_remove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/context_helpers_remove.go -------------------------------------------------------------------------------- /app/server/db/context_helpers_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/context_helpers_store.go -------------------------------------------------------------------------------- /app/server/db/context_helpers_update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/context_helpers_update.go -------------------------------------------------------------------------------- /app/server/db/convo_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/convo_helpers.go -------------------------------------------------------------------------------- /app/server/db/data_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/data_models.go -------------------------------------------------------------------------------- /app/server/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/db.go -------------------------------------------------------------------------------- /app/server/db/diff_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/diff_helpers.go -------------------------------------------------------------------------------- /app/server/db/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/fs.go -------------------------------------------------------------------------------- /app/server/db/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/git.go -------------------------------------------------------------------------------- /app/server/db/invite_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/invite_helpers.go -------------------------------------------------------------------------------- /app/server/db/locks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/locks.go -------------------------------------------------------------------------------- /app/server/db/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/models.go -------------------------------------------------------------------------------- /app/server/db/org_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/org_helpers.go -------------------------------------------------------------------------------- /app/server/db/plan_config_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/plan_config_helpers.go -------------------------------------------------------------------------------- /app/server/db/plan_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/plan_helpers.go -------------------------------------------------------------------------------- /app/server/db/project_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/project_helpers.go -------------------------------------------------------------------------------- /app/server/db/queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/queue.go -------------------------------------------------------------------------------- /app/server/db/rbac_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/rbac_helpers.go -------------------------------------------------------------------------------- /app/server/db/result_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/result_helpers.go -------------------------------------------------------------------------------- /app/server/db/settings_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/settings_helpers.go -------------------------------------------------------------------------------- /app/server/db/stream_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/stream_helpers.go -------------------------------------------------------------------------------- /app/server/db/subtask_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/subtask_helpers.go -------------------------------------------------------------------------------- /app/server/db/summary_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/summary_helpers.go -------------------------------------------------------------------------------- /app/server/db/transactions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/transactions.go -------------------------------------------------------------------------------- /app/server/db/user_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/user_helpers.go -------------------------------------------------------------------------------- /app/server/db/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/db/utils.go -------------------------------------------------------------------------------- /app/server/diff/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/diff/diff.go -------------------------------------------------------------------------------- /app/server/email/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/email/email.go -------------------------------------------------------------------------------- /app/server/email/invite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/email/invite.go -------------------------------------------------------------------------------- /app/server/email/verification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/email/verification.go -------------------------------------------------------------------------------- /app/server/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/go.mod -------------------------------------------------------------------------------- /app/server/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/go.sum -------------------------------------------------------------------------------- /app/server/handlers/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/accounts.go -------------------------------------------------------------------------------- /app/server/handlers/auth_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/auth_helpers.go -------------------------------------------------------------------------------- /app/server/handlers/branches.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/branches.go -------------------------------------------------------------------------------- /app/server/handlers/client_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/client_helper.go -------------------------------------------------------------------------------- /app/server/handlers/context_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/context_helper.go -------------------------------------------------------------------------------- /app/server/handlers/err_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/err_helper.go -------------------------------------------------------------------------------- /app/server/handlers/file_maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/file_maps.go -------------------------------------------------------------------------------- /app/server/handlers/file_maps_queue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/file_maps_queue.go -------------------------------------------------------------------------------- /app/server/handlers/invites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/invites.go -------------------------------------------------------------------------------- /app/server/handlers/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/models.go -------------------------------------------------------------------------------- /app/server/handlers/org_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/org_helpers.go -------------------------------------------------------------------------------- /app/server/handlers/orgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/orgs.go -------------------------------------------------------------------------------- /app/server/handlers/plan_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/plan_config.go -------------------------------------------------------------------------------- /app/server/handlers/plans_changes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/plans_changes.go -------------------------------------------------------------------------------- /app/server/handlers/plans_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/plans_context.go -------------------------------------------------------------------------------- /app/server/handlers/plans_convo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/plans_convo.go -------------------------------------------------------------------------------- /app/server/handlers/plans_crud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/plans_crud.go -------------------------------------------------------------------------------- /app/server/handlers/plans_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/plans_exec.go -------------------------------------------------------------------------------- /app/server/handlers/plans_versions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/plans_versions.go -------------------------------------------------------------------------------- /app/server/handlers/projects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/projects.go -------------------------------------------------------------------------------- /app/server/handlers/proxy_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/proxy_helper.go -------------------------------------------------------------------------------- /app/server/handlers/sessions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/sessions.go -------------------------------------------------------------------------------- /app/server/handlers/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/settings.go -------------------------------------------------------------------------------- /app/server/handlers/stream_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/stream_helper.go -------------------------------------------------------------------------------- /app/server/handlers/users.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/handlers/users.go -------------------------------------------------------------------------------- /app/server/hooks/hooks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/hooks/hooks.go -------------------------------------------------------------------------------- /app/server/host/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/host/ip.go -------------------------------------------------------------------------------- /app/server/litellm_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/litellm_proxy.py -------------------------------------------------------------------------------- /app/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/main.go -------------------------------------------------------------------------------- /app/server/migrations/2023120500_init.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2023120500_init.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2023120500_init.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2023120500_init.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024011700_rbac.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024011700_rbac.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024011700_rbac.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024011700_rbac.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024012400_streams.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024012400_streams.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024012400_streams.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024012400_streams.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024012500_locks.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS repo_locks; -------------------------------------------------------------------------------- /app/server/migrations/2024012500_locks.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024012500_locks.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024013000_plan_build_convo_ids.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024013000_plan_build_convo_ids.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024013000_plan_build_convo_ids.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024013000_plan_build_convo_ids.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024020800_heartbeats.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024020800_heartbeats.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024020800_heartbeats.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024020800_heartbeats.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024022000_revert_plan_build_convo_ids.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024022000_revert_plan_build_convo_ids.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024022000_revert_plan_build_convo_ids.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024022000_revert_plan_build_convo_ids.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024032700_remove_billing_admin.down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/server/migrations/2024032700_remove_billing_admin.up.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM org_roles WHERE name = 'billing_admin'; -------------------------------------------------------------------------------- /app/server/migrations/2024032701_drop_users_projects.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024032701_drop_users_projects.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024032701_drop_users_projects.up.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS users_projects; -------------------------------------------------------------------------------- /app/server/migrations/2024040400_add_orgs_users_unique.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024040400_add_orgs_users_unique.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024040400_add_orgs_users_unique.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024040400_add_orgs_users_unique.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024041500_model_sets_models.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024041500_model_sets_models.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024041500_model_sets_models.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024041500_model_sets_models.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024042600_default_plan_settings.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS default_plan_settings; -------------------------------------------------------------------------------- /app/server/migrations/2024042600_default_plan_settings.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024042600_default_plan_settings.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024091800_sign_in_codes.down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE IF EXISTS sign_in_codes; -------------------------------------------------------------------------------- /app/server/migrations/2024091800_sign_in_codes.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024091800_sign_in_codes.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024092100_remove_trial_fields.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024092100_remove_trial_fields.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024092100_remove_trial_fields.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024092100_remove_trial_fields.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024100900_update_locks.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024100900_update_locks.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024100900_update_locks.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024100900_update_locks.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2024121400_plan_config.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024121400_plan_config.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2024121400_plan_config.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2024121400_plan_config.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025012600_update_custom_models.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025012600_update_custom_models.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025012600_update_custom_models.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025012600_update_custom_models.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025021101_locks_unique.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025021101_locks_unique.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025021101_locks_unique.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025021101_locks_unique.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025022700_remove_models_col.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025022700_remove_models_col.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025022700_remove_models_col.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE custom_models DROP COLUMN default_reserved_output_tokens; -------------------------------------------------------------------------------- /app/server/migrations/2025031300_add_model_roles.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025031300_add_model_roles.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025031300_add_model_roles.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025031300_add_model_roles.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025031900_add_custom_model_cols.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025031900_add_custom_model_cols.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025031900_add_custom_model_cols.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025031900_add_custom_model_cols.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025032400_sign_in_codes_on_delete.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025032400_sign_in_codes_on_delete.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025032400_sign_in_codes_on_delete.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025032400_sign_in_codes_on_delete.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025051600_custom_models_refactor.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025051600_custom_models_refactor.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025051600_custom_models_refactor.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025051600_custom_models_refactor.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025052200_model_pack_cols.down.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025052200_model_pack_cols.down.sql -------------------------------------------------------------------------------- /app/server/migrations/2025052200_model_pack_cols.up.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/migrations/2025052200_model_pack_cols.up.sql -------------------------------------------------------------------------------- /app/server/migrations/2025070200_add_org_user_config.down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE orgs_users DROP COLUMN config; -------------------------------------------------------------------------------- /app/server/migrations/2025070200_add_org_user_config.up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE orgs_users ADD COLUMN config JSON; -------------------------------------------------------------------------------- /app/server/model/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/client.go -------------------------------------------------------------------------------- /app/server/model/client_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/client_stream.go -------------------------------------------------------------------------------- /app/server/model/litellm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/litellm.go -------------------------------------------------------------------------------- /app/server/model/model_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/model_error.go -------------------------------------------------------------------------------- /app/server/model/model_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/model_request.go -------------------------------------------------------------------------------- /app/server/model/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/name.go -------------------------------------------------------------------------------- /app/server/model/parse/subtasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/parse/subtasks.go -------------------------------------------------------------------------------- /app/server/model/parse/subtasks_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/parse/subtasks_test.go -------------------------------------------------------------------------------- /app/server/model/plan/activate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/activate.go -------------------------------------------------------------------------------- /app/server/model/plan/build_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_exec.go -------------------------------------------------------------------------------- /app/server/model/plan/build_finish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_finish.go -------------------------------------------------------------------------------- /app/server/model/plan/build_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_load.go -------------------------------------------------------------------------------- /app/server/model/plan/build_race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_race.go -------------------------------------------------------------------------------- /app/server/model/plan/build_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_state.go -------------------------------------------------------------------------------- /app/server/model/plan/build_structured_edits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_structured_edits.go -------------------------------------------------------------------------------- /app/server/model/plan/build_validate_and_fix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_validate_and_fix.go -------------------------------------------------------------------------------- /app/server/model/plan/build_whole_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/build_whole_file.go -------------------------------------------------------------------------------- /app/server/model/plan/commit_msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/commit_msg.go -------------------------------------------------------------------------------- /app/server/model/plan/exec_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/exec_status.go -------------------------------------------------------------------------------- /app/server/model/plan/shutdown.go: -------------------------------------------------------------------------------- 1 | package plan 2 | -------------------------------------------------------------------------------- /app/server/model/plan/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/state.go -------------------------------------------------------------------------------- /app/server/model/plan/stop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/stop.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_build_pending.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_build_pending.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_context.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_exec.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_load.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_missing_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_missing_file.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_prompt_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_prompt_message.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stage.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_state.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_error.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_finish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_finish.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_main.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_processor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_processor.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_processor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_processor_test.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_status.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_store.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_stream_usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_stream_usage.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_subtasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_subtasks.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_summary.go -------------------------------------------------------------------------------- /app/server/model/plan/tell_sys_prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/tell_sys_prompt.go -------------------------------------------------------------------------------- /app/server/model/plan/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/plan/utils.go -------------------------------------------------------------------------------- /app/server/model/prompts/apply_exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/apply_exec.go -------------------------------------------------------------------------------- /app/server/model/prompts/architect_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/architect_context.go -------------------------------------------------------------------------------- /app/server/model/prompts/build_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/build_helpers.go -------------------------------------------------------------------------------- /app/server/model/prompts/build_validation_replacements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/build_validation_replacements.go -------------------------------------------------------------------------------- /app/server/model/prompts/build_whole_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/build_whole_file.go -------------------------------------------------------------------------------- /app/server/model/prompts/chat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/chat.go -------------------------------------------------------------------------------- /app/server/model/prompts/code_block_langs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/code_block_langs.go -------------------------------------------------------------------------------- /app/server/model/prompts/describe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/describe.go -------------------------------------------------------------------------------- /app/server/model/prompts/exec_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/exec_status.go -------------------------------------------------------------------------------- /app/server/model/prompts/explanation_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/explanation_format.go -------------------------------------------------------------------------------- /app/server/model/prompts/file_ops.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/file_ops.go -------------------------------------------------------------------------------- /app/server/model/prompts/implement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/implement.go -------------------------------------------------------------------------------- /app/server/model/prompts/missing_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/missing_file.go -------------------------------------------------------------------------------- /app/server/model/prompts/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/name.go -------------------------------------------------------------------------------- /app/server/model/prompts/planning.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/planning.go -------------------------------------------------------------------------------- /app/server/model/prompts/shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/shared.go -------------------------------------------------------------------------------- /app/server/model/prompts/summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/summary.go -------------------------------------------------------------------------------- /app/server/model/prompts/update_format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/update_format.go -------------------------------------------------------------------------------- /app/server/model/prompts/user_prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/prompts/user_prompt.go -------------------------------------------------------------------------------- /app/server/model/summarize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/summarize.go -------------------------------------------------------------------------------- /app/server/model/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/model/tokens.go -------------------------------------------------------------------------------- /app/server/notify/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/notify/errors.go -------------------------------------------------------------------------------- /app/server/routes/routes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/routes/routes.go -------------------------------------------------------------------------------- /app/server/setup/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/setup/setup.go -------------------------------------------------------------------------------- /app/server/shutdown/shutdown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/shutdown/shutdown.go -------------------------------------------------------------------------------- /app/server/syntax/comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/comments.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/cli/.gitignore: -------------------------------------------------------------------------------- 1 | mapper -------------------------------------------------------------------------------- /app/server/syntax/file_map/cli/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/cli/go.mod -------------------------------------------------------------------------------- /app/server/syntax/file_map/cli/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/cli/go.sum -------------------------------------------------------------------------------- /app/server/syntax/file_map/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/cli/main.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/bash_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/bash_example.sh -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/c_example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/c_example.c -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/cpp_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/cpp_example.cpp -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/csharp_example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/csharp_example.cs -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/css_example.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/css_example.css -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/cue_example.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/cue_example.cue -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/dockerfile_example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/dockerfile_example -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/elixir_example.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/elixir_example.ex -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/elm_example.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/elm_example.elm -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/go_example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/go_example.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/groovy_example.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/groovy_example.groovy -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/hcl_example.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/hcl_example.hcl -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/html_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/html_example.html -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/java_example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/java_example.java -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/javascript_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/javascript_example.js -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/kotlin_example.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/kotlin_example.kt -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/lua_example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/lua_example.lua -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/markdown_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/markdown_example.md -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/ocaml_example.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/ocaml_example.ml -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/php_example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/php_example.php -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/protobuf_example.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/protobuf_example.proto -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/python_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/python_example.py -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/ruby_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/ruby_example.rb -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/rust_example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/rust_example.rs -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/scala_example.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/scala_example.scala -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/svelte_example.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/svelte_example.svelte -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/swift_example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/swift_example.swift -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/toml_example.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/toml_example.toml -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/tsx_example.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/tsx_example.tsx -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/typescript_example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/typescript_example.ts -------------------------------------------------------------------------------- /app/server/syntax/file_map/examples/yaml_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/examples/yaml_example.yaml -------------------------------------------------------------------------------- /app/server/syntax/file_map/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/map.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/markup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/markup.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/multi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/multi.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/nodes_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/nodes_config.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/nodes_find.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/nodes_find.go -------------------------------------------------------------------------------- /app/server/syntax/file_map/svelte.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/file_map/svelte.go -------------------------------------------------------------------------------- /app/server/syntax/map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/map.txt -------------------------------------------------------------------------------- /app/server/syntax/parsers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/parsers.go -------------------------------------------------------------------------------- /app/server/syntax/structured_edits_apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/structured_edits_apply.go -------------------------------------------------------------------------------- /app/server/syntax/structured_edits_generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/structured_edits_generic.go -------------------------------------------------------------------------------- /app/server/syntax/structured_edits_sections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/structured_edits_sections.go -------------------------------------------------------------------------------- /app/server/syntax/structured_edits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/structured_edits_test.go -------------------------------------------------------------------------------- /app/server/syntax/structured_edits_tree_sitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/structured_edits_tree_sitter.go -------------------------------------------------------------------------------- /app/server/syntax/unique_replacement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/unique_replacement.go -------------------------------------------------------------------------------- /app/server/syntax/unique_replacement_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/unique_replacement_test.go -------------------------------------------------------------------------------- /app/server/syntax/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/syntax/validate.go -------------------------------------------------------------------------------- /app/server/types/active_plan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/active_plan.go -------------------------------------------------------------------------------- /app/server/types/active_plan_pending_builds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/active_plan_pending_builds.go -------------------------------------------------------------------------------- /app/server/types/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/auth.go -------------------------------------------------------------------------------- /app/server/types/convo_message_desc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/convo_message_desc.go -------------------------------------------------------------------------------- /app/server/types/exec_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/exec_status.go -------------------------------------------------------------------------------- /app/server/types/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/message.go -------------------------------------------------------------------------------- /app/server/types/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/model.go -------------------------------------------------------------------------------- /app/server/types/reply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply.go -------------------------------------------------------------------------------- /app/server/types/reply_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test.go -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/1.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/10.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/2.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/3.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/4.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/5.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/6.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/7.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/8.md -------------------------------------------------------------------------------- /app/server/types/reply_test_examples/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/reply_test_examples/9.md -------------------------------------------------------------------------------- /app/server/types/safe_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/safe_map.go -------------------------------------------------------------------------------- /app/server/types/trial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/types/trial.go -------------------------------------------------------------------------------- /app/server/utils/whitespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/utils/whitespace.go -------------------------------------------------------------------------------- /app/server/utils/whitespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/utils/whitespace_test.go -------------------------------------------------------------------------------- /app/server/utils/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/server/utils/xml.go -------------------------------------------------------------------------------- /app/server/version.txt: -------------------------------------------------------------------------------- 1 | 2.2.1 2 | -------------------------------------------------------------------------------- /app/shared/ai_models_available.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_available.go -------------------------------------------------------------------------------- /app/shared/ai_models_compatibility.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_compatibility.go -------------------------------------------------------------------------------- /app/shared/ai_models_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_config.go -------------------------------------------------------------------------------- /app/shared/ai_models_credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_credentials.go -------------------------------------------------------------------------------- /app/shared/ai_models_custom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_custom.go -------------------------------------------------------------------------------- /app/shared/ai_models_data_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_data_models.go -------------------------------------------------------------------------------- /app/shared/ai_models_errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_errors.go -------------------------------------------------------------------------------- /app/shared/ai_models_large_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_large_context.go -------------------------------------------------------------------------------- /app/shared/ai_models_openrouter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_openrouter.go -------------------------------------------------------------------------------- /app/shared/ai_models_packs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_packs.go -------------------------------------------------------------------------------- /app/shared/ai_models_providers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_providers.go -------------------------------------------------------------------------------- /app/shared/ai_models_roles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/ai_models_roles.go -------------------------------------------------------------------------------- /app/shared/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/auth.go -------------------------------------------------------------------------------- /app/shared/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/context.go -------------------------------------------------------------------------------- /app/shared/convo_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/convo_message.go -------------------------------------------------------------------------------- /app/shared/data_models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/data_models.go -------------------------------------------------------------------------------- /app/shared/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/email.go -------------------------------------------------------------------------------- /app/shared/file_maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/file_maps.go -------------------------------------------------------------------------------- /app/shared/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/go.mod -------------------------------------------------------------------------------- /app/shared/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/go.sum -------------------------------------------------------------------------------- /app/shared/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/images.go -------------------------------------------------------------------------------- /app/shared/org_user_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/org_user_config.go -------------------------------------------------------------------------------- /app/shared/plan_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/plan_config.go -------------------------------------------------------------------------------- /app/shared/plan_model_settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/plan_model_settings.go -------------------------------------------------------------------------------- /app/shared/plan_result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/plan_result.go -------------------------------------------------------------------------------- /app/shared/plan_result_exec_history.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/plan_result_exec_history.go -------------------------------------------------------------------------------- /app/shared/plan_result_pending_summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/plan_result_pending_summary.go -------------------------------------------------------------------------------- /app/shared/plan_result_replacements.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/plan_result_replacements.go -------------------------------------------------------------------------------- /app/shared/plan_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/plan_status.go -------------------------------------------------------------------------------- /app/shared/rbac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/rbac.go -------------------------------------------------------------------------------- /app/shared/req_res.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/req_res.go -------------------------------------------------------------------------------- /app/shared/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/stream.go -------------------------------------------------------------------------------- /app/shared/streamed_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/streamed_change.go -------------------------------------------------------------------------------- /app/shared/syntax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/syntax.go -------------------------------------------------------------------------------- /app/shared/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/tokens.go -------------------------------------------------------------------------------- /app/shared/tygo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/tygo.yaml -------------------------------------------------------------------------------- /app/shared/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/utils.go -------------------------------------------------------------------------------- /app/shared/utils_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/shared/utils_struct.go -------------------------------------------------------------------------------- /app/start_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/app/start_local.sh -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/blog/2019-05-28-first-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/blog/2019-05-28-first-blog-post.md -------------------------------------------------------------------------------- /docs/blog/2019-05-29-long-blog-post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/blog/2019-05-29-long-blog-post.md -------------------------------------------------------------------------------- /docs/blog/2021-08-01-mdx-blog-post.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/blog/2021-08-01-mdx-blog-post.mdx -------------------------------------------------------------------------------- /docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/blog/2021-08-26-welcome/docusaurus-plushie-banner.jpeg -------------------------------------------------------------------------------- /docs/blog/2021-08-26-welcome/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/blog/2021-08-26-welcome/index.md -------------------------------------------------------------------------------- /docs/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/blog/authors.yml -------------------------------------------------------------------------------- /docs/blog/tags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/blog/tags.yml -------------------------------------------------------------------------------- /docs/docs/cli-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/cli-reference.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/_category_.json -------------------------------------------------------------------------------- /docs/docs/core-concepts/autonomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/autonomy.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/background-tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/background-tasks.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/branches.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/configuration.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/context-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/context-management.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/conversations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/conversations.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/execution-and-debugging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/execution-and-debugging.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/orgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/orgs.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/plans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/plans.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/prompts.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/reviewing-changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/reviewing-changes.md -------------------------------------------------------------------------------- /docs/docs/core-concepts/version-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/core-concepts/version-control.md -------------------------------------------------------------------------------- /docs/docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/development.md -------------------------------------------------------------------------------- /docs/docs/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/environment-variables.md -------------------------------------------------------------------------------- /docs/docs/hosting/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/hosting/_category_.json -------------------------------------------------------------------------------- /docs/docs/hosting/cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/hosting/cloud.md -------------------------------------------------------------------------------- /docs/docs/hosting/self-hosting/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/hosting/self-hosting/_category_.json -------------------------------------------------------------------------------- /docs/docs/hosting/self-hosting/advanced-self-hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/hosting/self-hosting/advanced-self-hosting.md -------------------------------------------------------------------------------- /docs/docs/hosting/self-hosting/local-mode-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/hosting/self-hosting/local-mode-quickstart.md -------------------------------------------------------------------------------- /docs/docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/install.md -------------------------------------------------------------------------------- /docs/docs/models/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/_category_.json -------------------------------------------------------------------------------- /docs/docs/models/built-in/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/built-in/_category_.json -------------------------------------------------------------------------------- /docs/docs/models/built-in/built-in-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/built-in/built-in-models.md -------------------------------------------------------------------------------- /docs/docs/models/built-in/built-in-packs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/built-in/built-in-packs.md -------------------------------------------------------------------------------- /docs/docs/models/claude-subscription.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/claude-subscription.md -------------------------------------------------------------------------------- /docs/docs/models/custom-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/custom-models.md -------------------------------------------------------------------------------- /docs/docs/models/model-providers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/model-providers.md -------------------------------------------------------------------------------- /docs/docs/models/model-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/model-settings.md -------------------------------------------------------------------------------- /docs/docs/models/models-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/models-overview.md -------------------------------------------------------------------------------- /docs/docs/models/ollama.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/ollama.md -------------------------------------------------------------------------------- /docs/docs/models/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/models/roles.md -------------------------------------------------------------------------------- /docs/docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/quick-start.md -------------------------------------------------------------------------------- /docs/docs/repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/repl.md -------------------------------------------------------------------------------- /docs/docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docs/security.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/_redirects: -------------------------------------------------------------------------------- 1 | / /install 301! -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/plandex-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/static/img/plandex-logo-dark.png -------------------------------------------------------------------------------- /docs/static/img/plandex-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/static/img/plandex-logo-light.png -------------------------------------------------------------------------------- /docs/static/img/plandex-logo-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/static/img/plandex-logo-thumb.png -------------------------------------------------------------------------------- /docs/static/img/plandex-social-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/static/img/plandex-social-preview.png -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /images/plandex-browser-debug-yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-browser-debug-yt.png -------------------------------------------------------------------------------- /images/plandex-intro-vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-intro-vimeo.png -------------------------------------------------------------------------------- /images/plandex-logo-dark-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-logo-dark-bg.png -------------------------------------------------------------------------------- /images/plandex-logo-dark-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-logo-dark-v2.png -------------------------------------------------------------------------------- /images/plandex-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-logo-dark.png -------------------------------------------------------------------------------- /images/plandex-logo-light-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-logo-light-v2.png -------------------------------------------------------------------------------- /images/plandex-logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-logo-light.png -------------------------------------------------------------------------------- /images/plandex-logo-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-logo-thumb.png -------------------------------------------------------------------------------- /images/plandex-v2-yt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-v2-yt.png -------------------------------------------------------------------------------- /images/plandex-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/images/plandex-workflow.png -------------------------------------------------------------------------------- /plans/invite-commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/plans/invite-commands.txt -------------------------------------------------------------------------------- /plans/model-sets-custom-models-crud.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/plans/model-sets-custom-models-crud.txt -------------------------------------------------------------------------------- /plans/pdx-file.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plans/race_cond_chatgpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/plans/race_cond_chatgpt.txt -------------------------------------------------------------------------------- /releases/cli/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/CHANGELOG.md -------------------------------------------------------------------------------- /releases/cli/versions/0.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.7.1.md -------------------------------------------------------------------------------- /releases/cli/versions/0.7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.7.2.md -------------------------------------------------------------------------------- /releases/cli/versions/0.7.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.7.3.md -------------------------------------------------------------------------------- /releases/cli/versions/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.8.0.md -------------------------------------------------------------------------------- /releases/cli/versions/0.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.8.1.md -------------------------------------------------------------------------------- /releases/cli/versions/0.8.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.8.2.md -------------------------------------------------------------------------------- /releases/cli/versions/0.8.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.8.3.md -------------------------------------------------------------------------------- /releases/cli/versions/0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.9.0.md -------------------------------------------------------------------------------- /releases/cli/versions/0.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/0.9.1.md -------------------------------------------------------------------------------- /releases/cli/versions/1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/1.0.0.md -------------------------------------------------------------------------------- /releases/cli/versions/1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/1.1.0.md -------------------------------------------------------------------------------- /releases/cli/versions/1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/1.1.1.md -------------------------------------------------------------------------------- /releases/cli/versions/1.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/1.1.2.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.0.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.1.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.2.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.3.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.4.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.5.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.6.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.7+1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.7+1.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.7.md -------------------------------------------------------------------------------- /releases/cli/versions/2.0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.0.8.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.0+1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.0+1.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.0.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.1.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.2.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.3.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.5.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.6+1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.6+1.md -------------------------------------------------------------------------------- /releases/cli/versions/2.1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.1.6.md -------------------------------------------------------------------------------- /releases/cli/versions/2.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.2.0.md -------------------------------------------------------------------------------- /releases/cli/versions/2.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/cli/versions/2.2.1.md -------------------------------------------------------------------------------- /releases/images/cli/0.9.0/plandex-archive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/0.9.0/plandex-archive.gif -------------------------------------------------------------------------------- /releases/images/cli/0.9.0/plandex-commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/0.9.0/plandex-commit.png -------------------------------------------------------------------------------- /releases/images/cli/0.9.0/plandex-diff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/0.9.0/plandex-diff.gif -------------------------------------------------------------------------------- /releases/images/cli/0.9.0/plandex-models.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/0.9.0/plandex-models.gif -------------------------------------------------------------------------------- /releases/images/cli/1.1.0/plandex-images.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/1.1.0/plandex-images.gif -------------------------------------------------------------------------------- /releases/images/cli/1.1.0/plandex-reject.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/1.1.0/plandex-reject.gif -------------------------------------------------------------------------------- /releases/images/cli/1.1.1/claude-3-5-sonnet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/1.1.1/claude-3-5-sonnet.gif -------------------------------------------------------------------------------- /releases/images/cli/2.2.0/custom-models-json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/2.2.0/custom-models-json.gif -------------------------------------------------------------------------------- /releases/images/cli/2.2.0/model-settings-json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/2.2.0/model-settings-json.gif -------------------------------------------------------------------------------- /releases/images/cli/2.2.0/new-providers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/2.2.0/new-providers.gif -------------------------------------------------------------------------------- /releases/images/cli/2.2.0/ollama.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/images/cli/2.2.0/ollama.gif -------------------------------------------------------------------------------- /releases/server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/CHANGELOG.md -------------------------------------------------------------------------------- /releases/server/versions/0.7.0.md: -------------------------------------------------------------------------------- 1 | Initial release -------------------------------------------------------------------------------- /releases/server/versions/0.7.1.md: -------------------------------------------------------------------------------- 1 | - Fix for SMTP email issue 2 | - Add '/version' endpoint to server -------------------------------------------------------------------------------- /releases/server/versions/0.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/0.8.0.md -------------------------------------------------------------------------------- /releases/server/versions/0.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/0.8.1.md -------------------------------------------------------------------------------- /releases/server/versions/0.8.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/0.8.2.md -------------------------------------------------------------------------------- /releases/server/versions/0.8.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/0.8.3.md -------------------------------------------------------------------------------- /releases/server/versions/0.8.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/0.8.4.md -------------------------------------------------------------------------------- /releases/server/versions/0.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/0.9.0.md -------------------------------------------------------------------------------- /releases/server/versions/0.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/0.9.1.md -------------------------------------------------------------------------------- /releases/server/versions/1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/1.0.0.md -------------------------------------------------------------------------------- /releases/server/versions/1.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/1.0.1.md -------------------------------------------------------------------------------- /releases/server/versions/1.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/1.1.0.md -------------------------------------------------------------------------------- /releases/server/versions/1.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/1.1.1.md -------------------------------------------------------------------------------- /releases/server/versions/2.0.0+1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.0.0+1.md -------------------------------------------------------------------------------- /releases/server/versions/2.0.0+2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.0.0+2.md -------------------------------------------------------------------------------- /releases/server/versions/2.0.0.md: -------------------------------------------------------------------------------- 1 | See CLI 2.0.0 release notes. -------------------------------------------------------------------------------- /releases/server/versions/2.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.0.2.md -------------------------------------------------------------------------------- /releases/server/versions/2.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.0.3.md -------------------------------------------------------------------------------- /releases/server/versions/2.0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.0.4.md -------------------------------------------------------------------------------- /releases/server/versions/2.0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.0.5.md -------------------------------------------------------------------------------- /releases/server/versions/2.0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.0.6.md -------------------------------------------------------------------------------- /releases/server/versions/2.1.0+1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.1.0+1.md -------------------------------------------------------------------------------- /releases/server/versions/2.1.0.md: -------------------------------------------------------------------------------- 1 | See CLI 2.1.0 release notes. -------------------------------------------------------------------------------- /releases/server/versions/2.1.1+1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.1.1+1.md -------------------------------------------------------------------------------- /releases/server/versions/2.1.1.md: -------------------------------------------------------------------------------- 1 | See CLI 2.1.1 release notes. -------------------------------------------------------------------------------- /releases/server/versions/2.1.2.md: -------------------------------------------------------------------------------- 1 | - Fix for auto-load context error: 'Error decoding response → EOF' -------------------------------------------------------------------------------- /releases/server/versions/2.1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.1.3.md -------------------------------------------------------------------------------- /releases/server/versions/2.1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.1.4.md -------------------------------------------------------------------------------- /releases/server/versions/2.1.5.md: -------------------------------------------------------------------------------- 1 | See CLI 2.1.5 release notes. -------------------------------------------------------------------------------- /releases/server/versions/2.1.6+1.md: -------------------------------------------------------------------------------- 1 | See CLI 2.1.6+1 release notes. -------------------------------------------------------------------------------- /releases/server/versions/2.1.6.md: -------------------------------------------------------------------------------- 1 | See CLI 2.1.6 release notes. -------------------------------------------------------------------------------- /releases/server/versions/2.1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/releases/server/versions/2.1.7.md -------------------------------------------------------------------------------- /releases/server/versions/2.1.8.md: -------------------------------------------------------------------------------- 1 | - Fix for potential hang in file map queue -------------------------------------------------------------------------------- /releases/server/versions/2.2.0.md: -------------------------------------------------------------------------------- 1 | See CLI 2.2.0 release notes. 2 | -------------------------------------------------------------------------------- /releases/server/versions/2.2.1.md: -------------------------------------------------------------------------------- 1 | See CLI 2.2.1 release notes. -------------------------------------------------------------------------------- /scripts/merge_from_reflog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/scripts/merge_from_reflog.sh -------------------------------------------------------------------------------- /test/_test_apply.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/_test_apply.sh -------------------------------------------------------------------------------- /test/error-test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/error-test.html -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/README.md -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/assets/build/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/assets/build/changes.md -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/assets/build/post_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/assets/build/post_build.go -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/assets/shared/pre_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/assets/shared/pre_build.go -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/build.config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/build.config.properties -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/build.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/build.parameters.json -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/build.prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/build.prompt.txt -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/build.provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/build.provider.yml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/promptfooconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/promptfooconfig.yaml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/build/tests/build.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/build/tests/build.test.yml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/evals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/evals.md -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/assets/removal/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/assets/removal/changes.md -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/assets/removal/post_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/assets/removal/post_build.go -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/assets/removal/problems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/assets/removal/problems.txt -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/assets/shared/pre_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/assets/shared/pre_build.go -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/fix.config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/fix.config.properties -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/fix.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/fix.parameters.json -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/fix.prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/fix.prompt.txt -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/fix.provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/fix.provider.yml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/promptfooconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/promptfooconfig.yaml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/fix/tests/fix.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/fix/tests/fix.test.yml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/templates/provider.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/templates/provider.template.yml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/assets/removal/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/assets/removal/changes.md -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/assets/removal/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/assets/removal/diff.txt -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/assets/removal/post_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/assets/removal/post_build.go -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/assets/shared/pre_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/assets/shared/pre_build.go -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/assets/valid/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/assets/valid/changes.md -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/assets/valid/diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/assets/valid/diff.txt -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/assets/valid/post_build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/assets/valid/post_build.go -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/promptfooconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/promptfooconfig.yaml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/tests/removal.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/tests/removal.test.yml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/tests/validate.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/tests/validate.test.yml -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/verify.config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/verify.config.properties -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/verify.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/verify.parameters.json -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/verify.prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/verify.prompt.txt -------------------------------------------------------------------------------- /test/evals/promptfoo-poc/verify/verify.provider.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/evals/promptfoo-poc/verify/verify.provider.yml -------------------------------------------------------------------------------- /test/plan_deletion_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/plan_deletion_test.sh -------------------------------------------------------------------------------- /test/pong/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | pong -------------------------------------------------------------------------------- /test/pong/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/Makefile -------------------------------------------------------------------------------- /test/pong/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/README.md -------------------------------------------------------------------------------- /test/pong/ball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/ball.c -------------------------------------------------------------------------------- /test/pong/ball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/ball.h -------------------------------------------------------------------------------- /test/pong/install_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/install_dependencies.sh -------------------------------------------------------------------------------- /test/pong/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/main.c -------------------------------------------------------------------------------- /test/pong/paddle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/paddle.c -------------------------------------------------------------------------------- /test/pong/paddle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/paddle.h -------------------------------------------------------------------------------- /test/pong/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/prompt.txt -------------------------------------------------------------------------------- /test/pong/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/render.c -------------------------------------------------------------------------------- /test/pong/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/pong/render.h -------------------------------------------------------------------------------- /test/project/react-redux-foobar/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/action.ts -------------------------------------------------------------------------------- /test/project/react-redux-foobar/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/component.ts -------------------------------------------------------------------------------- /test/project/react-redux-foobar/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/lib/constants.ts -------------------------------------------------------------------------------- /test/project/react-redux-foobar/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/lib/utils.ts -------------------------------------------------------------------------------- /test/project/react-redux-foobar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/package.json -------------------------------------------------------------------------------- /test/project/react-redux-foobar/reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/reducer.ts -------------------------------------------------------------------------------- /test/project/react-redux-foobar/tests/action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/tests/action.test.ts -------------------------------------------------------------------------------- /test/project/react-redux-foobar/tests/component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/tests/component.test.ts -------------------------------------------------------------------------------- /test/project/react-redux-foobar/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/project/react-redux-foobar/tsconfig.json -------------------------------------------------------------------------------- /test/smoke_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/smoke_test.sh -------------------------------------------------------------------------------- /test/test_custom_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/test_custom_models.sh -------------------------------------------------------------------------------- /test/test_prompts/aws-infra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/test_prompts/aws-infra.txt -------------------------------------------------------------------------------- /test/test_prompts/pong.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/test_prompts/pong.txt -------------------------------------------------------------------------------- /test/test_prompts/robust-logging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/test_prompts/robust-logging.txt -------------------------------------------------------------------------------- /test/test_prompts/stripe-plan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/test_prompts/stripe-plan.txt -------------------------------------------------------------------------------- /test/test_prompts/tic-tac-toe.txt: -------------------------------------------------------------------------------- 1 | Build a complete tic-tac-toe game in rust 2 | -------------------------------------------------------------------------------- /test/test_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plandex-ai/plandex/HEAD/test/test_utils.sh --------------------------------------------------------------------------------